/* ---------- Theme Variables ---------- */
:root {
  --navy: #2C3E50;          /* Muted Navy Blue */
  --navy-light: #3D566E;
  --dusty-pink: #D4A5A5;    /* Muted Dusty Pink */
  --pink-soft: #E8D3D3;     /* Lighter Pink for backgrounds */
  --silver: #C0C0C0;        /* Silver/Grey accents */
  --white: #FDFDFD;         /* Off-white for readability */
  --text: #4A4A4A;          /* Dark grey text (softer than black) */
  --border: rgba(44, 62, 80, 0.15);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --radius: 12px;
}

/* ---------- Global Layout ---------- */
body {
  background-color: var(--pink-soft);
  color: var(--text);
  font-family: 'Garamond', serif; 
  margin: 0;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

/* ---------- Page Header ---------- */
header {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--silver);
  padding-bottom: 20px;
}

header h1 {
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 2.5rem;
}

/* ---------- Destination Cards (Poll & Results) ---------- */
.location-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid var(--silver);
}

.card-header {
  background: var(--navy);
  color: var(--white);
  padding: 15px 25px;
}

.card-content {
  padding: 25px;
}

/* Image Grid for Locations */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.image-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--silver);
}

/* ---------- Forms & Voting ---------- */
.poll-option {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.poll-option:hover {
  background-color: var(--pink-soft);
}

.poll-option input[type="radio"] {
  accent-color: var(--navy);
  margin-right: 15px;
  transform: scale(1.2);
}

/* ---------- Progress Bars (Results Page) ---------- */
.result-bar-container {
  background: #eee;
  border-radius: 20px;
  height: 20px;
  margin: 10px 0;
  overflow: hidden;
}

.result-bar {
  background: var(--dusty-pink);
  height: 100%;
  border-right: 3px solid var(--navy);
}

/* ---------- Buttons ---------- */
.btn {
  background-color: var(--navy);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--navy-light);
  transform: translateY(-2px);
}

.btn-link {
  color: var(--navy);
  text-decoration: underline;
  font-size: 0.9rem;
}

#main img {width: 60%;
}