/* Base Styles */
body {
  font-family: 'Baloo 2', cursive;
  margin: 0;
  padding: 0;
  font-weight: 800;
  background: #f5f5f5;
  color: #111;
}

/* Enhanced Heading Sizes for Better Visual Hierarchy */
h1 {
  font-size: 3rem;
  /* Large for top hero or titles */
  line-height: 1.2;
  color: #111;
  /* rich black */
  text-shadow:
    0 0 5px #ffffffaa,
    /* soft white glow */
    0 0 8px rgba(212, 175, 55, 0.2);
  /* subtle gold hint */
}

h2 {
  font-size: 2.4rem;
  /* Clear section titles */
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #111;
  /* rich black */
  text-shadow:
    0 0 5px #ffffffaa,
    /* soft white glow */
    0 0 8px rgba(212, 175, 55, 0.2);
  /* subtle gold hint */
}

h3 {
  font-size: 1.75rem;
  line-height: 1.3;
  margin-bottom: 0.8rem;
  color: #111;
  /* rich black */
  text-shadow:
    0 0 5px #ffffffaa,
    /* soft white glow */
    0 0 8px rgba(212, 175, 55, 0.2);
  /* subtle gold hint */
}

h4 {
  font-size: 1.4rem;
  color: #111;
  /* rich black */
  text-shadow:
    0 0 5px #ffffffaa,
    /* soft white glow */
    0 0 8px rgba(212, 175, 55, 0.2);
  /* subtle gold hint */
}

h5,
h6 {
  font-size: 1.2rem;
  color: #111;
  /* rich black */
  text-shadow:
    0 0 5px #ffffffaa,
    /* soft white glow */
    0 0 8px rgba(212, 175, 55, 0.2);
  /* subtle gold hint */
}


/* Section Headings */
h2 {
  text-align: center;
  font-weight: 700;
  color: #111;
  /* rich black */
  text-shadow:
    0 0 5px #ffffffaa,
    /* soft white glow */
    0 0 8px rgba(212, 175, 55, 0.2);
  /* subtle gold hint */
}

p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 60px;
  width: auto;
}

/* Header */
.site-header {
  background: #fff;
  color: #111;
}

/* External Links */
.extras a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.extras a:hover {
  color: #d4af37;
  /* gold */
}

/* Brand Logo */
.brand-logo {
  text-decoration: none;
  color: inherit;
}

.brand-logo h1 {
  text-decoration: none;
  color: inherit;
}

/* Header Content */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

/* Brand Name */
.brand {
  font-size: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background: #fff;
  color: #111;
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0;
  padding: 0;
  width: 100%;
  background: #fff;
}

nav ul li a {
  background: #fff;
  color: #111;
  /* Black */
  text-decoration: none;
  font-weight: bold;
  position: relative;
  font-size: 1.2rem;
  /* Bigger text */
  padding: 0.5rem 1rem;
}


nav ul li a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: width 0.3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

nav ul li a:hover::after {
  width: 100%;
}
/* Hide burger on desktop */
.burger {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
  /* Header and layout */
  .site-header {
    padding: 0.8rem 1rem;
    background:  #fff;
    position: relative; /* Ensures z-index stacking works */
    z-index: 10000;
  }

  .header-content {
    flex-direction: column;
    padding: 0;
  }

  .nav-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

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

  .brand {
    font-size: 1.5rem;
    margin: 0;
  }

  .logo {
    height: 40px; /* Smaller logo for mobile */
  }

  .burger {
    display: block;
    font-size: 1.8rem;
    color: #111;
    cursor: pointer;
  }

  /* Navigation menu */
  nav ul {
    position: fixed; /* Sit above all content */
    top: 60px; /* Align just below the header */
    left: 0;
    right: 0;
    background:  #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    display: none;
    z-index: 9999;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  }

  nav ul.show {
    display: flex;
  }

  nav ul li a {
    color: #d4af37 !important; /* Gold */
    background: transparent;
    font-size: 1.2rem;
    width: 100%;
    padding: 0.75rem 0;
    text-decoration: none;
    font-weight: bold;
  }

  nav ul li a:hover {
    color: #fff;
  }

  nav ul li a::after {
    background: #d4af37;
  }
}

