



/* ── CSS VARIABLES ── */
:root {
  --green-deep:   #0d2318;
  --green-dark:   #14321f;
  --green-mid:    #1e5c35;
  --green-bright: #4a9c5d;
  --green-accent: #6abf7b;
  --gold:         #c9a84c;
  --gold-light:   #e8c96e;
  --cream:        #f5f0e8;
  --white:        #fdfcfa;
  --text-muted:   #8aaa90;
}

/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
   max-width: 100%;
}

body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--green-deep);
  color: var(--cream);
  overflow-x: hidden;
   max-width: 100%;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 80px;
  background: rgba(13, 35, 24, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 156, 93, 0.15);
  transition: background 0.3s;
}

.nav-logo img {
  height: 62px;
  filter: drop-shadow(0 0 8px rgba(74, 156, 93, 0.4));
  /* mix-blend-mode: multiply; */
  
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
}

.nav-links a:hover       { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active      { color: var(--gold-light); }

.nav-cta {
  background: var(--green-mid) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--green-accent) !important;
  transition: background 0.3s, border-color 0.3s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--green-bright) !important;
  border-color: var(--gold) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

/* Animate to X when open */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Responsive ── */
@media (max-width: 768px) {
  nav {
    padding: 0 1.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none !important;
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: rgba(6, 14, 9, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 1rem 0 2rem;
    border-bottom: 1px solid rgba(74, 156, 93, 0.15);
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(74, 156, 93, 0.07);
    font-size: 0.8rem;
  }

  .nav-links a::after { display: none; }

  .nav-cta {
    margin-top: 0.8rem;
    width: auto !important;
    padding: 0.7rem 2.5rem !important;
  }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--green-mid);
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--green-accent);
  transition: border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--green-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 0;
}

.btn-primary:hover::before { transform: scaleX(1); }

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  display: inline-block;
  padding: 1rem 2.8rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: background 0.3s;
}

.btn-outline:hover { background: rgba(201, 168, 76, 0.1); }

/* ── SECTION LABELS (shared) ── */
.section-label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  text-align: center;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-title em {
    font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--green-accent);
}

.section-sub {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 4rem;
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── FOOTER ── */
.site-footer {
  background: #060e09;
  padding: 4rem;
  border-top: 1px solid rgba(74, 156, 93, 0.1);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand img {
  height: 70px;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 6px rgba(74, 156, 93, 0.3));
}

.footer-brand p {
  font-size: 0.78rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  gap: 1rem;
}
.footerLocation{
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.8rem !important;
  margin-bottom: 0.8rem !important;
  gap: 1rem;
}

.footer-col a,
.footer-col p {
  display: block;
  text-decoration: none;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 2.2;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  background: #060e09;
  padding: 1.5rem 4rem;
  border-top: 1px solid rgba(74, 156, 93, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(138, 170, 144, 0.5);
  letter-spacing: 0.08em;
}



/* ── RESPONSIVE: shared ── */
@media (max-width: 900px) {
  nav { padding: 0 2rem; }
  .nav-links { gap: 1.5rem; }

  /* Footer — 2 columns on tablet */
  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 3rem 2rem;
  }

  /* Brand takes full width on tablet */
  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(74,156,93,0.1);
  }

  .footer-brand img {
    height: 50px;
    margin-bottom: 0;
  }

  .footer-brand p { max-width: 100%; }

  .footer-bottom {
    padding: 1rem 2rem;
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }

  /* Footer — single column on mobile */
  .site-footer {
    grid-template-columns: repeat(3, 1fr); 
    gap: 1rem;
    padding: 2.5rem 1.5rem;
  }

  /* Brand stacks vertically again */
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding-bottom: 2rem;
    margin-bottom: 0;
  }

  .footer-brand img { height: 44px; }

  /* Each col gets a top border as divider */
  .footer-col {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(74,156,93,0.08);
  }

  .footer-col h4 {
    margin-bottom: 0.8rem;
  }

  /* Tighter line height on mobile */
  .footer-col a,
  .footer-col p {
    line-height: 2;
    font-size: 0.8rem;
  }

  /* Location h4 inside hours col */
  .footerLocation {
    margin-top: 1.2rem;
  }

  .footer-bottom {
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }

  .footer-bottom p { font-size: 0.75rem; }
}


