body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #FFF5EA;
  color: #333;
}
.main-nav {
  width: 100%;
  background: #FFD699;
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: 0.3s;
}

.main-nav a:hover {
  color: #000;
}

/* HERO — universal layout + text */
.hero {
  position: relative;
  padding: 5rem 2rem;
  text-align: center;
  color: #FFE89C;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Universal dark overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* Ensure hero content sits above overlay */
.hero-content {
  position: relative;
  z-index: 2;
}

/* PAGE‑SPECIFIC HERO BACKGROUNDS */
.index-hero {
  background-image: url('https://images.unsplash.com/photo-1550026593-f369f98df0af?q=80&w=1170&auto=format&fit=crop');
}

.classes-hero {
  background-image: url('https://images.unsplash.com/photo-1677603142181-6e49eb1a3c10?q=80&w=1171&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.blog-hero {
  background-image: url('https://images.unsplash.com/photo-1471478331149-c72f17e33c73?q=80&w=1169&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.about-hero {
  background-image: url('https://images.unsplash.com/photo-1633966849409-15619ac38fff?q=80&w=2006&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.portal-hero {
  background-image: url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.contact-hero {
  background-image: url('https://images.unsplash.com/photo-1525296416200-59aaed194d0c?ixlib=rb-4.1.0&q=85&fm=jpg&crop=entropy&cs=srgb&dl=david-hofmann-klWtuMJE8Ho-unsplash.jpg');
}

/* HERO TYPOGRAPHY */
.hero h1 {
  font-size: 3rem;
  font-family: 'Alex Brush', cursive;
}


.slide-text {
  font-size: 2rem;
  color: #B3C9F5;
  font-weight: bold;
  animation: slideIn 2s ease-out forwards;
}

.lead-toggle {
  background-color: #030998;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  margin: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.lead-toggle:hover {
  background-color: #FF940E;
  transform: scale(1.05);
}
.about-explore-btn {
  display: inline-block;
  background-color:  #b50202; /* choose any color you like */
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  margin: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.about-explore-btn:hover {
  background-color: #FF940E; /* warm orange hover */
  transform: scale(1.05);
}

/* Logo animation */
.logo-bounce-in {
  width: 200px;
  opacity: 0;
  animation: slideDownBounce 1s ease-out forwards, bounce 2s ease-in-out infinite;
  animation-delay: 0s, 1s;
}

@keyframes slideDownBounce {
  0% { transform: translateY(-50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}


/* CLASS CARDS */
.classes-section {
  padding: 3rem 2rem;
  text-align: center;
  background: #FFF5EA;
}

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

.class-card {
  padding: 2rem;
  border-radius: 15px;
  color: #333;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.class-card:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Colorful backgrounds */
.dance { background: #FFE0B3; }
.guitar { background: #B3C9F5; }
.vocal { background: #F4B3B3; }
.healing { background: #FFE89C; }

/* ABOUT PREVIEW */
.about-preview {
  background: linear-gradient(
    135deg,
    #FFF5EA,
    #FFEBD2,
    #FFD699,
    #FFE0B3
  );
  padding: 4rem 2rem;
  text-align: center;
}

.about-inner {
  max-width: 900px;
  margin: auto;
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.about-preview h2 {
  font-family: 'Alex Brush', cursive;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #b50202;
}

.about-preview p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: #333;
}

.about-preview .tagline {
  font-size: 1.3rem;
  color: #004AAA;
  font-weight: bold;
}

/* TESTIMONIALS */
.testimonials {
  background: #FFEBD2;
  padding: 3rem 2rem;
  text-align: center;
}

.carousel {
  max-width: 600px;
  margin: auto;
}

.testimonial {
  display: none;
  font-style: italic;
  font-size: 1.2rem;
}

.testimonial.active {
  display: block;
}

/* FAQ */
.faq {
  padding: 3rem 2rem;
}

.faq-question {
  width: 100%;
  padding: 1rem;
  background: #FFD699;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  cursor: pointer;
  margin-bottom: 0.5rem;
  border-radius: 8px;
}

.faq-answer {
  display: none;
  padding: 0.8rem;
  background: #FFF5EA;
  border-left: 4px solid #FF940E;
  border-radius: 5px;
}

/* -------------------------------------------------- FOOTER — BEAN'S DREAMS FAMILY -------------------------------------------------- */
.site-footer {
  background: linear-gradient(
    135deg,
    #0A3FB3,
    #004AAD,
    #002F7A
  ); /* soft navy gradient */
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 80px;
  padding: 45px 30px 20px;
}

.footer-heading {
  text-align: center;
  margin-bottom: 25px;
}

.footer-heading p {
  color: #FFF5EA;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* -------------------------------------------------- THREE BUSINESS CARDS -------------------------------------------------- */
.footer-businesses {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-business {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 22px;

  /* brighter glass card */
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);

  /* glowing border */
  border: 2px solid rgba(255, 200, 120, 0.55);
  border-radius: 14px;

  text-decoration: none;
  color: #FFF5EA;

  transition: transform 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              background 0.3s ease;
}

/* Hover glow */
.footer-business:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.32);

  border-color: #FFD140; /* bright gold */

  box-shadow:
    0 0 18px rgba(255, 200, 120, 0.55),
    0 0 28px rgba(255, 148, 14, 0.35),
    0 6px 18px rgba(0, 0, 0, 0.25);
}

/* -------------------------------------------------- ICON -------------------------------------------------- */
.footer-icon {
  font-size: 1.9rem;
  line-height: 1;
  flex-shrink: 0;
}

/* -------------------------------------------------- CARD TEXT -------------------------------------------------- */
.footer-business h4 {
  color: #FFD699;
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: bold;
}

.footer-business p {
  color: #FFF5EA;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

/* -------------------------------------------------- CURRENT SITE -------------------------------------------------- */
.footer-business.current-site {
  background: rgba(255, 255, 255, 0.35);
  border-color: #FEB803;

  box-shadow:
    0 0 20px rgba(254, 184, 3, 0.55),
    0 0 32px rgba(255, 148, 14, 0.35);
}

.footer-business.current-site h4 {
  color: #FEB803;
  text-shadow: 0 0 6px rgba(254, 184, 3, 0.35);
}

.footer-business.current-site p {
  color: #FFF5EA;
}

.footer-business.current-site:hover {
  background: rgba(255, 255, 255, 0.42);
  border-color: #FF940E;

  transform: translateY(-7px);

  box-shadow:
    0 0 26px rgba(254, 184, 3, 0.7),
    0 0 40px rgba(255, 148, 14, 0.45);
}

/* -------------------------------------------------- FOOTER BOTTOM -------------------------------------------------- */
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 235, 210, 0.2);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #FFF5EA;
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

/* -------------------------------------------------- FOOTER RESPONSIVE -------------------------------------------------- */
@media (max-width: 800px) {
  .footer-businesses {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}



/* Simple orange line that fades at both ends */
h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 260px;          /* make this larger/smaller as you like */
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    transparent,
    #FF940E,
    transparent
  );
}

.lead-form-section {
  max-width: 700px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: relative;
}

.lead-form-section.hidden {
  display: none;
}

.lead-form-section.visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #FF940E;
  color: #fff;
  border: none;
  font-size: 1.4rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
}
/* Base card styling */
.class-card {
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
section h2,
.section-title {
  text-align: center;
}

.class-card:hover {
  transform: translateY(-5px);
}

.class-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

/* Pastel color variants */
.card-peach {
  background: #FFE8C6;
}

.card-mint {
  background: #DFF7E6;
}

.card-lavender {
  background: #EDE3FF;
}

.card-sunshine {
  background: #FFF3C4;
}

.card-rose {
  background: #FFE1E8;
}

.card-sky {
  background: #DFF1FF;
}

.card-sage {
  background: #E8F5E4;
}

.card-lilac {
  background: #F3E8FF;
}

/* Grid layout */
.class-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2rem;
}
.hidden {
  display: none;
}
/* =========================================
   STEP & SIZZLE - NEW GROUP CLASS
   ========================================= */

.signature-card {
  position: relative;
  overflow: hidden;
  text-align: center;

  /* Special signature border */
  border: 3px solid #004AAD;
  box-shadow:
    0 0 0 3px #FD8100,
    0 10px 25px rgba(0, 74, 170, 0.18);

  transform: translateY(-4px);
}
/* FORM LAYOUT */
.dance-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.dance-form .form-group {
  display: flex;
  flex-direction: column;
}

.dance-form label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.dance-form input,
.dance-form select,
.dance-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfcfcf;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* THANK YOU ANIMATION */
.thankyou-bubble {
  margin-top: 15px;
  padding: 14px 18px;
  background: #d9f7e8; /* soft mint pastel */
  border-radius: 12px;
  font-weight: 600;
  color: #2a7f5f;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.thankyou-bubble.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Prevent footer overlap */
.classes-section {
  margin-bottom: 80px;
}

.about-signup-btn {
  display: inline-block;
  background: linear-gradient(
    135deg,
    #FFD9B3,
    #FFC48A,
    #FFB066
  );
  color: #5A2A00;
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 148, 14, 0.25);
  font-family: 'Segoe UI', sans-serif;
}

.about-signup-btn:hover {
  background: linear-gradient(
    135deg,
    #FFB066,
    #FF940E,
    #FF7A00
  );
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(255, 148, 14, 0.35);
}
