:root {
  --primary: #2C4A3E; /* Earthy Green */
  --accent: #C5A059;  /* Soft Warm Gold */
  --bg: #FAFAFA;
  --text: #333333;
  --light-card: #FFFFFF;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base Body Font: Cambo */
body {
  font-family: 'Cambo', Georgia, serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Fancy Script Headings: Pinyon Script */
.script-title {
  font-family: 'Pinyon Script', cursive;
  font-weight: 400;
  font-size: 5rem;
  color: #FFFFFF;
}

.script-heading {
  font-family: 'Pinyon Script', cursive;
  font-weight: 400;
  font-size: 3.8rem;
  color: var(--primary);
  line-height: 1;
}

/* Dates / Numbers Font: Berlin Sans FB Demi fallback styling */
.date-font {
  font-family: 'Berlin Sans FB Demi', 'Berlin Sans FB', 'Arial Rounded MT Bold', sans-serif;
  letter-spacing: 0.5px;
}

h1, h2, h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--light-card);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.logo {
  font-family: 'Pinyon Script', cursive;
  font-size: 2.2rem;
  color: var(--primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Hero Section (Black & White Image Background) */
.hero {
  position: relative;
  background: url('images/Ali_Brendan_West_Glacier_Engagement-1.jpg') center/cover no-repeat;
  filter: grayscale(100%); /* Converts background photo to B&W */
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.45); /* Dark overlay for text readability */
}

.hero-content {
  position: relative;
  z-index: 1;
}

.subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

/* Countdown */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.time-block {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  min-width: 75px;
}

.time-block span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
}

.time-block label {
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* Layout */
.container {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.welcome-card {
  background: var(--light-card);
  padding: 2.5rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 3rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.section {
  margin-bottom: 4rem;
}

.section h2 {
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  margin-bottom: 1.5rem;
  padding-bottom: 0.2rem;
}

/* Story Grid */
.story-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-card {
  background: var(--light-card);
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
  border-radius: 4px;
}

/* Carousel Gallery */
.carousel-container {
  max-width: 800px;
  position: relative;
  margin: auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.carousel-slide {
  display: none;
}

.carousel-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.4);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.active, .dot:hover {
  background-color: var(--primary);
}

.fade {
  animation-name: fade;
  animation-duration: 0.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* Media Gallery */
.image-wrapper img {
  width: 100%;
  border-radius: 8px;
  margin-top: 1rem;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.image-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Timeline */
.timeline {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item.highlight {
  background: #EBF1EE;
  padding: 1rem;
  border-radius: 6px;
}

/* Coming Soon Cards */
.coming-soon-card {
  background: var(--light-card);
  padding: 2.5rem;
  border-radius: 8px;
  border: 2px dashed var(--accent);
  max-width: 600px;
  margin: 0 auto;
}

.coming-soon-badge {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* FAQ Accordion */
.faq-list details {
  background: var(--light-card);
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-radius: 6px;
  cursor: pointer;
}

.faq-list summary {
  font-weight: 600;
  color: var(--primary);
}

.faq-list p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background-color: var(--primary);
  color: white;
}

/* Responsive Styling */
@media (max-width: 600px) {
  .nav-links { display: none; }
  .script-title { font-size: 3.5rem; }
  .script-heading { font-size: 2.8rem; }
  .carousel-slide img { height: 300px; }
  .countdown-container { gap: 0.5rem; }
  .time-block { min-width: 55px; padding: 0.5rem; }
}