/* =========================================
   Base + Global
   ========================================= */

/* Color palette
   Deep green (primary):   #194a30
   Very dark green:        #021c0d
   Cream background:       #fffdf6
   Soft grey-green:        #dee0d8
*/

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

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: #021c0d;
  background-color: #fffdf6;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Universal responsive maps (works for both .map-container and .map-placeholder) */
.map-container iframe,
.map-placeholder iframe {
  width: 100% !important;
  max-width: 100%;
  height: 350px;
  border: 0;
  border-radius: 10px;
  display: block;
}


/* =========================================
   Header + Navigation
   ========================================= */

.site-header {
  background: #021c0d;
  color: #fffdf6;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.nav a {
  color: #dee0d8;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav a:hover {
  color: #fffdf6;
}

/* =========================================
   Buttons
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  background: #194a30;
  color: #fffdf6;
  cursor: pointer;
}

.btn:hover {
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  border: 1px solid #dee0d8;
  color: #dee0d8;
}

.btn-outline:hover {
  border-color: #fffdf6;
  color: #fffdf6;
}

.btn-ghost {
  color: #fffdf6;
}
/* =========================================
   Pre-Opening Popup
   ========================================= */
.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none; /* shown via JS */
}

.promo-modal.is-open {
  display: block;
}

.promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 28, 13, 0.75);
}

/* Popup buttons – both green */
.promo-buttons .btn,
.promo-buttons .btn-outline {
  background-color: #194a30;   /* primary green */
  color: #fffdf6;              /* cream text */
  border: 1px solid #194a30;
}

.promo-buttons .btn:hover,
.promo-buttons .btn-outline:hover {
  background-color: #0e361f;   /* darker green on hover */
  border-color: #0e361f;
}


.promo-card {
  position: relative;
  max-width: 560px;
  margin: 10vh auto;
  background: #fffdf6;
  border: 1px solid #dee0d8;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(2, 28, 13, 0.35);
}

.promo-card h2 {
  margin-bottom: 0.5rem;
  color: #021c0d;
}

.promo-card p {
  margin-top: 0.75rem;
  color: #021c0d;
}

.promo-call a {
  color: #194a30;
  font-weight: 700;
  text-decoration: none;
}

.promo-call a:hover {
  text-decoration: underline;
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.promo-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #3b4a41;
  opacity: 0.9;
}

.promo-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: rgba(2, 28, 13, 0.08);
  color: #021c0d;
  font-size: 1.4rem;
  cursor: pointer;
}

.promo-close:hover {
  background: rgba(2, 28, 13, 0.14);
}

@media (max-width: 640px) {
  .promo-card {
    margin: 12vh 1rem;
  }
}


/* =========================================
   Hero (Home)
   ========================================= */

.hero {
  padding: 3rem 0 3.5rem;
  background:
    radial-gradient(circle at top left, #194a3025, transparent 60%),
    #021c0d;
  color: #fffdf6;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); 
  gap: 2rem;
  align-items: center;
}

.hero-heading {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.hero-logo-inline {
  height: 70px;
  width: auto;
  flex-shrink: 0;
}

.hero-heading h1 {
  margin: 0;
  line-height: 1.1;
  font-size: clamp(2.1rem, 3vw, 2.7rem);
}

.hero h1 {
  margin-bottom: 0.75rem;
}

.hero p {
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0.5rem;
}

.hero-note {
  font-size: 0.85rem;
  color: #dee0d8;
}


.hero-carousel {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 325px;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  background: #021c0d;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fffdf6;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  display: none; 
}

.hero-prev {
  left: 10px;
}

.hero-next {
  right: 10px;
}

.hero-nav:hover {
  background: rgba(0, 0, 0, 0.65);
}

.hero-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.4);
  cursor: pointer;
}

.hero-dot.active {
  background: #fffdf6;
}

/* =========================================
   Home Page - About Split Section
   ========================================= */

.home-about {
  background: #fffdf6;
  padding: 4rem 0;
}

.home-about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.home-about-logo {
  display: flex;
  justify-content: center;
}

.home-about-logo img {
  width: 260px;   
  height: auto;
}

.home-about-text h2 {
  color: #021c0d;
  margin-bottom: 1rem;
}

.home-about-text p {
  line-height: 1.6;
}


/* =========================================
   Event Page 
   ========================================= */
.event-venue {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;

   }

.event-venue img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  width: 100%;
  height: 100%;
  max-height: 480px; /* increase from 420 */
  object-fit: cover;
  border-radius: 14px;
}

.event-about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: center;
}


/* =========================================
   Generic Sections + Cards
   ========================================= */

.section {
  padding: 3rem 0;
}

.section-alt {
  background-color: #021c0d;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #021c0d;
}

.section p {
  max-width: 42rem;
}

.section-alt h2,
.section-alt h4 {
  color: #fffdf6;
}

/* Paragraphs directly under container in dark sections */
.section-alt > .container > p {
  color: #fffdf6;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.card {
  background: #fffdf6;
  border-radius: 0.9rem;
  padding: 1.25rem;
  box-shadow: 0 1px 4px rgba(2, 28, 13, 0.1);
  border: 1px solid #dee0d8;
}