/* --- Glow Additions for Hero & Nav --- */

/* Tilt */
.tilt {
  transition: transform 0.3s ease;
}

.tilt:hover {
  transform: rotate(-1deg) scale(1.03);
}

/* Glowing Text */
.glow-text {
  text-shadow:
    0 0 5px #fff,
    0 0 10px #d4af37,
    0 0 20px #d4af37,
    0 0 30px #d4af37;
}

/* Hero Tagline Glow + Animation */
.hero-tagline.shimmer {
  animation: shimmer 3s infinite ease-in-out;
}

@keyframes shimmer {
  0% {
    text-shadow: 0 0 10px #d4af37, 0 0 20px #d4af37;
  }

  50% {
    text-shadow: 0 0 20px #ffd700, 0 0 40px #ffd700;
  }

  100% {
    text-shadow: 0 0 10px #d4af37, 0 0 20px #d4af37;
  }
}

/* Hero Text Animation */
.hero-animated {
  animation: fadeInUp 1s ease-out both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn,
.cta {
  background: #d4af37;
  ;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  align-self: start;
}

.btn:hover {
  background: #b9931e;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.fas {
  color: #d4af37 !important;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  background: url('../images/coachchicksenshot.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-text {
  background: rgba(255, 255, 255, 0.5);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  backdrop-filter: blur(6px);
  color: #111;
  max-width: 700px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow:
    0 0 10px rgba(212, 175, 55, 0.3),
    0 0 20px rgba(212, 175, 55, 0.2);
}

/* Add this for gold glow & hover tilt */
.hero-text.tilt:hover {
  transform: rotate(-1deg) scale(1.03);
  box-shadow:
    0 0 15px rgba(212, 175, 55, 0.5),
    0 0 30px rgba(212, 175, 55, 0.4),
    0 0 40px rgba(212, 175, 55, 0.3);
}

.hero-text.tilt {
  transform: rotate(-0.5deg);
}

.hero-text h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color: #111;
  text-shadow: 0 0 4px #fff;
}

.hero-text p {
  font-size: 1.3rem;
  color: #111;
  text-shadow: none;
}

/* Learning Through Play */
.learning-play {
  display: flex;
  flex-wrap: wrap;
  padding: 4rem 2rem;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  /* Center it */
  align-items: center;
}

.learning-card {
  background: #f5f5f5;
  color: #111;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.learning-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.text-side {
  flex: 1;
}

.image-side {
  flex: 1;
}

.image-side img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.image-side img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Programs Section */
.programs {
  background: #f5f5f5;
  padding: 2rem;
  margin-bottom: 5rem;
}

.program-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
  /* tighter spacing between cards */
}

/* Program Wrapper */
.program-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #f5f5f5;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 450px;
  /* increased from 350px */
  flex-grow: 1;
  margin: 0;
  /* allow proper spacing via flex gap */
}

/* Program Image */
.program-image {
  width: 100%;
  height: 260px;
  /* taller image */
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  display: block;
}

/* Program Card */
.program-card {
  padding: 1.5rem;
  font-size: 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.program-image-wrapper img.program-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  display: block;
}


.program-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 15px rgba(212, 175, 55, 0.5),
    0 0 30px rgba(212, 175, 55, 0.4),
    0 0 40px rgba(212, 175, 55, 0.3);
}

.text-side,
.image-side {
  display: flex;
  align-items: stretch;
}

/* Latest News */
.latest-news {
  background: #f5f5f5;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

.news-banner img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin: 1rem 0;
  transition: transform 0.3s ease;
}

