/* =====================================================
   GLOBAL RESET
   ===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* =====================================================
   BODY BACKGROUND
   ===================================================== */
body {
  min-height: 100vh;

  /* Light overlay for readability */
  background:
    linear-gradient(
      rgba(255, 255, 255, 0.35),
      rgba(255, 255, 255, 0.35)
    ),
    url("../images/bg.jpeg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Disable fixed background on mobile (performance) */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

/* =====================================================
   NAVBAR (DESKTOP DEFAULT)
   ===================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;                 /* Always above content */

  height: 72px;
  padding: 0 48px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #1a1a1a;
  overflow: visible;             /* 🔥 Required for dropdown menu */
}

/* =====================================================
   LOGO
   ===================================================== */
.logo-wrap img {
  height: 66px;
  max-width: 100%;
}

/* =====================================================
   NAV LINKS (DESKTOP)
   ===================================================== */
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  text-decoration: none;
  color: #e0e0e0;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #5b7b55;
}

/* =====================================================
   CTA BUTTON
   ===================================================== */
.btn {
  background: #5b7b55;
  color: #ffffff;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  cursor: pointer;
  white-space: nowrap;
}

/* =====================================================
   HAMBURGER ICON (HIDDEN ON DESKTOP)
   ===================================================== */
.hamburger {
  display: none;                 /* Hidden on desktop */
  font-size: 26px;
  cursor: pointer;
  color: #ffffff;
  user-select: none;
}

/* =====================================================
   MOBILE & TABLET NAVBAR
   ===================================================== */
@media (max-width: 900px) {

  /* Reduce header padding on smaller screens */
  .header {
    padding: 0 20px;
  }

  /* Show hamburger icon */
  .hamburger {
    display: block;
  }

  /* Mobile dropdown navigation */
  .nav {
    position: absolute;
    top: 72px;                   /* Below navbar */
    left: 0;
    width: 100%;

    background: #1a1a1a;
    flex-direction: column;
    align-items: center;
    gap: 20px;

    padding: 20px 0;
    display: none;               /* Hidden by default */
    z-index: 999;
  }

  /* Show menu when JS adds `.active` */
  .nav.active {
    display: flex;
  }

  /* Larger touch targets */
  .nav a {
    font-size: 16px;
  }
}

/* =====================================================
   SMALL MOBILE SCREENS
   ===================================================== */
@media (max-width: 480px) {

  .header {
    padding: 0 16px;
  }

  .logo-wrap img {
    height: 56px;
  }

  .btn {
    padding: 8px 18px;
    font-size: 14px;
  }
}


/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  height: 50vh;
  background: url("../images/episodes/image 1.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 10%;
  
}

/* Hero title */
.hero h1 {
  color: #ffffff;
  font-size: 48px;
  line-height: 1.2;
}

/* =====================================================
   HERO – MOBILE ADJUSTMENTS
   ===================================================== */
@media (max-width: 768px) {
  .hero {
    height: 50vh;
    padding-left: 20px;
    justify-content: center;
    text-align: center;
  }

  .hero h1 {
    font-size: 34px;
  }
}

/* =====================================================
   INTRO SECTION
   ===================================================== */
.intro {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.intro h2 {
  margin: 20px 0;
}

.intro ul {
  margin-left: 20px;
}

.intro li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* =====================================================
   FORM SECTION
   ===================================================== */
.form-section {
  background: #f9f9f9;
  padding: 80px 20px;
}

/* Two-column layout */
.form-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Form image */
.form-image img {
  width: 100%;
  border-radius: 10px;
}

/* Form container */
form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
}

form h2 {
  margin-bottom: 20px;
}

/* Input rows */
.row {
  display: flex;
  gap: 15px;
}

/* Inputs */
input,
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 30px;
  border: 1px solid #ccc;
  font-size: 14px;
}

textarea {
  border-radius: 15px;
  height: 120px;
  resize: none;
}

/* Checkbox text */
/* =====================================================
   CHECKBOX ALIGNMENT FIX
   ===================================================== */
/* =====================================================
   CHECKBOX ALIGNMENT — FINAL FIX
   ===================================================== */
.checkbox {
  display: grid;
  grid-template-columns: auto 1fr; /* box + text */
  column-gap: 10px;

  align-items: start;              /* align to first line */
  font-size: 14px;
  line-height: 1.6;
  color: #333;

  margin-bottom: 20px;
  cursor: pointer;
}

/* Checkbox input */
.checkbox input[type="checkbox"] {
  margin-top: 3px;                 /* fine alignment */
}

/* Text block */
.checkbox span {
  display: block;
  max-width: 100%;                 /* prevents narrow column issue */
}


/* Submit button */
.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(to right, #5b7b55);
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
}

/* =====================================================
   FORM – MOBILE RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .form-wrapper {
    grid-template-columns: 1fr;
  }

  .row {
    flex-direction: column;
  }
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: #0b0b0b;
  color: #ccc;
  padding: 80px 0 0;
}

/* Footer grid */
.footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 80px;
}

/* Brand section */
.footer-brand img {
  width: 180px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #aaa;
}

/* Footer headings */
.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
}

/* Footer links */
.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #5b7b55;
}

/* Contact text */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 12px;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #5b7b55;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-decoration: none;
}

/* Footer button */
.footer-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #5b7b55;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 60px;
  padding: 20px 40px;
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* =====================================================
   FOOTER – MOBILE
   ===================================================== */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-bottom {
    padding: 20px;
  }
}
