/* =============================
   ** GLOBAL THEME & LAYOUT **
   ============================= */
:root {
  --nav-height: 7dvh;
  --nav-top: 2dvh;
  --glass-bg: rgba(26, 26, 26, 0.7);
  --navbar-text-color: #ffffff;
  --accent-color: #d4af37;
  --accent-strong: #c39d2b;
  --site-bg: #f7f7f7;
  --section-bg: #ffffff;
  --text-color: #1a1a1a;
  --muted-color: #5b5b5b;
  --footer-bg: #1a1a1a;
  --footer-bottom: #666666;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius-lg: 18px;
  --hero-bg: url('https://green-baboon-322817.hostingersite.com/wp-content/uploads/2025/12/DSC07554-scaled.jpg');
  --about-img: url('https://green-baboon-322817.hostingersite.com/wp-content/uploads/2025/12/DSC07554-scaled.jpg');
  --glass-border: rgba(255, 255, 255, 0.4);
}

/* =============================
   ** GLOBAL RESET & TYPOGRAPHY **
   ============================= */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  background: var(--site-bg);
  color: var(--text-color);
  font-family: 'Assistant', 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
}

a:hover {
  color: inherit;
}

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

body {
  padding-top: 0;
}

/* =============================
   ** SECTIONS & CONTENT WRAPPERS **
   ============================= */
.section {
  width: 100%;
  box-sizing: border-box;
  padding: 120px 6% 90px;
  background: var(--section-bg);
  position: relative;
}

#sec1, #sec2, #sec3 {
  min-height: 100vh;
}

.section + .section {
  margin-top: 14px;
}

.section-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: right;
}

.section-content h2 {
  position: relative;
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 34px);
}

.section-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-strong));
  border-radius: 2px;
}

/* Prevent dual underlines when a standalone .sec-h already renders its own bar */
.header-wrap .sec-h::after {
  display: none;
}

.section-content p {
  margin: 0 0 16px;
  color: var(--muted-color);
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

/* =============================
   ** HERO BLOCK **
   ============================= */
/* =============================================
  ** HERO BLOCK: INTRO CARD + CTA CLUSTER **
  Floating glass card centered within hero gradient bg.
  ============================================= */
.hero-section {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.55), rgba(26, 26, 26, 0.2)), var(--hero-bg);
  background-size: cover;
  background-position: center;
  color: #ffffff;
  isolation: isolate;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 247, 247, 0.1) 0%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  padding: 70px 46px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}

.hero-brand {
  font-weight: 800;
  letter-spacing: 8px;
  font-size: clamp(48px, 7vw, 72px);
  margin: 0 0 12px;
  color: #1a1a1a;
}

.hero h1 {
  margin: 8px 0 18px;
  font-size: clamp(34px, 4.5vw, 50px);
}

.hero p {
  margin: 0 auto 12px;
  max-width: 820px;
  color: var(--muted-color);
  font-size: 15px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}

.hero-cta {
  display: inline-block;
  background: var(--accent-color);
  color: #1a1a1a;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  background: var(--accent-strong);
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.45);
}

.hero-secondary {
  display: inline-block;
  background: #1a1a1a;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-secondary:hover {
  background: #000000;
  transform: translateY(-2px);
}

.eyebrow {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0;
}

/* =============================
   ** BUTTONS **
   ============================= */
.btn {
  display: inline-block;
  background: #1a1a1a;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: #000000;
  transform: translateY(-2px);
}

/* =============================
   ** SECTION HEADERS **
   ============================= */
.header-wrap {
  text-align: center;
  margin: 10px auto 30px;
  padding: 0 15px;
}

.sec-h {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
}

.c-underline {
  display: inline-block;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-strong));
  border-radius: 999px;
  margin: 12px auto;
}

.subtext {
  margin: 0 auto;
  color: var(--muted-color);
  max-width: 720px;
  line-height: 1.6;
}

/* =============================
   ** ABOUT SECTION LAYOUT **
   ============================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.about-text p {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.about-image {
  width: 100%;
  min-height: 340px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.22), rgba(26, 26, 26, 0.6)), var(--about-img);
  background-size: cover;
  background-position: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

/* =============================
   ** PRIMARY HERO CAROUSEL (SEC 2) **
   ============================= */
.carousel {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 10px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #0f0f0f;
  box-shadow: var(--card-shadow);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  display: block;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
}

.carousel-btn {
  pointer-events: auto;
  background: rgba(26, 26, 26, 0.75);
  color: #ffffff;
  border: none;
  padding: 14px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 24px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background: rgba(212, 175, 55, 0.95);
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.carousel-prev {
  position: absolute;
  right: 16px;
}

.carousel-next {
  position: absolute;
  left: 16px;
}

.carousel-caption {
  position: absolute;
  bottom: 24px;
  right: 24px;
  left: 24px;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
  padding: 20px;
  border-radius: 10px;
  text-align: right;
  font-size: 1.1rem;
}

/* =============================
   ** FAQ ACCORDION **
   ============================= */
.faq-wrapper {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.faq-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-card.active {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 700;
}

.faq-icon {
  transition: transform 0.2s ease;
}

.faq-card.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 16px;
  background: #fafafa;
}

.faq-card.active .faq-content {
  max-height: 260px;
  padding: 0 16px 14px;
}

.faq-inner-text {
  color: var(--muted-color);
  line-height: 1.5;
  padding-top: 8px;
}


/* =============================================
   ** FOOTER BLOCK: EXTENDED HEIGHT + CTA LINKS **
   Keeps footer grounded to bottom without extra sections.
   ============================================= */
.footer-wrap {
  background: var(--footer-bg);
  color: #ffffff;
  padding: 60px 6% 30px;
  box-sizing: border-box;
  min-height: 35vh;
  max-height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#sec6 {
  padding: 0;
  background: var(--footer-bg);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-contact {
  text-align: right;
}

.contact-header {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-accent {
  background: var(--footer-bottom);
  color: #ffffff;
  text-align: center;
  padding: 10px 6%;
  font-size: 14px;
  box-sizing: border-box;
}

/* =============================
   ** RESPONSIVE TWEAKS **
   ============================= */
@media (max-width: 992px) {
  .section {
    padding: 110px 5% 80px;
  }

  .carousel-slide img {
    height: 50vh;
  }

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

}

@media (max-width: 768px) {
  body {
    padding-top: calc(var(--nav-height) + var(--nav-top) + 10px);
  }

  .section {
    padding: 90px 5% 60px;
  }

  .hero {
    padding: 38px 26px;
    text-align: center;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .carousel {
    margin: 30px auto 10px;
  }

  .carousel-slide img {
    height: 42vh;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  .footer-wrap {
    max-height: none;
    padding: 50px 6% 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-image {
    min-height: 260px;
  }

}
