:root {
  color-scheme: light;
  --bg: #faf7f4;
  --bg-alt: #f1ece7;
  --text: #2d2623;
  --muted: #6b5f59;
  --accent: #b7795f;
  --accent-dark: #925941;
  --card: #ffffff;
  --border: rgba(45, 38, 35, 0.12);
  --shadow: 0 24px 60px rgba(45, 38, 35, 0.12);
}

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

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  text-align: center;
  overflow-x: hidden;
}

.full-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.hero {
  min-height: 100vh;
  background: radial-gradient(circle at top, #ffffff 0%, #f3ece7 40%, #efe6df 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 20px 8vw;
  }
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 30px;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  color: white;
  background-color: #b7795f;
  padding: 20px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

@media (min-width: 768px) {
  .nav {
    padding: 20px 8vw;
  }
}

.brand {
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 500;
  color: white;
}

.nav a {
  line-height: 1;
}

.hero-content {
  margin-top: 8vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 680px;
  width: 100%;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 0;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.75rem;
  color: var(--accent-dark);
  font-weight: 600;
}

.hero h1 {
  font-family: "Great Vibes", cursive;
  font-size: clamp(3rem, 8vw, 5.6rem);
  font-weight: 400;
}

.hero h1 span {
  color: var(--accent);
}

.subtitle {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  padding: 24px;
  background: var(--card);
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 4px;
}

.value {
  font-weight: 600;
}


.hero-details {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.cta {
  align-self: flex-start;
  background: var(--accent);
  color: white;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
  margin-top: 20px; /* Add some space above the button */
}

.cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.section {
  padding: 72px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .section {
    padding: 72px 8vw;
  }
}

.section.alt {
  background: var(--bg-alt);
}

.section-heading {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.grid {
  display: grid;
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  justify-items: center;
}

.events {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.travel {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(45, 38, 35, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.meta {
  color: var(--accent-dark);
  font-weight: 600;
}

.muted {
  color: var(--muted);
}

ul {
  padding-left: 0;
  color: var(--muted);
  display: grid;
  gap: 8px;
  list-style-position: inside;
}

.footer {
  background: #231c18;
  color: #f5eee7;
  padding: 56px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .footer {
    padding: 56px 8vw 32px;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
  text-align: center;
  width: 100%;
  max-width: 1100px;
}

.footer h3 {
  font-family: "Great Vibes", cursive;
  font-size: 2rem;
  margin-bottom: 12px;
}

.footer .label {
  color: #d7c6ba;
}

.footer-note {
  text-align: center;
  color: #c7b3a6;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero {
    padding: 24px 6vw 48px;
  }

  .hero-content {
    margin-top: 6vh;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .events,
  .travel {
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 80vw);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .travel {
    grid-auto-columns: minmax(260px, 85vw);
  }

  .events .card,
  .travel .card {
    scroll-snap-align: center;
  }
}

@media (max-width: 540px) {
  .hero-card {
    padding: 18px;
  }

  .cta {
    width: 100%;
    text-align: center;
    align-self: center;
  }
}

.venues {
  max-width: 100%;
  margin-bottom: 32px;
}

.venue-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 24px;
  text-align: left;
  cursor: pointer;
  transition: box-shadow 0.2s;
  height: 100%;
  width: 100%;
}
.venue-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.gmaps-link {
  display: inline-block;
  margin-top: 8px;
  color: #000;
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
}

.gmaps-link:hover {
  color: #000;
}

.gmaps-link:visited {
  color: #000;
}

.venue-details {
  margin-top: 16px;
}
.transport-modes {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.mode-btn {
  padding: 12px 16px;
  border: none;
  border-radius: 0;
  background: #b7795f17;
  color: #4d2b13;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.3s;
  flex: 1 1 calc(50% - 6px);
  text-align: center;
  min-width: 0;
}

@media (min-width: 576px) {
  .mode-btn {
    flex: 1 1 calc(25% - 9px);
    padding: 14px 20px;
    font-size: 14px;
  }
}

.mode-btn:hover {
  background: #92594163;
}

.mode-btn:active {
  background: #bb806e;
}

.mode-section {
  background: #fafbfc;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 8px;
}