/* ============================================================
   home.css — Styles specific to index.html (Home Page)
   ============================================================ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
   
    /* deep green-dark vignette at the bottom so text stays readable */
    radial-gradient(ellipse 100% 55% at 50% 100%, rgba(6, 14, 9, 0.92) 0%, transparent 70%),
    /* left + right edge darkening */
    radial-gradient(ellipse 30% 100% at 0% 50%,   rgba(6, 14, 9, 0.55) 0%, transparent 70%),
    radial-gradient(ellipse 30% 100% at 100% 50%, rgba(6, 14, 9, 0.55) 0%, transparent 70%),
    /* warm sepia tone layer over the whole image */
    linear-gradient(170deg, rgba(30, 18, 4, 0.45) 0%, rgba(15, 28, 10, 0.35) 50%, rgba(6, 14, 4, 0.55) 100%),
    /* the actual photo */
    url('./public/IMG_4955.jpg') center 30% / cover no-repeat;
}

/* CSS filter for extra warmth + subtle contrast boost */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(180, 100, 10, 0.08);   /* amber wash */
  mix-blend-mode: multiply;
  pointer-events: none;
}


.grass-deco {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 260px;
  background: linear-gradient(to top, rgba(30, 92, 53, 0.35) 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  animation: fadeUp 1.2s ease both;
}

.hero-tag {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 1.2s 0.2s ease both;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: 0.04em;
  color: var(--white);
  animation: fadeUp 1.2s 0.35s ease both;
}

.hero h1 em {
  font-style: italic;
  color: #50cd69
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeUp 1.2s 0.5s ease both;
}

.hero-divider {
  margin: 2rem auto;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  animation: fadeUp 1.2s 0.6s ease both;
}

.hero-desc {
  max-width: 480px;
  margin: 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.75);
  animation: fadeUp 1.2s 0.7s ease both;
}


.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUp 1.2s 1.2s ease both;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}



/* ── FEATURED DISHES ── */
.dishes {
  padding: 8rem 4rem;
  background: var(--green-deep);
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.dish-card {
  background: var(--green-dark);
  border: 1px solid rgba(74, 156, 93, 0.12);
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
}

.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(74, 156, 93, 0.1);
}

.dish-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.dish-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dish-img .sekuwaImg{
  position: relative;
  z-index: 1;
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.dish-img .tongbaImg{
  position: relative;
  z-index: 1;
  width: 27%;
  height: 100%;
  object-fit: cover;
}

.dish-img-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0a2010 100%);
}

.dish-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--green-dark), transparent);
}

.dish-emoji {
  position: relative;
  z-index: 1;
  font-size: 4.5rem;
}

.dish-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 2;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  font-weight: 600;
}

.dish-body { padding: 1.8rem 2rem; }

.dish-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.dish-desc {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dish-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
}

.dish-tag {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-accent);
  border: 1px solid rgba(106, 191, 123, 0.3);
  padding: 0.25rem 0.7rem;
}

/* ── ABOUT ── */
.about-wrapper {
  background: var(--green-dark);
  padding: 4rem 0 0;
}

.about {
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-img-wrap { position: relative; }

.about-img-box {
  width: 100%;
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse at 40% 60%, rgba(30, 92, 53, 0.6), transparent 70%),
    linear-gradient(135deg, #0d2318, #14321f);
  border: 1px solid rgba(74, 156, 93, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-img-box::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, transparent 60%, rgba(201, 168, 76, 0.08));
}

.about-corner {
  position: absolute;
  width: 80px;
  height: 80px;
}

.about-corner.tl { top: -1px; left: -1px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.about-corner.br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

.about-logo {
  width: 70%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 30px rgba(74, 156, 93, 0.3));
}

.about-stats {
  position: absolute;
  bottom: -2rem; right: -2rem;
  background: var(--green-mid);
  border: 1px solid rgba(74, 156, 93, 0.3);
  padding: 1.5rem 2rem;
  text-align: center;
}

.about-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 0.3rem;
}

.about-text { padding-right: 2rem; }

.about-text .section-label,
.about-text .section-title { text-align: left; }

.about-text .section-title { margin-bottom: 2rem; }

.about-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 1.5rem;
}



/* ── HOME RESPONSIVE ── */
@media (max-width: 900px) {
  .features   { padding: 5rem 2rem; }
  .dishes     { padding: 5rem 2rem; }
  .about      { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2rem; }
  .about-text { padding-right: 0; }
  .testimonials { padding: 5rem 2rem; }
  .reservation  { padding: 5rem 2rem; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 3rem; }
}