.news-banner img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(212, 175, 55, 0.15);
}

/* Extras Section */
.extras {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  background: #f5f5f5;
}

.extra-card {
  background: #f5f5f5;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.extra-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.tilt.glow:hover {
  box-shadow:
    0 0 15px rgba(212, 175, 55, 0.6),
    0 0 30px rgba(212, 175, 55, 0.5),
    0 0 45px rgba(212, 175, 55, 0.4);
  transform: translateY(-5px) scale(1.03);
}

.learning-card:hover,
.program-card:hover,
.extra-card:hover {
  box-shadow:
    0 0 15px rgba(212, 175, 55, 0.5),
    0 0 30px rgba(212, 175, 55, 0.4),
    0 0 40px rgba(212, 175, 55, 0.3);
  transform: scale(1.03);
}

/* Base flex container for the section */
#about.learning-play {
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: space-between;
  /* space evenly */
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  padding: 4rem 2rem;
}

/* Left and right image containers */
#about .image-side {
  flex: 1 1 20%;
  /* take about 20% width */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Text box centered and wider */
#about .text-side {
  flex: 1 1 55%;
  /* bigger width for text */
  display: flex;
  align-items: center;
  /* vertically center text */
}

/* Style images to keep portrait aspect ratio and be tall */
#about .image-side img {
  max-height: 400px;
  /* or adjust to your preferred max height */
  width: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
  object-fit: cover;
}

#about .left-image img {
  max-height: 500px;
  width: auto;
}

#about .image-side img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

#about .right-image img {
  max-height: 500px;
  /* a bit taller than left */
  width: auto;
  margin-top: 1.5rem;
  /* keep your existing spacing */
}

/* Learning card inside text-side fills container nicely */
#about .learning-card {
  width: 100%;
}

/* About.html */
.about-profile {
  background: #f5f5f5;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.profile-wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
  max-width: 1100px;
  align-items: center;
  text-align: center;
}

.profile-image img {
  width: 100%;
  max-width: 350px;
  height: 450px;
  /* NEW: taller height */
  object-fit: cover;
  /* Ensures no stretching */
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.profile-content {
  max-width: 700px;
}

.profile-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #111;
  text-shadow: 0 0 4px #fff;
}

.profile-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: #111;
}

@media (min-width: 768px) {
  .profile-wrapper {
    flex-direction: row;
    text-align: left;
  }

  .profile-image img {
    width: 350px;
  }
}

/* Location Section */
.location-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
}

.location-info-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}


.location-details {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
  flex: 1;
}

.location-details h3 {
  font-size: 1.3rem;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  color: #111;
}

.location-details ul.session-times {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.location-details ul.session-times li {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.location-details p,
.location-details a {
  font-size: 1.1rem;
  color: #111;
  line-height: 1.6;
}

.lead-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #111;
}

.map-container {
  flex: 1;
  height: auto;
  min-height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
  display: flex;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  /* Ensures vertical size */
}



@media (min-width: 768px) {
  .location-info-grid {
    flex-direction: row;
    /* Make it horizontal */
    align-items: stretch;
    /* Make both children stretch to same height */
  }
}

/*Classes */
.card-content {
  padding: 1.5rem;
  text-align: center;
}

.section-heading {
  text-align: center;
}

.card-content h2 {
  margin-bottom: 1rem;
  color: #111;
  font-size: 1.5rem;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-box {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 300px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
  transition: transform 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-5px);
}

.benefit-box h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #111;
}

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

.image-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/*Testimonial  */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.testimonial-box {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
  max-width: 300px;
  text-align: center;
  font-style: italic;
}

.cta-strip {
  background: #d4af37;
  color: #111;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 1.25rem;
}

.cta-strip .cta-button {
  margin-top: 1rem;
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-strip .cta-button:hover {
  background: #333;
}

.join-hero-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.faq-list {
  max-width: 700px;
  margin: 2rem auto 0;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.06);
}

