body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff6ef;
  color: #2d2d2d;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

section, .about, .footer-content, .clubs-section, .faq-section {
  margin-left: 0;
  box-sizing: border-box;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 48px 28px 48px;
  background: #fff6ef;
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
}
.logo-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-left: 10vw;
}
.logo {
  height: 40px;
  margin-right: 12px;
}
.brand {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #000;
}
.nav {
  display: flex;
  gap: 48px;
  font-size: 1.25rem;
  margin-right: 2vw;
}
.nav a, .nav .dropdown-toggle {
  text-decoration: none;
  color: #000;
  font-size: 1.3rem;
  padding-bottom: 12px;
  border-bottom: 3px solid transparent;
  transition: border 0.2s;
  position: relative;
  background: none;
  cursor: pointer;
}
.nav a.active, .nav a:hover, .nav .dropdown-toggle:hover {
  border-bottom: 2px solid #000;
}
.nav-dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 36px;
  left: 0;
  background: #fff6ef;
  border: 1px solid #e0d6c8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border-radius: 4px;
  min-width: 180px;
  z-index: 100;
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  padding: 14px 24px;
  color: #5a5242;
  font-size: 1.08rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.dropdown-menu li:hover {
  background: #f3e6d8;
  color: #a12a1a;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  visibility: hidden;
}
.user-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #2b6a4f;
  border-radius: 50%;
  text-align: center;
  font-size: 1.3rem;
  color: #2b6a4f;
}
.user-icon svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  display: block;
}
.login {
  color: #2b6a4f;
  text-decoration: none;
  font-weight: 600;
  margin-right: 5vw;
}

.join-session {
  background: #d3d3d3;
  color: #5a5242;
  border: none;
  border-radius: 20px;
  padding: 8px 24px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}
.join-session:hover {
  background: #bdbdbd;
}