/* ============================================================
   register.css — Styles for register.html (Event Registration)
   ============================================================ */

/* ── PAGE HERO ── */
.register-hero {
  padding-top: 80px;
  min-height: 45vh;
  padding-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 120%, rgba(30, 92, 53, 0.5), transparent 65%),
    linear-gradient(170deg, #050c08 0%, #0d2318 60%, #0a1c10 100%);
  position: relative;
  overflow: hidden;
}

.register-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,156,93,0.06) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}

.register-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--green-mid), transparent);
}

.register-hero-tag {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  animation: fadeUp 0.8s ease both;
}

.register-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  animation: fadeUp 0.8s 0.15s ease both;
  line-height: 1.1;
}

.register-hero h1 em {
  font-style: italic;
  color: var(--green-accent);
}

.register-hero p {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  animation: fadeUp 0.8s 0.3s ease both;
}
.loc-logo {
  width: 208px;
  object-fit: contain;
  border-radius: 17%;
  margin-top: 1.5rem;
  filter: drop-shadow(0 0 20px rgba(201, 140, 30, 0.5));
  animation: fadeUp 0.8s 0.4s ease both;
}

/* ── EVENTS STRIP ── */
.events-strip {
  background: var(--green-dark);
  border-bottom: 1px solid rgba(74,156,93,0.12);
  padding: 1.8rem 4rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  overflow-x: auto;
}

.event-pill {
  background: transparent;
  border: 1px solid rgba(74,156,93,0.2);
  color: var(--text-muted);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.event-pill::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--green-mid);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 0;
}

.event-pill span { position: relative; z-index: 1; }

.event-pill:hover { color: var(--cream); border-color: var(--green-accent); }
.event-pill:hover::before { transform: scaleX(1); }

.event-pill.selected {
  background: var(--green-mid);
  border-color: var(--green-accent);
  color: var(--white);
}

.event-pill.selected::before { transform: scaleX(1); }