.faq-item h4 {
  margin-bottom: 0.5rem;
  color: #111;
}

.faq-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 1.5rem;
}

.accordion-toggle {
  background: none;
  color: #111;
  font-weight: 700;
  padding: 1.25rem 1rem;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.25rem;
  /* Bigger question text */
  cursor: pointer;
  transition: color 0.3s ease;
}

.accordion-toggle:hover {
  color: #d4af37;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1rem;
  font-size: 1.1rem;
  /* Bigger answer text */
  line-height: 1.6;
  color: #444;
}

.accordion-item.active .accordion-content {
  max-height: 400px;
  padding-top: 0.5rem;
}

@media (max-width: 480px) {
  .accordion-toggle {
    font-size: 1.1rem;
  }

  .accordion-content {
    font-size: 1rem;
  }
}

/* News */
.news-row {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 3rem;
  position: relative;
}

/* Each item row */
.news-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Push right-aligned items to the right */
.news-item.right {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* Image styling */
.news-item img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Box (card) styling */
.news-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  max-width: 450px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  position: relative;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
  /* gold glow effect */
}

/* Tilt (if using tilt.js or basic hover tilt) */
.tilt:hover {
  transform: perspective(1000px) rotateX(3deg) rotateY(3deg);
}

/* Content styling */
.news-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #111;
  font-weight: bold;
}

.news-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
}

/* Responsive layout */
@media (max-width: 900px) {

  .news-item,
  .news-item.right {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .news-item img {
    width: 100%;
    height: auto;
  }

  .news-card {
    max-width: 100%;
    text-align: center;
  }
}


/*------------------------------------
  Footer
------------------------------------*/
/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  background: #222;
  color: white;
}

/* Entire Footer Background */
.premium-footer {
  background-color: #000;
  /* One seamless black background */
  color: #ccc;
  padding-top: 4rem;
  /* add some padding */
}

/* Equal column layout */
.premium-footer .footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* Equal columns */
  gap: 3rem;
  padding: 1rem;
}

/* Coach Chicksen Footer Title */
.footer-title {
  text-align: center;
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Equal column layout */
.premium-footer .footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* Equal columns */
  gap: 3rem;
  padding: 1rem;
}

/* Icons */
.footer-info .icon,
.footer-form h4 .icon,
.footer-subscribe h4 .icon {
  color: #d4af37;
  margin-right: 0.5rem;
}

/* Align text under headings */
.footer-form h4,
.footer-info h4,
.footer-subscribe h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Center content inside each section */
.footer-form,
.footer-info,
.footer-subscribe {
  text-align: center;
}

/* Responsive fix for even spacing */
@media (max-width: 768px) {
  .premium-footer .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .footer-form,
  .footer-info,
  .footer-subscribe {
    text-align: center;
  }
}


/* Responsive Grid */
@media (max-width: 768px) {
  .premium-footer .footer-container {
    grid-template-columns: 1fr;
  }

  .premium-footer .contact-form input,
  .premium-footer .contact-form textarea,
  .premium-footer .contact-form select {
    width: 100%;
  }
}

/* Headings White */
.premium-footer h3,
.premium-footer h4 {
  color: #fff;
  margin-bottom: 1rem;
}

/* Phone & Email gold */
.footer-info a[href^="tel"],
.footer-info a[href^="mailto"],
.footer-info i.fa-phone-alt,
.footer-info i.fa-envelope {
  color: #d4af37;
  font-weight: bold;
}

/* Contact Form Styling */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
}

.contact-form button.cta-button {
  background-color: #d4af37;
  color: #111;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button.cta-button:hover {
  background-color: #b48a2c;
}

/* Social Icons - No gap from above */
#footer-bottom {
  padding: 0.5rem 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background-color: #000;
  color: #888;
  text-align: center;
}