.card h3 {
  margin-bottom: 0.5rem;
  color: #194a30;
}

.price {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #021c0d;
}

/* =========================================
   Contact (home + dedicated styles)
   ========================================= */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.contact-list li + li {
  margin-top: 0.35rem;
}

.section-alt .contact-list li {
  color: #fffdf6;
}

.contact-hero {
  background: #021c0d;
  color: #fffdf6;
  padding: 3rem 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.contact-card {
  background: #fffdf6;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #dee0d8;
  box-shadow: 0 2px 6px rgba(2, 28, 13, 0.1);
}

.contact-info-list {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
  display: center;
}

.contact-info-list li {
  margin-bottom: 0.75rem;
}

.contact-form-card {
  background: #fffdf6;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #dee0d8;
  box-shadow: 0 2px 6px rgba(2, 28, 13, 0.1);
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 0.6rem;
  border-radius: 6px;
  border: 1px solid #dee0d8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-form-card label {
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: block;
}

.contact-card .hours-title {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #194a30;
  font-weight: 600;
}

.contact-hours-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.contact-hours-list li {
  margin-bottom: 0.4rem;
}

/* =========================================
   Contact Page – Main Card (Get in Touch)
   ========================================= */

.contact-main-card {
  max-width: 640px;
  margin: 0 auto;          /* center horizontally */
  text-align: center;     /* center text */
}

.contact-main-card h2 {
  margin-bottom: 1rem;
}

.contact-main-card .contact-info-list,
.contact-main-card .contact-hours-list {
  margin-left: auto;
  margin-right: auto;
}


/* =========================================
   Simulators Page
   ========================================= */

.sim-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.feature-list {
  list-style: none;
  margin-top: 1rem;
  padding-left: 0;
}

.feature-list li {
  margin-bottom: 0.7rem;
  line-height: 1.6;
}

/* Generic image box (used on multiple pages) */
.image-box {
  border-radius: 0.9rem;
  border: 1px solid #dee0d8;
  overflow: hidden;
  background: #fffdf6;
}

.image-box img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.comfort-section,
.comfort-section h2,
.comfort-section .feature-list li,
.comfort-section p {
  color: #fffdf6;
}

/* Carousel container */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* Image track */
.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

/* Images */
.carousel-img {
  min-width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.carousel-dots button.active {
  background: #fff;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-img {
    height: 220px;
  }
}


/* =========================================
   Pricing Page
   ========================================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-card {
  background: #fffdf6;
  border: 2px solid #194a30;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(2, 28, 13, 0.12);
  transition: all 0.25s ease;
  cursor: pointer;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(2, 28, 13, 0.18);
  border-color: #0e361f;
}

.pricing-card:active {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(2, 28, 13, 0.14);
}

.pricing-sub {
  color: #021c0d;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.pricing-card.featured {
  border: 2px solid #194a30;
  box-shadow: 0 4px 10px rgba(2, 28, 13, 0.12);
}

.pricing-list {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
}

.pricing-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}

.pricing-list li::before {
  content: "✔";
  color: #194a30;
  position: absolute;
  left: 0;
  top: 0;
}

/* =========================================
   About Page
   ========================================= */

.about-hero {
  background: #021c0d;
  color: #fffdf6;
  padding: 3rem 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.about-hero p {
  max-width: 36rem;
  margin: 0.5rem auto 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.about-grid h3 {
  margin-top: 1.5rem;
}

.about-owner-section h2,
.about-owner-section p,
.about-owner-section li {
  color: #fffdf6;
}

.about-owner-section p {
  margin-bottom: 1rem;
}

.about-grid .image-box img {
  height: 525px;
  width: 100%;
  object-fit: fill;
  border-radius: 8px;
}

/* =========================================
   Booking Page
   ========================================= */

.booking-hero {
  background: #021c0d;
  color: #fffdf6;
  text-align: center;
  padding: 3rem 0;
}

.booking-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.booking-message {
  text-align: center;
  max-width: 700px;
}

.booking-message p {
  margin-bottom: 1rem;
}

.booking-buttons {
  margin-top: 1.5rem;
}

/* =========================================
   Footer
   ========================================= */

.site-footer {
  background: #021c0d;
  color: #dee0d8;
  padding: 1.5rem 0;
  font-size: 0.85rem;
}

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

/* =========================================
   Coming Soon Pages (Classes / League)
   ========================================= */

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

.coming-soon h1 {
  margin-bottom: 0.75rem;
}

.coming-soon p {
  margin-left: auto;
  margin-right: auto;
}

.coming-soon .hero-actions {
  justify-content: center;
}


/* =========================================
   Responsive
   ========================================= */

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-inner,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-carousel {
    height: 220px;
  }

  .sim-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Mobile: stack logo above text */
@media (max-width: 768px) {
  .home-about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-about-logo {
    margin-bottom: 1.5rem;
  }

  .home-about-text {
    text-align: left; 
  }
}

@media (max-width: 768px) {
  .map-container iframe,
  .map-placeholder iframe {
    height: 280px;
  }
}