/* ── MAIN LAYOUT ── */
.mobile-phase-bar {
  display: none;
  background: rgba(13,35,24,0.95);
  border-top: 1px solid rgba(74,156,93,0.15);
  border-bottom: 1px solid rgba(74,156,93,0.15);
  padding: 1rem 1.5rem 1.2rem;  /* ← slightly more bottom padding */
  flex-direction: column;        /* ← stack prices and active text */
  align-items: center;
  gap: 0.8rem;
}
.mobile-phase-items {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mobile-phase-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mobile-phase-price {
  font-size: 1.1rem;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
}
.mobile-phase-deadline {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 0.3rem;   /* ← space above deadline */
  opacity: 0.8;
}

.mobile-phase-divider {
  font-size: 0.8rem;
  color: rgba(74,156,93,0.4);
  margin-top: 0.5rem;
}

.mobile-phase-active {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  width: 100%;
  margin-top: 0.6rem;   /* ← space above active text */
  padding-top: 0.4rem;  /* ← extra breathing room */
  border-top: 1px solid rgba(201,168,76,0.15); /* ← subtle divider line */
}
/* Title */
.category-title {
  margin-top:1rem;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.3rem;
}

.category-subtitle {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1rem;
}
.category-strip {
  max-width: 1100px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.category-card {
  border: 1px solid rgba(74,156,93,0.2);
  background: rgba(13,35,24,0.5);
  padding: 1.2rem;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.category-card:hover {
  border-color: rgba(74,156,93,0.5);
  background: rgba(30,92,53,0.2);
}

.category-card.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.category-card.selected::after {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.category-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(74,156,93,0.15);
}

.category-name {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

.category-price {
  font-size: 1rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}
.categoryDate {
  font-family: 'Playfair Display', serif;
}
.category-includes {
  list-style: none;
  padding: 0;
}

.category-includes li {
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
  letter-spacing: 0.03em;
}
.recommended-badge {
  position: absolute;
  top: -8px;
  left: 10px;
  background: var(--gold);
  color: black;
  font-size: 0.6rem;
  padding: 0.2rem 0.6rem;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
.category-title {
margin-top:1rem;
}

  .category-strip {
    padding: 0 1rem;
  }

  .category-cards {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }

  .category-card {
    border-radius: 12px;
    padding: 1rem;
    background: rgba(13,35,24,0.7);
    border: 1px solid rgba(74,156,93,0.25);

    /* 👇 makes it feel clickable */
    transition: all 0.25s ease;
  }

  .category-card:active {
    transform: scale(0.98);
  }

  /* SELECTED = STRONG VISUAL */
  .category-card.selected {
    border: 1px solid var(--gold);
    background: rgba(201,168,76,0.12);
    box-shadow: 0 0 0 1px rgba(201,168,76,0.2);
  }

  .category-card.selected::after {
    font-size: 0.65rem;
    top: 0.6rem;
    right: 0.8rem;
  }

  /* HEADER STRONGER */
  .category-card-header {
    margin-bottom: 0.8rem;
  }

  .category-name {
    font-size: 0.75rem;
  }

  .category-price {
    font-size: 1rem;
  }

  /* CLEAN LIST */
  .category-includes {
    margin-top: 0.5rem;
  }

  .category-includes li {
    font-size: 0.7rem;
    padding: 0.2rem 0;
    line-height: 1.4;
  }
  .category-card + .category-card {
  border-top: 1px solid rgba(74,156,93,0.15);
}
}

@media (max-width: 768px) {
  .mobile-phase-bar {
    display: flex;
    position: relative;
  }
}
@media (max-width: 480px) {
  .mobile-phase-bar {
    padding: 0.9rem 1rem 1rem;
    gap: 0.6rem;
  }

  .mobile-phase-items {
    gap: 1rem;
  }

  .mobile-phase-price {
    font-size: 0.95rem;
  }

  .mobile-phase-label {
    font-size: 0.75rem;
  }

  .mobile-phase-deadline {
    font-size: 0.5rem;
  }

  .mobile-phase-active {
    font-size: 0.75rem;
  }
}

/* Very small — 360px and below */
@media (max-width: 360px) {
  .mobile-phase-items {
    gap: 0.7rem;
  }

  .mobile-phase-price {
    font-size: 0.85rem;
  }

  .mobile-phase-divider {
    font-size: 0.75rem;
  }

  .mobile-phase-label {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
  }
}

.register-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 4rem;
  align-items: start;
}

/* ── FORM CARD ── */
.form-card {
  background: var(--green-dark);
  border: 1px solid rgba(74,156,93,0.15);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--green-mid), var(--gold), var(--green-accent));
}

.form-card-header {
  padding: 2.5rem 3rem 2rem;
  border-bottom: 1px solid rgba(74,156,93,0.1);
}

.form-card-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.form-card-header h2 em { font-style: italic; color: var(--green-accent); }

.form-card-header p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.form-body { padding: 2.5rem 3rem 3rem; }

/* ── FORM ROW ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-row.full { grid-template-columns: 1fr; }

/* ── FIELD GROUP ── */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #0d2318 inset !important;
  -webkit-text-fill-color: #f5f2e9 !important;
}
.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.field-label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.field-required { color: #e05c3a; margin-left: 2px; }

.field-input {
  background: rgba(13,35,24,0.7);
  border: 1px solid rgba(74,156,93,0.2);
  color: var(--cream);
  padding: 0.9rem 1.2rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  width: 100%;
  -webkit-appearance: none;
}

.field-input::placeholder { color: rgba(138,170,144,0.4); font-size: 0.78rem; }

.field-input:focus {
  border-color: var(--green-accent);
  background: rgba(13,35,24,0.9);
  box-shadow: 0 0 0 3px rgba(74,156,93,0.08);
}

.field-input.error { border-color: #e05c3a; }
.field-input.valid { border-color: rgba(74,156,93,0.5); }

.field-icon-wrap {
  position: relative;
}

.field-icon-wrap .field-input { padding-left: 3rem; }

.field-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  pointer-events: none;
  transition: color 0.3s;
}

.field-icon-wrap:focus-within .field-icon { color: var(--green-accent); }

.field-error {
  font-size: 0.75rem;
  color: #e05c3a;
  letter-spacing: 0.08em;
  min-height: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.25s;
}

.field-error.visible { opacity: 1; transform: translateY(0); }

/* ── SELECT ── */
select.field-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238aaa90' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 2.8rem;
}

select.field-input option { background: #14321f; color: var(--cream); }

/* ── SPECIAL REQUESTS ── */
textarea.field-input {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}

/* ── PERSONS STEPPER ── */
.persons-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(74,156,93,0.2);
  background: rgba(13,35,24,0.7);
  transition: border-color 0.3s;
}

.persons-stepper:focus-within { border-color: var(--green-accent); }