.hero {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  box-sizing: border-box;
}
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6) blur(0.5px);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  margin-top: -100px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  padding: 0 20px 40px 20px;
}
.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}
.hero-content .subtitle {
  font-size: 2.4rem;
  color: #ffffff;
  font-weight: 600;
  margin-top: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-cta {
  background: linear-gradient(135deg, #8b4513, #a88c2c);
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 16px 32px;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta:hover {
  background: linear-gradient(135deg, #a88c2c, #8b4513);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border-color: #f0f0f0;
}

.hero-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Main Content Wrapper */
.main-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #fff6ef;
  padding: 8px 0 32px 0;
  text-align: left;
}
.about-text {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: left;
}
.about-text h2 {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  font-size: 2.8rem;
  color: #8b4513;
  margin-bottom: 24px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.about-text p {
  font-size: 1.4rem;
  color: #2d2d2d;
  line-height: 1.7;
  margin-bottom: 20px;
}
.about-text .highlight {
  color: #8b4513;
  font-weight: 700;
  margin: 24px 0 16px 0;
  text-align: left;
  font-size: 1.5rem;
}
.daily-images {
  display: flex;
  gap: 8px;
  margin-top: 40px;
  margin-bottom: 20px;
  justify-content: center;
  flex-wrap: nowrap;
  position: relative;
  box-sizing: border-box;
  padding: 0;
}
.daily-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 500px;
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 0 0 20px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-sizing: border-box;
  min-height: 420px;
  justify-content: space-between;
}

.daily-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.daily-item.expanded {
  width: 100%;
  max-width: 1000px;
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  z-index: 10;
  position: relative;
}

.daily-item h3,
.daily-item p {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin-left: 0;
  margin-right: 0;
}
.daily-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px 16px 0 0;
  display: block;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  margin-left: -2px;
  margin-right: -2px;
  width: calc(100% + 4px);
}
.daily-item h3 {
  margin: 0;
  padding: 24px 24px 16px 24px;
  font-size: 1.6rem;
  color: #8b4513;
  font-weight: 700;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}

.daily-item h3::after {
  content: "";
}
.daily-item p {
  font-size: 1.2rem;
  color: #2d2d2d;
  margin: 0;
  padding: 0 24px 16px 24px;
  line-height: 1.6;
  max-height: 120px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}

.daily-item.expanded p {
  max-height: 500px;
  font-size: 1.3rem;
  line-height: 1.7;
  text-align: left;
  padding: 0 24px 32px 24px;
}

.daily-item::after {
  content: "more";
  display: block;
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  margin: 26px auto 0 auto;
  margin-top: auto;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #8b4513, #a88c2c);
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
  cursor: pointer;
  border: 1px solid #8b4513;
  width: fit-content;
}

.daily-item.expanded::after {
  display: none;
}

.daily-item:hover::after {
  background: linear-gradient(135deg, #a88c2c, #8b4513);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.4);
  transform: translateY(-2px);
}


.clubs-section {
  padding: 32px 0;
  box-sizing: border-box;
}
.clubs-section h2 {
  font-size: 2rem;
  color: #a88c2c;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 32px;
  margin-top: 0;
  text-align: left;
  margin-left: 50px;
}
.clubs-row {
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.club-card {
  margin-left: 38px;
  background: #fff6ef;
  border: 1.5px solid #e0d6c8;
  border-radius: 2px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.club-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-left: -2px;
  margin-right: -2px;
  width: calc(100% + 4px);
}
.club-info {
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.club-title {
  font-size: 1.6rem;
  color: #2d2d2d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}
.club-join {
  width: 100%;
  background: #0b5c4b;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 16px 0;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.club-join:hover {
  background: #187a62;
}

/* Special Events Section */
.special-events-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #fff6ef;
  padding: 8px 0 32px 0;
  text-align: left;
  box-sizing: border-box;
  flex-direction: column;
  width: 100%;
}

.special-events-section h2 {
  font-size: 2.8rem;
  color: #8b4513;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.events-subtitle {
  font-size: 1.4rem;
  color: #2d2d2d;
  font-style: italic;
  margin-bottom: 32px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

/* Events Carousel */
.events-carousel-container {
  position: relative;
  width: 1140px; /* 3 * 380px */
  max-width: 100%;
  overflow: hidden;
  margin: 40px auto 20px auto;
  box-sizing: border-box;
}

.events-carousel {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.events-carousel .event-card {
  flex: 0 0 380px;
  width: 380px;
  margin-right: 8px;
  box-sizing: border-box;
}

.events-carousel .event-card:last-child {
  margin-right: 0;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0d6c8;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #8b4513;
}

.dot:hover {
  background: #a88c2c;
}

.events-row {
  display: flex;
  gap: 8px;
  margin-top: 40px;
  margin-bottom: 20px;
  justify-content: center;
  flex-wrap: nowrap;
  position: relative;
  width: 100%;
  max-width: none;
  margin-left: 0;
}

.event-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 380px;
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 0 0 20px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.event-info {
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}

.event-info h3 {
  font-size: 1.6rem;
  color: #8b4513;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  width: 100%;
  box-sizing: border-box;
}

.event-info p {
  font-size: 1.2rem;
  color: #2d2d2d;
  margin: 0;
  padding: 0 24px 16px 24px;
  line-height: 1.6;
  max-height: 120px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}

.event-info.expanded p {
  max-height: 500px;
  font-size: 1.3rem;
  line-height: 1.7;
  text-align: left;
  padding: 0 24px 32px 24px;
}

.event-join {
  width: 100%;
  background: #0b5c4b;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 16px 0;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.event-join:hover {
  background: #0a4a3d;
}

.event-card::after {
  content: "more";
  display: block;
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  margin: 16px auto 0 auto;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #8b4513, #a88c2c);
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
  cursor: pointer;
  border: 1px solid #8b4513;
  width: fit-content;
}

.event-card.expanded::after {
  display: none;
}

.event-card:hover::after {
  background: linear-gradient(135deg, #a88c2c, #8b4513);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.4);
  transform: translateY(-2px);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.event-card.expanded {
  width: 100%;
  max-width: 1000px;
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  z-index: 10;
  position: relative;
}

/* Pricing Section */
.pricing-section {
  padding: 32px 0;
  box-sizing: border-box;
}

.pricing-section h2 {
  font-size: 2.8rem;
  color: #8b4513;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 32px;
  margin-top: 0;
  text-align: left;
  margin-left: 50px;
}

.pricing-container {
  display: flex;
  gap: 32px;
  justify-content: flex-start;
  margin-left: 50px;
}

.pricing-card {
  background: #fff6ef;
  border: 1.5px solid #e0d6c8;
  border-radius: 8px;
  width: 280px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: transform 0.2s;
}

.pricing-card.featured {
  border-color: #a88c2c;
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-header h3 {
  font-size: 1.8rem;
  color: #2d2d2d;
  font-weight: 600;
  margin-bottom: 20px;
}

.price {
  font-size: 3rem;
  color: #8b4513;
  font-weight: 700;
  margin-bottom: 12px;
}

.price-period {
  font-size: 1.3rem;
  color: #2d2d2d;
  margin-bottom: 28px;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  color: #2d2d2d;
  font-size: 1.3rem;
  position: relative;
  padding-left: 28px;
}

.pricing-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0b5c4b;
  font-weight: bold;
}

.pricing-cta {
  width: 100%;
  background: #0b5c4b;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 18px 0;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.pricing-cta:hover {
  background: #0a4a3d;
}


@media (max-width: 1000px) {
  .clubs-row {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .club-card {
    width: 100%;
    max-width: 400px;
  }
  .events-carousel-container {
    margin-top: 32px;
  }
  
  .events-carousel {
    width: 400%; /* 4 cards in a row on mobile */
  }
  
  .events-carousel .event-card {
    flex: 0 0 calc(25% - 6px); /* 4 cards per view on mobile */
  }
  
  .events-row {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 32px;
  }
  .event-card {
    width: 100%;
    max-width: 450px;
    margin-left: 0;
    padding: 0 0 20px 0;
  }
  .event-card.expanded {
    width: 100%;
    max-width: 100%;
  }
  .pricing-container {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .pricing-card {
    width: 100%;
    max-width: 400px;
  }

}

@media (max-width: 900px) {
  .about {
    flex-direction: column-reverse;
    gap: 24px;
    padding: 24px 12px;
  }
  .about-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
  }
  .about-img img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 10%;
    max-width: 180px;
  }
  .daily-images {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .daily-item {
    width: 100%;
    max-width: 380px;
    align-items: flex-start;
    text-align: left;
  }
  .daily-item img {
    height: 220px;
  }
  .club-card img {
    height: 220px;
  }
  .header {
    flex-direction: column;
    gap: 18px;
    padding: 24px 4vw 16px 4vw;
  }
  .nav {
    gap: 18px;
    font-size: 1.05rem;
  }
  .about-text {
    text-align: left;
  }
  .about-text h2,
  .about-text p {
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.7;
  }
  .about-text h2 {
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
  .hero {
    height: 320px;
  }
  .hero-content {
    margin-top: -60px;
  }
  .hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .hero-content .subtitle {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .hero-cta {
    font-size: 1.3rem;
    padding: 16px 32px;
    margin-top: 20px;
    border-radius: 60px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  }
}

/* Waitlist Section */
.waitlist-section {
  padding: 48px 0;
  box-sizing: border-box;
  background: linear-gradient(135deg, #fff6ef 0%, #f8f0e6 100%);
  border-radius: 20px;
  margin: 40px 50px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid #e0d6c8;
}

.waitlist-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.waitlist-section h2 {
  font-size: 2.8rem;
  color: #8b4513;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
  margin-top: 0;
}

.waitlist-subtitle {
  font-size: 1.4rem;
  color: #2d2d2d;
  text-align: center;
  margin-bottom: 40px;
  font-style: italic;
  line-height: 1.5;
}

.waitlist-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.waitlist-text {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.waitlist-text h3 {
  font-size: 2rem;
  color: #a88c2c;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0;
}

.waitlist-text p {
  font-size: 1.2rem;
  color: #2d2d2d;
  line-height: 1.6;
  margin-bottom: 24px;
}

.waitlist-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.waitlist-text li {
  font-size: 1.1rem;
  color: #2d2d2d;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.waitlist-text li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0b5c4b;
  font-weight: bold;
  font-size: 1.2rem;
}

.waitlist-form {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.waitlist-form .launchlist-widget {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.faq-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #fff6ef;
  padding: 8px 0 32px 0;
  text-align: left;
  box-sizing: border-box;
  flex-direction: column;
  width: 100%;
  margin-top: 64px;
}
.faq-section h2 {
  font-size: 2.8rem;
  color: #8b4513;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.faq-list {
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.faq-item {
  scroll-margin-top: 10px;
  border-bottom: 2px solid #187a62;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}
.faq-answer {
  display: none;
  font-size: 1.4rem;
  color: #2d2d2d;
  margin: 16px 0 24px 0;
  line-height: 1.7;
  padding-right: 0;
  width: 100%;
}
.faq-item.open .faq-answer {
  display: block;
}
.faq-item.open .faq-question {
  font-weight: bold;
  font-size: 1.3rem;
  color: #7a5a1a;
  background: #fff6ef;
  z-index: 2;
}
.faq-item.open .faq-answer {
  margin-top: 1.2em;
}
.faq-item .faq-arrow svg {
  transition: transform 0.2s;
}
.faq-item.open .faq-arrow svg {
  transform: rotate(180deg);
}
  .faq-question {
    user-select: none;
    font-size: 1.5rem;
    color: #2d2d2d;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    padding: 28px 0 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff6ef;
    position: relative;
    z-index: 1;
    margin-bottom: 0.1em;
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
  }
.faq-arrow {
  font-size: 1.2rem;
  color: #5a5242;
  margin-left: 12px;
}
@media (max-width: 700px) {
  .faq-section {
    padding: 0 4vw;
  }
  .faq-section h2 {
    font-size: 2rem;
  }
  .faq-question {
    font-size: 1rem;
  }
}

.footer {
  border-top: 2px solid #e0d6c8;
  background: #fff6ef;
  padding: 18px 0 0 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #5a5242;
  margin-top: 0;
}
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10vw 0 10vw;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  margin-bottom: 8px;
}
.footer-logo-bar {
  width: 60px;
  height: 8px;
  background: #a12a1a;
  margin-bottom: 4px;
}
.header-logo-bar {
  width: 60px;
  height: 8px;
  background: #a12a1a;
  margin-bottom: 4px;
  margin-left: 2px;
}
.footer-logo span {
  font-size: 1.5rem;
  color: #181942;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-phone, .footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #181942;
  font-size: 1rem;
}
.footer-phone svg, .footer-email svg {
  display: inline-block;
  vertical-align: middle;
}
.footer-copy {
  text-align: center;
  color: #888;
  font-size: 0.95rem;
  margin-top: 8px;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    padding: 0 4vw;
    gap: 12px;
  }
  .footer-logo {
    align-items: center;
  }
}

#daily-sessions {
  scroll-margin-top: 110px;
}
#community-clubs {
  scroll-margin-top: 110px;
}
.about-limited, .about-bilingual {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.daily-sessions-text {
  width: 100%;
  max-width: none;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.daily-images {
  width: 100%;
  max-width: none;
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-left: 0;
}
.daily-sessions-text .highlight {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.daily-sessions-text h2 {
  max-width: 700px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.daily-item img {
  width: 340px;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.session-time {
  text-align: center !important;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
} 

/* --- Responsive Styles --- */

/* Hamburger menu button (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #5a5242;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .header {
    flex-direction: column;
    padding: 16px 12px 12px 12px;
  }
  .header-actions {
    margin-top: 8px;
  }

  .nav {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100vw;
    background: #fff6ef;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 0 16px 0;
    display: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    z-index: 1000;
  }
  .nav.open {
    display: flex;
  }
  .nav a, .nav .dropdown-toggle {
    padding: 16px 24px;
    width: 100%;
    border-bottom: 1px solid #e0d6c8;
    font-size: 1.1rem;
  }
  .hamburger {
    display: flex;
    position: absolute;
    right: 16px;
    top: 16px;
  }
  .logo-nav {
    margin-left: 0;
  }
  .hero {
    height: 480px;
    width: 100%;
  }
  .hero-content {
    margin-top: -60px;
    font-size: 1rem;
    padding: 0 16px 40px 16px;
  }
  .main-content-wrapper {
    padding: 0 27px;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .about, .clubs-section, .special-events-section, .pricing-section, .faq-section, .waitlist-section {
    margin-left: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100%;
  }
  
  .special-events-section {
    flex-direction: column;
    align-items: center;
    padding: 24px 35px;
  }
  .about {
    flex-direction: column;
    gap: 24px;
    padding: 24px 35px;
  }
  .special-events-section p,
  .faq-section p,
  .daily-sessions-text p {
    text-align: left;
  }
  .about-text h2 {
    text-align: left;
    font-size: 2.6rem;
    margin-bottom: 24px;
    line-height: 1.2;
  }

  .daily-images {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 32px;
  }
  .daily-item {
    width: 100%;
    max-width: 450px;
    align-items: flex-start;
    text-align: left;
    padding: 0 0 24px 0;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    min-height: 380px;
    justify-content: space-between;
  }
  .daily-item.expanded {
    width: 100%;
    max-width: 100%;
  }
  .daily-item img {
    height: 180px;
    object-position: center;
    border-radius: 20px 20px 0 0;
    margin-left: -1px;
    margin-right: -1px;
    width: calc(100% + 2px);
  }
  .clubs-row {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .club-card {
    width: 100%;
    max-width: 340px;
    margin-left: 0;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }
  .club-card img {
    height: 180px;
    object-position: center;
    border-radius: 16px 16px 0 0;
    margin-left: -1.5px;
    margin-right: -1.5px;
    width: calc(100% + 3px);
  }
  .waitlist-section {
    margin: 24px 20px;
    padding: 40px 24px;
    border-radius: 24px;
    background: linear-gradient(145deg, #fff6ef 0%, #f8f0e6 50%, #fff6ef 100%);
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.15);
    border: 2px solid #e0d6c8;
    position: relative;
    overflow: hidden;
  }

  .waitlist-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b4513, #a88c2c, #0b5c4b);
    border-radius: 24px 24px 0 0;
  }

  .waitlist-container {
    padding: 0;
    position: relative;
    z-index: 1;
  }

  .waitlist-section h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #8b4513, #a88c2c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(139, 69, 19, 0.1);
  }

  .waitlist-subtitle {
    font-size: 1.3rem;
    margin-bottom: 36px;
    color: #5a5242;
    font-weight: 500;
    line-height: 1.4;
  }

  .waitlist-content {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .waitlist-text {
    text-align: center;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.7);
    padding: 28px 20px;
    border-radius: 16px;
    border: 1px solid rgba(224, 214, 200, 0.5);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  }

  .waitlist-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #a88c2c;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(168, 140, 44, 0.1);
  }

  .waitlist-text p {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: #2d2d2d;
    line-height: 1.6;
    font-weight: 500;
  }

  .waitlist-text ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .waitlist-text li {
    font-size: 1.1rem;
    margin-bottom: 0;
    padding-left: 32px;
    color: #2d2d2d;
    line-height: 1.5;
    font-weight: 500;
    position: relative;
    text-align: left;
  }

  .waitlist-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    color: #0b5c4b;
    font-weight: bold;
    font-size: 1.4rem;
    background: rgba(11, 92, 75, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(11, 92, 75, 0.2);
  }

  .waitlist-form {
    max-width: 100%;
    width: 100%;
  }

  .waitlist-form .launchlist-widget {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border: 2px solid #e0d6c8;
  }

  .faq-section {
    margin-left: 0 !important;
    padding-left: 35px !important;
    padding-right: 35px !important;
    max-width: 100vw;
    border-radius: 20px;
    margin-top: 40px;
  }
  .faq-list {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 8px 4px 8px 4px;
  }
  .hero {
    height: 360px;
  }
  .hero-content {
    margin-top: -30px;
    padding: 0 12px 35px 12px;
  }
  .hero-content h1 {
    font-size: 2.6rem;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .hero-content .subtitle {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .hero-cta {
    font-size: 1.2rem;
    padding: 14px 28px;
    margin-top: 16px;
    border-radius: 60px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  }

  .daily-item {
    padding: 0 0 20px 0;
    min-height: 360px;
    justify-content: space-between;
  }
  .daily-item.expanded {
    width: 100%;
    max-width: 100%;
  }
  .daily-item img {
    height: 160px;
    object-position: center;
    border-radius: 20px 20px 0 0;
    margin-left: -1px;
    margin-right: -1px;
    width: calc(100% + 2px);
  }
  .club-card img {
    height: 120px;
    object-position: center;
    border-radius: 16px 16px 0 0;
    margin-left: -1.5px;
    margin-right: -1.5px;
    width: calc(100% + 3px);
  }
  .main-content-wrapper {
    padding: 0 19px;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .waitlist-section {
    margin: 20px 16px;
    padding: 32px 20px;
    border-radius: 20px;
  }

  .waitlist-section h2 {
    font-size: 2.4rem;
    margin-bottom: 12px;
  }

  .waitlist-subtitle {
    font-size: 1.2rem;
    margin-bottom: 28px;
  }

  .waitlist-text {
    padding: 24px 16px;
    border-radius: 12px;
  }

  .waitlist-text h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .waitlist-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .waitlist-text li {
    font-size: 1rem;
    padding-left: 28px;
  }

  .waitlist-text li:before {
    width: 20px;
    height: 20px;
    font-size: 1.2rem;
  }

  .faq-section {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}

@media (max-width: 1200px) {
  .events-carousel-container {
    width: 100%;
    padding: 0 8px;
  }
  .events-carousel .event-card {
    flex: 0 0 340px;
    width: 340px;
  }
}
@media (max-width: 1050px) {
  .events-carousel-container {
    width: 100%;
    padding: 0 2vw;
  }
  .events-carousel .event-card {
    flex: 0 0 300px;
    width: 300px;
  }
}
@media (max-width: 900px) {
  .events-carousel-container {
    width: 100%;
    padding: 0 2vw;
  }
  .events-carousel .event-card {
    flex: 0 0 100%;
    width: 100%;
    margin-right: 0;
  }
  .events-carousel {
    gap: 0;
  }
}

/* End Responsive Styles */ 