/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* BRAND */
:root{
  --green: #014421;
  --green-2: #003d1f;
  --black: #000000;
  --white: #FFFFFF;
  --grey: #D3D3D3;
  --granite: #676767;
  --ink: #222;
  --surface: #fff;
  --muted: #f7f7f9;
}

/* GLOBAL */
body { font-family: 'Montserrat', Arial, sans-serif; background: var(--surface); color: var(--ink); }
a { color: var(--granite); }
a:hover { color: var(--grey); }

/* HEADER */
.sticky-header {
  background: #fff; border-bottom: 2px solid #eee; position: sticky; top: 0; width: 100%; z-index: 999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.opening-banner {
  background-color: var(--green); /* brand green */
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 12px 0;
  letter-spacing: 1px;
}
.opening-banner p {
  margin: 0;
}

.header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: auto; padding: 10px 20px; }
.logo img { height: 60px; }
.main-nav { display: flex; gap: 25px; align-items: center; }
.main-nav a { text-decoration: none; font-weight: 600; color: var(--green); }
.main-nav a:hover { color: var(--black); }
.header-buttons { display: flex; gap: 10px; }
.btn-red, .btn-blue { color: #fff; padding: 8px 12px; border-radius: 3px; font-weight: 600; text-decoration: none; }
.btn-red { background: var(--black); } .btn-blue { background: var(--green-2); }

/* HAMBURGER (hidden on desktop) */
.hamburger { display: none; background: none; border: 0; font-size: 28px; cursor: pointer; color: var(--green);}

/* HERO */
header.hero.hero-logo { background: #fff; text-align: center; padding: 30px 10px; }
.hero-img { display: block; margin: 0 auto 15px; max-width: 900px; width: 100%; height: auto; }
header.hero.hero-logo h1 { font-size: 2.5rem; color: var(--green-2); margin-top: 0; }
header.hero.hero-logo p { font-size: 1.2rem; margin-bottom: 18px; color: var(--ink); }
.btn, .btn-secondary { background: var(--green-2); color: #fff; padding: 16px 38px; margin: 0 12px 14px 0; border: none; border-radius: 50px; font-size: 1.1rem; display: inline-block; transition: background 0.2s; }
.btn-secondary { background: #000; }
.btn:hover, .btn-secondary:hover { background: #002d1a; }

/* TOURS */
section.tours { background: #fff; padding: 36px 0 18px; text-align: center; }
section.tours h2 { font-size: 2rem; color: var(--green-2); margin-bottom: 18px; }
.tour-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; }
.tour-card {
  background: #fff; border-radius: 20px; box-shadow: 0 3px 12px rgba(0,0,0,0.12);
  padding: 25px 28px 18px; width: 410px; min-width: 250px; margin-bottom: 18px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.tour-card h3 { color: var(--green-2); font-size: 1.35rem; margin-top: 0; }
.tour-card p { font-size: 1.05rem; margin: 6px 0 11px; }
.tour-img { width: 100%; height: 230px; object-fit: cover; border-radius: 16px; margin-bottom: 17px; box-shadow: 0 2px 12px rgba(0,0,0,0.12); }

.brewery-list {
  list-style-type: disc;
  padding-left: 20px;   /* space for bullets */
  margin: 12px 0 18px 0;
  text-align: left;     /* force left alignment */
}

.brewery-list li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.5;
}
/* Center the bottom CTAs on desktop */
.tour-cta{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

/* Make sure global button styles don't force full-width on desktop */
@media (min-width: 769px){
  .tour-cta .btn,
  .tour-cta .btn-secondary{
    width: auto !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}


/* WHY US */
.why-us { padding: 40px 20px; background: #fff; }
.why-wrap { max-width: 1000px; margin: 0 auto; text-align: center; }
.why-wrap h2 { font-size: 2rem; margin-bottom: 20px; color: var(--green-2); }
.features {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; justify-content: center;
  margin: 18px auto; max-width: 800px; list-style: none; padding: 0;
}
.features li { background: #fff; border-radius: 18px; font-size: 1.05rem; padding: 16px 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); text-align: center; }

/* CTA & BOOKING */
.cta-banner { text-align: center; background: var(--muted); padding: 30px 14px; }
.cta-banner h2 { color: var(--green-2); font-size: 1.4rem; margin: 0 0 10px; }
.booking { text-align: center; background: var(--muted); padding: 23px 14px; }
.booking h2 { color: var(--green-2); font-size: 1.4rem; }

/* FOOTER */
footer { background: #111; color: #fff; padding: 22px 0 8px; text-align: center; }
.footer-content { display: flex; flex-direction: column; align-items: center; }
.logo-footer { width: 110px; height: auto; margin-bottom: 12px; border-radius: 16px; background: #fff; box-shadow: 0 3px 12px rgba(0,0,0,0.2); }
footer nav { margin: 7px 0 12px; }
footer nav a { color: #fff; margin: 0 16px; text-decoration: none; font-size: 1.05rem; }
footer nav a:hover { color: var(--grey); }

/* RESPONSIVE */
@media (max-width: 1100px) { .tour-cards { gap: 20px; } .tour-card { width: 85vw; } }
@media (max-width: 800px) {
  .tour-cards { flex-direction: column; align-items: center; }
  .features { grid-template-columns: 1fr; }
  header.hero { padding: 30px 8px; }
  .tour-card { width: 97vw; min-width: 90vw; }
  .tour-img { height: 185px; }
  .logo-footer { width: 90px; }
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .header-container { position: relative; }
  .hamburger { display: block; }
  .header-buttons { display: none; }

  .main-nav {
    display: none; position: absolute; left: 8px; right: 8px; top: calc(100% + 8px);
    background: #fff; border-radius: 12px; padding: 8px;
    box-shadow: 0 16px 40px rgba(0,0,0,.18); flex-direction: column; gap: 4px; z-index: 1000;
  }
  .main-nav.show { display: flex; }
  .main-nav a { color: var(--green) !important; display: block; padding: 12px 14px; border-radius: 8px; font-weight: 600; }
  .main-nav a:hover { background: rgba(0,0,0,0.06); }

  body.nav-open { overflow: hidden; }
}
/* CONTACT PAGE */
.contact-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  text-align: center;
}

.contact-section h1 {
  font-size: 2rem;
  color: var(--green-2);
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--ink);
}

.contact-info p {
  margin: 10px 0;
  font-size: 1.05rem;
}

.contact-info a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  color: var(--black);
}

/* PARTNERSHIPS BULLETS */
/* Center all section headings */
.tours h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Center everything inside partner highlight cards */
.partner-highlight {
  max-width: 800px;
  margin: 30px auto;
  text-align: center;
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.partner-highlight h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--green-2);
  text-align: center;
}

.partner-highlight p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 14px;
  text-align: center;
}

/* Center brewery/wine/hotel lists inside cards */
.partner-highlight ul {
  list-style: none;   /* no bullets, clean center look */
  padding: 0;
  margin: 0 auto;
  text-align: center;
}

.partner-highlight li {
  margin-bottom: 6px;
}
.tour-highlight {
  max-width: 800px;
  margin: 30px auto;
  text-align: center;
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.tour-highlight h2 {
  color: var(--green);
  margin-bottom: 10px;
}

.tour-highlight p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 12px;
  text-align: center;
}

.tour-highlight ul {
  list-style: none;
  padding: 0;
  margin: 10px auto;
  text-align: center;
}

.tour-highlight li {
  margin-bottom: 6px;
}
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

.tour-highlight {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 20px 16px;
  margin-bottom: 30px;
  max-width: 340px;
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.tour-highlight:hover {
  transform: translateY(-5px);
}

.tour-highlight h2,
.tour-highlight p,
.tour-highlight h4 {
  text-align: center;
}

.tour-highlight .brewery-list {
  list-style-type: disc;
  padding-left: 20px;   /* space for bullets */
  margin: 12px 0 18px 0;
  text-align: left;     /* force left alignment */
}

.tour-highlight .brewery-list li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.5;
}



/* MOBILE TWEAKS */
@media (max-width: 600px) {
  .tour-highlight {
    margin: 12px auto;
    max-width: 95vw; /* Fill most of screen width on phones */
  }
}

/* TOUR GRID LAYOUT (cleaned up) */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  justify-items: center;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 10px;
}

@media (max-width: 900px) {
  .tour-grid {
    gap: 20px;
    padding: 0 15px;
  }
}

@media (max-width: 600px) {
  .tour-grid {
    gap: 15px;
    padding: 0 10px;
  }
}

.fleet-perks {
  list-style: none; /* remove default bullets */
  padding: 0;
  margin: 20px auto 0 auto;
  max-width: 600px;
  font-size: 1.1rem;
  text-align: left;
}

.fleet-perks li {
  margin-bottom: 8px;
  padding-left: 28px;
  position: relative;
}

.fleet-perks li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 1.2rem;
  line-height: 1;
}
.fleet-highlight {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.fleet-highlight h1 {
  color: var(--green);
  margin-bottom: 20px;
}

.fleet-highlight p {
  font-size: 1.15rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
/* Fleet page gallery grid */
.fleet-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px auto;
  max-width: 1100px;
  padding: 0 20px;
}

.fleet-gallery img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  object-fit: cover;
}

.fleet-perks {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  font-size: 1.05rem;
  text-align: left;
}

.fleet-perks li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.fleet-perks li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 1.2rem;
  line-height: 1;
}
.faq-highlight {
  max-width: 800px;
  margin: 30px auto;
  text-align: center;
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.faq-highlight h2 {
  color: var(--green);
  margin-bottom: 12px;
}

.faq-highlight p {
  font-size: 1.05rem;
  line-height: 1.6;
}
.faq-highlight ul.faq-list {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;   /* keep bullets aligned neatly */
  max-width: 500px;
  margin: 10px auto;
}

.faq-highlight ul.faq-list li {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.5;
}
/* FAQ Hero Section */
.faq-hero {
  text-align: center;
  margin: 50px auto 30px auto;
  max-width: 900px;
  padding: 0 20px;
}
.faq-hero h1 {
  font-size: 2.2rem;
  color: var(--green-2);
  margin-bottom: 15px;
}
.faq-hero p {
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.6;
}
/* Accordion Styles for Tours */
.accordion {
  background: var(--white);
  color: var(--green);
  cursor: pointer;
  padding: 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative; /* needed for arrow positioning */
}

/* Arrow icon (default closed state: down) */
.accordion::after {
  content: "▼";
  font-size: 0.9rem;
  color: var(--granite);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

/* When active/open: arrow flips up */
.accordion.active::after {
  content: "▲";
  color: var(--green-2);
}

.accordion:hover {
  background: var(--muted);
}

.accordion-price {
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: normal;
  margin-top: 4px;
}

/* Panels hidden by default, slide open when .show is toggled */
.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 16px; /* keep side padding collapsed */
  background: #fff;
  font-size: 0.95rem;
  line-height: 1.5;
}

.panel.show {
  max-height: 500px; /* adjust if you have longer text */
  padding: 16px;
}

/* Make sure accordion buttons match your card style */
.tour-highlight {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 20px auto;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.about-section {
  text-align: center;
}
.about-section p {
  margin-bottom: 18px;
  line-height: 1.6;
}
.services-page ul {
  list-style: none;       /* remove default browser bullets */
  padding-left: 0;        /* reset */
  margin: 14px 0 22px 0;
}

.services-page ul li {
  position: relative;
  padding-left: 36px;     /* more space for bullet + text */
  margin-bottom: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.services-page ul li::before {
  content: "•";
  position: absolute;
  left: 12px;             /* pull bullet in from the edge */
  top: 0;
  color: var(--green);    /* brand green bullet */
  font-size: 1.4rem;
  line-height: 1.2;
}
@media screen and (max-width: 600px) {
  form input,
  form select,
  form textarea,
  form button {
    width: 100%;
    font-size: 1rem;
    padding: 12px;
  }

  form label {
    font-size: 1rem;
  }

  .booking-section {
    padding: 10px;
  }
}
/* Booking form polish */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #014421; /* your Kelly green */
  outline: none;
  box-shadow: 0 0 4px rgba(1, 68, 33, 0.4);
}

.contact-form button {
  background: #014421; /* Kelly green */
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #000; /* Midnight black */
}
/* Footer link override — safe & scoped */
footer a {
  color: #fff !important;
  text-decoration: none;
}
footer a:hover {
  color: #1b6e35 !important; /* lighter brand green on hover */
}
/* Services Page Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-card h3 {
  color: #014421;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.service-card p {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}
/* CTA Banner */
.cta-banner {
  background: #f8f8f8; /* same neutral light background as your site */
  text-align: center;
  padding: 60px 20px;
  margin: 40px 0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-banner h2 {
  font-size: 2rem;
  color: #014421; /* Kelly green brand color */
  margin-bottom: 15px;
}

.cta-banner p {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
}

.cta-banner .btn-green {
  background: #014421;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-banner .btn-green:hover {
  background: #027a34; /* lighter green hover */
}
/* Fix BYO checkbox alignment on mobile */
#brew-your-own-options label {
  display: flex;
  align-items: center;         /* vertically center checkbox + text */
  gap: 12px;                   /* space between box and text */
  margin: 10px 0;
  line-height: 1.3;
}

#brew-your-own-options input[type="checkbox"] {
  width: 22px;                 /* bigger tap target */
  height: 22px;
  flex: 0 0 auto;
  vertical-align: middle;      /* extra help for older Safari */
}

#brew-your-own-options p {
  text-align: center;
  margin: 12px 0 16px;
  font-weight: 600;
}
/* Center Brew Your Own checkbox group on mobile */
#brew-your-own-options {
  display: flex;
  flex-direction: column;
  align-items: center;    /* center horizontally */
}

#brew-your-own-options label {
  width: auto;
  justify-content: flex-start; /* keep box + text side by side */
}

#brew-your-own-options input[type="checkbox"] {
  margin-right: 8px;       /* slight space if you prefer instead of gap */
}

.hero {
  text-align: center;
  padding: 40px 20px;
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.hero-inner img.hero-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
/* Shared hero centering (matches index) */
.hero { text-align: center; padding: 40px 20px; }
.hero-inner { max-width: 900px; margin: 0 auto; }
.hero-inner .hero-img { max-width: 100%; height: auto; margin-bottom: 20px; }
.hero-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 16px; }

/* About page layout */
.about-hero { text-align: center; padding: 60px 20px; }
.about-hero .wrap { max-width: 800px; margin: 0 auto; }

.about-story { padding: 40px 20px; }
.about-story .wrap { max-width: 1100px; margin: 60px auto; }
.about-story__grid { display: flex; flex-wrap: wrap; align-items: center; gap: 30px; }
.about-story__media img { width: 100%; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.about-story__copy h2 { color: #014421; margin-bottom: 12px; }

.about-values { background: #f9f9f9; padding: 60px 20px; }
.about-values .wrap { max-width: 1100px; margin: 0 auto; text-align: center; }
.about-values h2 { color: #014421; margin-bottom: 32px; }
.about-values .cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.about-values .card { background: #fff; padding: 20px; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.about-values .card h3 { color: #014421; margin-bottom: 8px; }

.about-strip { background: #014421; color: #fff; text-align: center; padding: 40px 20px; }
.about-strip h2 { margin: 0 0 8px; }
.about-strip .wrap { max-width: 900px; margin: 0 auto; }
/* About — story section layout */
.about-story { padding: 40px 20px; }
.about-story .wrap { max-width: 1100px; margin: 60px auto; }
.about-story__grid { display: flex; flex-wrap: wrap; align-items: center; gap: 30px; }

.about-story__media { flex: 1 1 420px; display: flex; justify-content: center; }
.about-story__media img { width: 100%; max-width: 520px; height: auto; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.about-story__copy { flex: 1 1 420px; min-width: 280px; }
/* --- Force-center the bottom CTAs on the Tours page --- */
.tour-cta{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  flex-wrap:wrap !important;
  gap:12px !important;
  margin-top:22px !important;
  text-align:center !important;
}

/* override any global full-width button styles on desktop */
@media (min-width: 769px){
  .tour-cta .btn,
  .tour-cta .btn-secondary{
    width:auto !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    margin:0 !important;
  }
}

/* fallback: if you kept the old inline-centered div, center that too */
.tour-grid > div[style*="text-align:center"]{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  flex-wrap:wrap !important;
  gap:12px !important;
}
.tour-grid > div[style*="text-align:center"] a{
  width:auto !important;
  display:inline-flex !important;
  margin:0 !important;
}
/* --- Fleet Perks Alignment Fix --- */
.fleet-highlight .fleet-perks {
  display: block;          /* prevent grid centering */
  margin: 20px auto;       /* centers the container itself */
  max-width: 600px;
  text-align: left;        /* force left-align text */
  padding: 0;
  list-style: none;
}

.fleet-highlight .fleet-perks li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.fleet-highlight .fleet-perks li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 1.2rem;
  line-height: 1;
}
/* Hide Brevo honeypot across the site */
.input--hidden {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
/* Event Image */
.event-hero img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.event-hero img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

/* Lightbox Overlay */
#lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

/* Lightbox Image */
#lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
}

/* Close Button */
#lightbox span {
  position: absolute;
  top: 20px; right: 30px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}

#lightbox span:hover {
  color: #ddd;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .event-hero img {
    max-width: 100%;
    height: auto;
  }
}
.main-nav .nav-btn {
  display: inline-block;
  margin: 10px 0;
  text-align: center;
}

@media (min-width: 768px) {
  .main-nav .nav-btn {
    margin-left: 15px;
  }
}
/* Default nav CTA styles */
.nav-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.nav-cta a {
  display: block;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
}

/* Book Now = Kelly Green */
.btn-green {
  background: #014421;
  color: #fff !important;
}

/* Gift Cards = Blue */
.btn-blue {
  background: #0077cc;
  color: #fff !important;
}

/* Desktop layout */
@media (min-width: 768px) {
  .nav-cta {
    flex-direction: row;
    margin-left: auto;
    margin-top: 0;
    gap: 12px;
  }

  .nav-cta a {
    margin: 0;
  }
}
/* --- NAV CTA Overrides --- */
.btn-green {
  background: #014421;
  color: #fff !important;
}

.btn-green:hover {
  background: #027a34;
}

.btn-black {
  background: #000;
  color: #fff !important;
}

.btn-black:hover {
  background: #333;
}
/* === NAV CTA BUTTON FIX (Book Now & Gift Cards) === */
.main-nav .btn-green,
.main-nav .btn-blue {
  color: #fff !important;
  font-weight: 700;
  text-align: center;
  display: block;
  margin: 8px 0;
  padding: 12px 18px;
  border-radius: 6px;
}

.main-nav .btn-green {
  background: #014421 !important; /* Kelly green */
}

.main-nav .btn-blue {
  background: #0077cc !important; /* Blue */
}

@media (min-width: 768px) {
  .main-nav .btn-green,
  .main-nav .btn-blue {
    display: inline-block;
    margin: 0 0 0 12px;
  }
}
/* === FORCE BOTH NAV CTA BUTTONS TO GREEN === */
.main-nav .btn-green,
.main-nav .btn-blue {
  background: #014421 !important; /* Kelly green */
  color: #fff !important;
  font-weight: 700;
  text-align: center;
  display: block;
  margin: 8px 0;
  padding: 12px 18px;
  border-radius: 6px;
}

@media (min-width: 768px) {
  .main-nav .btn-green,
  .main-nav .btn-blue {
    display: inline-block;
    margin-left: 12px;
  }
}

/* Footer CTA buttons */
.footer-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0;
}

.footer-cta .btn-green {
  background: #014421;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-cta .btn-green:hover {
  background: #027a34; /* lighter hover green */
}

@media (max-width: 768px) {
  .footer-cta {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .footer-cta .btn-green {
    width: 90%;   /* almost full screen, side-to-side */
    max-width: 400px;
    text-align: center;
    padding: 14px 0;
    border-radius: 6px;
    font-size: 1.05rem;
  }
}
/* === Featured Event Banner (Final Polished) === */
#featured-banner-title {
  text-align: center;
  margin: 40px 0 20px;
  color: var(--green);
  font-size: 1.8rem;
  font-weight: 700;
}

.featured-event-container {
  max-width: 480px;          /* keep card narrower */
  margin: 0 auto 40px;       /* center on page */
  text-align: center;
}

.featured-event-container .preview-banner {
  padding: 20px;
  border: 2px solid var(--green);
  border-radius: 12px;
  background: #f9fff9;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.featured-event-container .preview-banner img {
  max-width: 70%;            /* smaller image */
  max-height: 180px;         /* lower height cap */
  height: auto;
  margin: 0 auto 12px;
  display: block;
  border-radius: 8px;        /* polish */
}

.featured-event-container .preview-banner h3 {
  margin: 8px 0;
  font-size: 1.4rem;
  color: var(--green-2);
}

.featured-event-container .preview-banner p {
  font-size: 1rem;
  margin: 6px 0;
}

.featured-event-container .preview-banner a {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.featured-event-container .preview-banner a:hover {
  background: #027a34;
}

/* === Image Modal for Featured Event === */
.image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.85);
}

.image-modal-content {
  display: block;
  max-width: 90%;
  max-height: 90%;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.image-modal .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}

.image-modal .close:hover {
  color: #ccc;
}

/* === Branded Time Dropdowns for Dashboard === */
.time-select {
  padding: 6px 10px;
  border: 2px solid var(--green);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  background: #fff;
  cursor: pointer;
}

.time-select:focus {
  outline: none;
  border-color: #027a34;
  box-shadow: 0 0 4px rgba(1, 68, 33, 0.3);
}
#waiver-row label input[type="checkbox"] { width:18px; height:18px; margin-top:2px; }
#waiver-row a { text-decoration: underline; }
/* --- Liability checkbox mobile fix --- */
#waiver-row {
  max-width: 100%;
  margin: 14px auto;
  padding: 0 10px;
}

#waiver-row label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;                 /* let text wrap under the checkbox */
  width: 100%;
}

#waiver-row label input[type="checkbox"] {
  flex: 0 0 auto;
  margin-top: 3px;
  margin-left: 0;
}

#waiver-row label span {
  flex: 1 1 0;
  min-width: 0;                    /* allow text to shrink on narrow screens */
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 0.95rem;
  line-height: 1.4;
}