.step-btn {
  background: rgba(30,92,53,0.3);
  border: none;
  color: var(--cream);
  width: 48px; height: 48px;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, color 0.3s;
  flex-shrink: 0;
  line-height: 1;
}

.step-btn:hover { background: var(--green-mid); color: var(--white); }
.step-btn:active { background: var(--green-bright); }

.step-value {
  flex: 1;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--cream);
  background: transparent;
  border: none;
  outline: none;
  padding: 0 1rem;
  min-width: 0;
}

/* ── DIVIDER ── */
.form-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(74,156,93,0.2), transparent);
  margin: 2rem 0;
}

/* ── SUBMIT BUTTON ── */
.btn-register {
  width: 100%;
  padding: 1.2rem 2rem;
  background: var(--green-mid);
  color: var(--white);
  border: 1px solid var(--green-accent);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  margin-top: 0.5rem;
}

.btn-register::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-bright), var(--green-mid));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 0;
}

.btn-register:hover::before { transform: scaleX(1); }
.btn-register:hover { border-color: var(--gold); }

.btn-register span,
.btn-register svg { position: relative; z-index: 1; }

.btn-register svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 2;
  transition: transform 0.3s;
}

.btn-register:hover svg { transform: translateX(4px); }

/* ── SUCCESS STATE ── */
.btn-register.success {
  background: var(--green-bright);
  border-color: var(--green-accent);
  pointer-events: none;
}

.btn-register.success::before { transform: scaleX(1); }

/* ── SIDE PANEL ── */
.side-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 110px;
}

/* ── ORDER SUMMARY ── */
.summary-card {
  background: var(--green-dark);
  border: 1px solid rgba(74,156,93,0.15);
  overflow: hidden;
  animation: fadeUp 0.8s 0.3s ease both;
  opacity: 0;
}

.summary-card-header {
  background: linear-gradient(135deg, var(--green-mid), #0f3a20);
  padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 0.8rem;
}

.summary-card-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--white);
}

.summary-icon { font-size: 1.4rem; }

.summary-body { padding: 1.8rem 2rem; }

.summary-event-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.summary-event-date {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(74,156,93,0.08);
  font-size: 0.78rem;
}

.summary-line:last-of-type { border-bottom: none; }

.summary-line .label { color: var(--text-muted); letter-spacing: 0.06em; }

.summary-line .value {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--cream);
}

