:root {
  --emerald-dark: #002b20;
  --emerald-main: #004030;
  --emerald-light: #008c5d;
  --gold: #C5A028;
  --gold-dim: #8A6D1F;
  --text-color: #f0f0f0;
  --bg-color: #050a05;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.highlight {
  color: var(--gold);
  font-weight: bold;
  transition: all 0.3s ease;
}

a.highlight:hover {
  color: var(--emerald-light);
  text-shadow: 0 0 8px var(--emerald-light);
}

/* Background Overlay for Texture */
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 64, 48, 0.4) 0%, rgba(5, 10, 5, 0.9) 100%),
    url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjMDAwIiAvPgo8cmVjdCB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSIjMTEyMjExIiAvPgo8L3N2Zz4=');
  /* subtle noise */
  z-index: -1;
}

/* Header */
.logo-image {
  max-width: 100%;
  max-height: 600px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.logo-container {
  margin-bottom: 2rem;
}

.main-header {
  text-align: center;
  padding: 4rem 1rem;
  margin-bottom: 2rem;
  position: relative;
}



.intro-text {
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0.5rem 0;
  font-family: 'Cinzel', serif;
}

.date-display {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: var(--gold);
}

/* Sections */
.section {
  max-width: 800px;
  margin: 0 auto 4rem auto;
  padding: 2rem;
  background: rgba(0, 40, 30, 0.3);
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--gold-dim);
  display: inline-block;
  padding-bottom: 0.5rem;
}


/* Timeline/Itinerary */
.timeline-item {
  margin-bottom: 2rem;
  padding: 1rem;
  border-left: 2px solid var(--gold);
  text-align: left;
  background: rgba(0, 0, 0, 0.2);
}

.timeline-item h3 {
  margin: 0;
  font-size: 1.5rem;
}

.timeline-item .time {
  color: var(--emerald-light);
  font-weight: bold;
  margin: 0.5rem 0;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.menu-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border: 1px solid var(--emerald-light);
}


/* Center the last menu item on desktop */
@media (min-width: 601px) {
  .menu-card:last-child {
    grid-column: span 2;
    width: calc(50% - 0.75rem);
    margin: 0 auto;
  }
}

.menu-card h3 {
  font-size: 1.2rem;
  margin-top: 0;
}

/* Contact */
.contact-box {
  margin: 2rem 0;
  padding: 1rem;
  border: 1px dashed var(--gold);
}

.contact-box a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: normal;
  transition: all 0.3s ease;
}

.contact-box a:hover {
  color: var(--emerald-light);
  text-shadow: 0 0 8px var(--emerald-light);
}

.contact-info a {
  color: var(--gold);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
}

.contact-info a:hover {
  text-decoration: underline;
  text-shadow: 0 0 5px var(--gold);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sparkle Animation */
@keyframes sparkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--gold);
  animation: sparkle 2s infinite ease-in-out;
}

/* Enhanced Header */
.main-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, transparent 20%, var(--bg-color) 100%);
  pointer-events: none;
}

/* Mobile */
@media (max-width: 600px) {
  .logo-image {
    max-height: 350px;
    margin-bottom: 1.5rem;
  }

  .intro-text {
    line-height: 1.2;
  }

  .section {
    padding: 1rem;
    margin: 0 1rem 2rem 1rem;
  }


  .menu-grid {
    grid-template-columns: 1fr;
  }
}


/* Dress Code Items Width */
@media (min-width: 601px) {
  .style-item {
    width: calc(50% - 0.75rem);
    margin: 0 auto 2rem auto;
  }
}



/* Dress Code Subtitle */
.dress-code-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: -10px;
  margin-bottom: 10px;
  color: var(--gold);
}