/* Push icons flush to bottom visually */
.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-info {
  padding-top: 2.5rem;
}

/* Social Icons Styling */
.social-icons {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.social-icons li {
  position: relative;
  display: inline-block;
}

.social-icons a {
  position: relative;
  color: #d4af37;
  font-size: 1.4rem;
  transition: opacity 0.3s ease;
}

.social-icons a:hover {
  opacity: 0.75;
}

/* Footer Info Link Styling */
#footer-info a {
  color: #d4af37;
  text-decoration: none;
}

/* Make location icon gold */
.gold-icon i.fa-map-marker-alt {
  color: #d4af37;
}

/* Improve spacing in contact info */
.footer-info .icon {
  margin-right: 0.5rem;
}

/* Form Field Hover Effects */
.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
  background-color: #f7f7f7;
  outline: 2px solid #d4af37;
  transition: all 0.2s ease;
}

/* Optional: Focus effect for accessibility */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid #d4af37;
  background-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .premium-footer {
    padding: 2rem 1rem;
  }

  .premium-footer .footer-container {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 2rem;
  }

  .premium-footer .contact-form input,
  .premium-footer .contact-form textarea,
  .premium-footer .contact-form select {
    width: 100%;
  }

  #footer-bottom {
    padding: 1.5rem 1rem 2rem;
  }

  @media (max-width: 768px) {
    .premium-footer .footer-container {
      grid-template-columns: 1fr;
    }

    .footer-subscribe {
      order: 3;
      margin-top: 2rem;
    }
  }
}

.footer-subscribe {
  background-color: #000;
  /* Match the full black background */
  padding: 1rem;
  border-radius: 8px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.subscribe-subtitle {
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  color: #ccc;
  font-size: 0.95rem;
}


.footer-subscribe .subscribe-form {
  max-width: 500px;
  margin: 1rem auto 0;
}

.subscribe-box input[type="email"] {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 6px;
  background: #2c2c2c;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}


.subscribe-box button.cta-button {
  background-color: #d4af37;
  color: #111;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.subscribe-box button.cta-button:hover {
  background-color: #b48a2c;
}


.subscribe-box button.cta-button:hover {
  background-color: #b9972f;
}

.success-message {
  margin-top: 1rem;
  color: #d4af37;
  font-weight: bold;
}

.subscribe-form input[type="email"] {
  display: block !important;
}

.subscribe-box input::placeholder {
  color: #fff;
  opacity: 0.7;
  /* optional: slightly dim for subtlety */
}

.premium-footer button.cta-button,
.subscribe-box button.cta-button {
  font-family: inherit;
  /* same font as footer */
  font-weight: 600;
  /* match footer font weight */
  font-size: 1rem;
  /* consistent sizing */
  letter-spacing: 0.5px;
  /* subtle letter spacing */
}

/* ----------------------------
   RESPONSIVE STYLES
----------------------------- */
@media (max-width: 1024px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: auto;
  }
}

@media (max-width: 768px) {

  /* Hero */
  .hero {
    height: auto;
    padding: 4rem 2rem;
    background-position: center center;
  }

  .hero-text {
    padding: 1.5rem;
    font-size: 90%;
  }

  /* Header */
  .brand {
    font-size: 1.5rem;
    text-align: center;
  }

  .logo {
    height: 50px;
  }

  /* Learning Through Play */
  .learning-play {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .text-side,
  .image-side {
    width: 100%;
    flex: none;
  }

  .learning-card {
    padding: 1.5rem;
  }

  /* Extras / Program Cards */
  .program-grid,
  .extras {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }

  /* News Banner */
  .news-banner img {
    max-height: 200px;
  }

  /* Buttons */
  .btn,
  .cta {
    width: auto;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
}

@media (max-width: 480px) {
  nav ul {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
  }

  nav ul li a {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .learning-card {
    font-size: 0.95rem;
  }

  .footer {
    font-size: 0.9rem;
  }
}