.summary-total {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(74,156,93,0.2);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.summary-total .total-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.total-amount {
    font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  transition: all 0.4s;
}

.total-amount.updating {
  transform: scale(1.05);
  color: var(--green-accent);
}

.summary-per-person {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  text-align: right;
}

/* ── INFO CARD ── */
.info-card {
  background: rgba(20,50,31,0.4);
  border: 1px solid rgba(74,156,93,0.1);
  padding: 1.8rem 2rem;
  animation: fadeUp 0.8s 0.5s ease both;
  opacity: 0;
}

.info-card h4 {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.info-row {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.info-row:last-child { margin-bottom: 0; }

.info-row-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.info-row-text {
  font-size: 0.74rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.info-row-text strong { color: var(--cream); font-weight: 400; }

/* ── SUCCESS OVERLAY ── */
.success-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(6,14,9,0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.success-overlay.show { display: flex; }

.success-box {
  background: var(--green-dark);
  border: 1px solid rgba(74,156,93,0.25);
  padding: 4rem;
  text-align: center;
  max-width: 480px;
  width: 90%;
  position: relative;
  animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

.success-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--green-mid), var(--gold));
}

.success-check {
  width: 72px; height: 72px;
  background: rgba(74,156,93,0.15);
  border: 2px solid var(--green-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 2rem;
  animation: popIn 0.5s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}

.success-box h2 h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.success-box h2 em { font-style: italic; color: var(--green-accent); }

.success-box p {
  font-size: 0.8rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

.success-ref {
  background: rgba(13,35,24,0.8);
  border: 1px solid rgba(74,156,93,0.15);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}

.success-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* ── PROGRESS STEPS ── */
.form-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2rem 4rem 0;
  max-width: 600px;
  margin: 0 auto;
}

.step-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  flex: 1;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(50% + 16px);
  right: calc(-50% + 16px);
  height: 1px;
  background: rgba(74,156,93,0.2);
  transition: background 0.5s;
}

.step-item.done:not(:last-child)::after { background: var(--green-accent); }

.step-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(74,156,93,0.25);
  background: rgba(13,35,24,0.8);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: all 0.4s;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 0;
}

.step-item.active .step-dot {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  color: var(--gold);
}

.step-item.done .step-dot {
  border-color: var(--green-accent);
  background: var(--green-mid);
  color: var(--white);
}

.step-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.step-item.active .step-label { color: var(--gold); }
.step-item.done  .step-label { color: var(--green-accent); }

/* ── RESPONSIVE ── */

.mobile-event-bar {
  display: none; /* hidden on desktop */
  background: rgba(20,50,31,0.95);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0.7rem 1.2rem;
  text-align: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.mobile-event-bar span:first-child {
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
}

.mobile-bar-dot {
  color: var(--gold);
  font-size: 0.9rem;
}


@media (max-width: 640px) {
  .mobile-event-bar {
    display: flex; /* show on mobile */
  }
}
@media (max-width: 1000px) {
  .register-layout { grid-template-columns: 1fr; padding: 3rem 2rem; }
  .side-panel { position: static; }
  .events-strip { padding: 1.5rem 2rem; }
}

@media (max-width: 600px) {
  .form-body { padding: 2rem 1.5rem; }
  .form-card-header { padding: 2rem 1.5rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-steps { padding: 1.5rem 2rem 0; }
  .success-box { padding: 3rem 2rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE FIRST OVERRIDES
   ============================================================ */

/* ── Tablet (max 1000px) ── */
@media (max-width: 1000px) {
  .register-layout {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
    gap: 2rem;
  }

  .side-panel {
    position: static;
    /* Show summary BELOW form on tablet */
    order: 2;
  }

  .form-card { order: 1; }

  .events-strip { padding: 1.5rem 2rem; }
}

/* ── Mobile (max 640px) ── */
@media (max-width: 640px) {

  /* Hero */
  .register-hero {
    height: auto;
    min-height: unset;
    padding: 100px 1.5rem 2.5rem;
  }

  .register-hero h1 { font-size: 2.4rem; }
  .register-hero p  { font-size: 0.75rem; }
  .loc-logo {
  width: 150px;
  }

  /* Progress steps */
  .form-steps {
    padding: 1.2rem 1.5rem 0;
  }

  .step-label { display: none; } /* hide labels on small screens */

  /* Events strip */
  .events-strip {
    padding: 1.2rem 1rem;
    gap: 0.6rem;
  }

  .event-pill {
    font-size: 0.75rem;
    padding: 0.55rem 1rem;
  }

  /* Layout */
  .register-layout {
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  /* Form card */
  .form-card-header {
    padding: 1.5rem 1.2rem 1.2rem;
  }

  .form-card-header h2 { font-size: 1.6rem; }
  .form-card-header p  { font-size: 0.75rem; }

  .form-body {
    padding: 1.5rem 1.2rem 2rem;
  }

  /* All rows stack to single column */
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  /* Inputs */
  .field-input {
    font-size: 0.9rem; /* bigger text for mobile tap */
    padding: 0.95rem 1rem;
  }

  .field-icon-wrap .field-input { padding-left: 2.8rem; }

  .field-label {
    font-size: 0.75rem;
  }

  /* Submit button */
  .btn-register {
    padding: 1.1rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
  }

  /* Summary card */
  .summary-card-header {
    padding: 1.2rem 1.5rem;
  }

  .summary-body {
    padding: 1.4rem 1.5rem;
  }

  .summary-event-name { font-size: 1.2rem; }
  .total-amount       { font-size: 2rem; }

  /* Info cards */
  .info-card {
    padding: 1.4rem 1.5rem;
  }

  .info-row-text { font-size: 0.75rem; }

  /* Success overlay */
  .success-box {
    padding: 2.5rem 1.5rem;
    width: 95%;
  }

  .success-box h2   { font-size: 1.8rem; }
  .success-box p    { font-size: 0.75rem; }
  .success-ref      { font-size: 1rem; letter-spacing: 0.1em; }

  .success-check {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  

  .success-btns {
    display: flex;
    justify-content: center;
  }

  .success-btns a,
  .success-btns button {
    text-align: center;
    width: 100%;
  }
    .success-btns .btn-register {
    margin: 0 auto;
  }
  }

/* ── Very small phones (max 380px) ── */
@media (max-width: 380px) {
  .register-hero h1   { font-size: 2rem; }
  .event-pill         { font-size: 0.75rem; padding: 0.5rem 0.8rem; }
  .form-body          { padding: 1.2rem 1rem 1.5rem; }
  .form-card-header   { padding: 1.2rem 1rem 1rem; }
  .summary-body       { padding: 1.2rem 1rem; }
  .info-card          { padding: 1.2rem 1rem; }
}

/* ============================================================
   events.css
   ============================================================ */

/* ── HERO ── */
.events-hero {
  padding-top: 80px;
  min-height: 40vh;
  padding-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 120%, rgba(30,92,53,0.5), transparent 65%),
    linear-gradient(170deg, #050c08 0%, #0d2318 60%, #0a1c10 100%);
  position: relative;
  overflow: hidden;
}

.events-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--green-mid), transparent);
}

.events-hero-tag {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  animation: fadeUp 0.8s ease both;
}

.events-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  animation: fadeUp 0.8s 0.15s ease both;
}

.events-hero h1 em { font-style: italic; color: var(--green-accent); }

.events-hero p {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  animation: fadeUp 0.8s 0.3s ease both;
}

/* ── SHARED ── */
.events-section {
  padding: 6rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.events-section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(74,156,93,0.2), transparent);
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.section-title em { font-style: italic; color: var(--green-accent); }

.section-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ── ABOUT LOC ── */
.loc-about-section {
  background: var(--green-deep);
}

.loc-about-inner {
  padding: 6rem 4rem;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.loc-about-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 2;
  color: rgba(245,240,232,0.78);
  margin-bottom: 3.5rem;
}

.loc-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.loc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.loc-stat-num {
    font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.loc-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── UPCOMING ── */
.upcoming-bg {
  background: var(--green-dark);
}

.upcoming-card {
  background: rgba(13,35,24,0.7);
  border: 1px solid rgba(74,156,93,0.18);
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.upcoming-card:hover {
  border-color: rgba(74,156,93,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.upcoming-card-left { flex: 1; min-width: 220px; }

.upcoming-event-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.upcoming-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.upcoming-meta-item {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.upcoming-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  text-align: right;
}

.upcoming-price span {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 0.2rem;
  text-transform: uppercase;
}

.status-badge {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(106,191,123,0.35);
  color: var(--green-accent);
  background: rgba(106,191,123,0.08);
  margin-bottom: 0.8rem;
}

.btn-register-now {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--green-mid);
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--green-accent);
  transition: background 0.3s, border-color 0.3s;
  margin-top: 1.2rem;
  white-space: nowrap;
}

.btn-register-now:hover { background: var(--green-bright); border-color: var(--gold); }

.no-upcoming {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px dashed rgba(74,156,93,0.15);
}

.no-upcoming p {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  line-height: 1.8;
}

/* ── PAST / LAST YEAR ── */
.past-bg { background: var(--green-deep); }

/* Photos */
.loc-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.loc-photo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(74,156,93,0.15);
}

.loc-photo-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  /* Placeholder style if image missing */
  background: linear-gradient(135deg, #0d2318, #14321f);
  min-height: 200px;
}

.loc-photo-card:hover img { transform: scale(1.04); }

.loc-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.8rem 1.2rem;
  background: linear-gradient(to top, rgba(5,12,8,0.85), transparent);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}

/* Highlights */
.loc-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.8rem;
}

.loc-highlight-item {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(74,156,93,0.1);
  background: rgba(20,50,31,0.2);
  line-height: 1.5;
}

/* ── CTA ── */
.events-cta {
  background: linear-gradient(135deg, var(--green-dark), #0a1c10);
  border-top: 1px solid rgba(74,156,93,0.1);
  padding: 6rem 4rem;
  text-align: center;
}

.events-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.events-cta h2 em { font-style: italic; color: var(--green-accent); }

.events-cta p {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
}

.events-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .events-section { padding: 4rem 1.5rem; }
  .loc-about-inner { padding: 4rem 1.5rem; }
  .loc-photos { grid-template-columns: 1fr; }
  .loc-stats { gap: 2rem; }
  .upcoming-card { flex-direction: column; }
  .upcoming-price { text-align: left; }
  .events-cta { padding: 4rem 1.5rem; }
}

@media (max-width: 768px) {
  /* Make sure nothing exceeds screen width */
  .register-layout,
  .form-card,
  .summary-card,
  .site-footer,
  .events-strip,
  table {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
  }
}