@import url("https://fonts.googleapis.com/css2?family=Elms+Sans:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --header-height: 96px;
  --header-hero-gap: 0;
	--strip-height: 40px;
}

body {
  font-family: "Elms Sans", sans-serif;
  color: #333;
  background: #f7f7f5;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: var(--strip-height);   /* was: top: 0; */
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #2a9d8f;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.35s ease, box-shadow 0.35s ease, top 0.35s ease;
}

.site-header.is-scrolled {
  background-color: #fcf9f2;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}

.site-header.is-scrolled .nav-links a {
  color: #2a9d8f;
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-links a:focus-visible {
  opacity: 0.75;
}


.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1600px;
  margin: 0 auto;
  min-height: 96px;
  padding: 0.5rem 4rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  z-index: 1002;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.35s ease;
}

.site-header.is-scrolled .nav-toggle__bar {
  background-color: #2a9d8f;
}

.site-header.is-menu-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav__drawer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  width: 100%;
}

.site-nav__backdrop {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 7rem;
  list-style: none;
  flex: 1;
}

.nav-links--left {
  justify-content: flex-end;
  padding-right: 12.5rem;
}

.nav-links--right {
  justify-content: flex-start;
  padding-left: 12.5rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Elms Sans", sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: #fdf6ee;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.35s ease, opacity 0.2s ease;
}

.nav-links__clicked {
  display: none;
  width: 1.15rem;
  height: 1.15rem;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links a.is-current .nav-links__clicked {
  display: block;
}

.nav-links a.is-current {
  opacity: 1;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 0.85;
}

.nav-links a.is-current:hover,
.nav-links a.is-current:focus-visible {
  opacity: 1;
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  height: 82px;
}

.logo__img {
  display: block;
  height: 82px;
  width: auto;
  transition: opacity 0.35s ease;
}

.logo__img--default {
  mix-blend-mode: screen;
}

.logo__img--scrolled {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  mix-blend-mode: normal;
  pointer-events: none;
}

.site-header.is-scrolled .logo__img--default {
  opacity: 0;
}

.site-header.is-scrolled .logo__img--scrolled {
  opacity: 1;
}

.hero {
  position: relative;
  box-sizing: border-box;
  min-height: clamp(620px, 82vh, 880px);
  padding-top: calc(var(--header-height) + var(--header-hero-gap));
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  background-image: url("../img/1bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 35%;
  background-origin: border-box;
  margin-top:40px
}

.hero__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: calc(var(--header-height) + var(--header-hero-gap));
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.2) 45%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(92vw, 900px);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 7vw, 9%) clamp(2.5rem, 6vw, 4rem)
    clamp(1.35rem, 5.5vw, 6.5%);
  color: #ffffff;
}

.hero__line {
  display: block;
}

.hero__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.38rem, 3.15vw, 2.4rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: clamp(0.55rem, 1.35vw, 0.9rem);
  color: #fdf6ee;
}

.hero__text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 1.75vw, 1.18rem);
  font-weight: 400;
  line-height: 1.58;
  margin-bottom: clamp(0.9rem, 2.2vw, 1.35rem);
  color: #fdf6ee;
}

.hero__btn {
  display: inline-block;
  padding: clamp(1.08rem, 2.3vw, 1.32rem) clamp(1.85rem, 3.5vw, 2.3rem);
  background-color: #006d5b;
  color: #ffffff;
  font-family: "Elms Sans", sans-serif;
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero__btn:hover,
.hero__btn:focus-visible {
  background-color: #005a4b;
  transform: translateY(-1px);
}

.page-content {
  padding: 8rem 2rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  margin-bottom: 1.25rem;
}

.page-content h1 + h2,
.page-content h2 + h3,
.page-content h3 + h4,
.page-content h4 + h5,
.page-content h5 + h6 {
  margin-top: 2.5rem;
}

.page-content h1:not(:first-child),
.page-content h2:not(:first-child),
.page-content h3:not(:first-child) {
  margin-top: 3rem;
}

/* Desktop nav layout */
@media (min-width: 993px) {
  .site-nav {
    position: relative;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  .site-nav__drawer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex: 1;
    height: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    overflow: visible;
  }
}

/* Large tablets & small laptops */
@media (max-width: 1200px) {
  .site-nav {
    padding: 0 2rem;
  }

  .nav-links {
    gap: 4rem;
  }

  .nav-links--left {
    padding-right: 4rem;
  }

  .nav-links--right {
    padding-left: 4rem;
  }
}

/* Tablets & mobile — hamburger menu */
@media (max-width: 992px) {
  :root {
    --header-height: 78px;
    --header-hero-gap: 0;
  }

  .site-nav {
    justify-content: space-between;
    min-height: 78px;
    padding: 0.6rem 1rem;
  }

  .logo {
    position: relative;
    left: auto;
    transform: none;
    z-index: 1002;
    height: 64px;
  }

  .logo__img {
    height: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .site-header.is-menu-open .site-nav__backdrop {
    opacity: 1;
    visibility: visible;
  }

  .site-nav__drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: min(300px, 88vw);
    height: 100vh;
    height: 100dvh;
    padding: 5.5rem 1.5rem 2rem;
    background-color: #2a9d8f;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .site-header.is-menu-open .site-nav__drawer {
    transform: translateX(0);
  }

  .site-header.is-scrolled .site-nav__drawer {
    background-color: #fcf9f2;
  }

  .nav-links {
    flex: unset;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding: 0;
  }

  .nav-links--left,
  .nav-links--right {
    padding: 0;
  }

  .nav-links--right {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }

  .site-header.is-scrolled .nav-links--right {
    border-top-color: rgba(42, 157, 143, 0.25);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 0;
    font-size: 1.1rem;
    color: #fdf6ee;
  }

  .nav-links__clicked {
    width: 1.25rem;
    height: 1.25rem;
  }

  .site-header.is-scrolled .nav-links a {
    color: #2a9d8f;
  }

  .site-header.is-scrolled .nav-links a.is-current {
    color: #2a9d8f;
  }

  .hero {
    background-size: cover;
    background-position: center center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    align-items: center;
    justify-content: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero__overlay {
    background:
      radial-gradient(
        ellipse 85% 65% at 50% 52%,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.22) 55%,
        rgba(0, 0, 0, 0.12) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.15) 35%,
        rgba(0, 0, 0, 0.15) 65%,
        rgba(0, 0, 0, 0.35) 100%
      );
  }

  .hero__content {
    width: 100%;
    max-width: min(94vw, 440px);
    margin-left: auto;
    margin-right: auto;
    padding: calc(2rem + env(safe-area-inset-top, 0px)) 1.35rem
      calc(2rem + env(safe-area-inset-bottom, 0px));
    text-align: center;
  }

  .hero__line {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero__title {
    font-size: clamp(1.75rem, 8vw, 2.3rem);
    line-height: 1.18;
    margin-bottom: 0.8rem;
  }

  .hero__text {
    font-size: clamp(1.02rem, 4.4vw, 1.18rem);
    line-height: 1.58;
    max-width: 38ch;
    margin: 0 auto 1.25rem;
  }

  .hero__btn {
    display: inline-block;
    width: auto;
    max-width: none;
    margin-top: 0.35rem;
    padding: 1.15rem 2.15rem;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
  }
}

/* Small phones */
@media (max-width: 480px) {
  :root {
    --header-height: 72px;
    --header-hero-gap: 0;
  }

  .site-nav {
    min-height: 72px;
    padding: 0.5rem 0.85rem;
  }

  .logo {
    height: 58px;
  }

  .logo__img {
    height: 58px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-links a {
    font-size: 1.02rem;
    padding: 0.75rem 0;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    background-position: center center;
    background-size: cover;
  }

  .hero__content {
    max-width: min(94vw, 400px);
    padding: calc(1.75rem + env(safe-area-inset-top, 0px)) 1.1rem
      calc(1.75rem + env(safe-area-inset-bottom, 0px));
    text-align: center;
  }

  .hero__title {
    font-size: clamp(1.65rem, 8.5vw, 2rem);
    margin-bottom: 0.7rem;
  }

  .hero__text {
    font-size: clamp(0.96rem, 4.7vw, 1.1rem);
    max-width: 36ch;
    margin: 0 auto 1.2rem;
  }

  .hero__btn {
    display: inline-block;
    width: auto;
    max-width: none;
    padding: 1.2rem 2.35rem;
    font-size: 0.9rem;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .hero__title {
    font-size: 1.55rem;
  }

  .hero__text {
    font-size: 0.95rem;
  }

  .hero__btn {
    padding: 1.05rem 2rem;
    font-size: 0.85rem;
  }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
  .site-nav {
    min-height: auto;
    padding: 0.5rem 1rem;
  }

  .logo {
    height: 48px;
  }

  .logo__img {
    height: 48px;
  }

  .site-nav__drawer {
    padding-top: 4rem;
  }

  .hero {
    min-height: auto;
    min-height: 100svh;
    padding: 4rem 0 1.5rem;
    align-items: center;
  }

  .hero__content {
    padding: calc(5rem + env(safe-area-inset-top, 0px)) 8% 1.25rem;
  }

  .hero__title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
  }

  .hero__text {
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
  }

  .hero__btn {
    display: inline-block;
    width: auto;
    max-width: none;
    padding: 0.75rem 1.75rem;
    font-size: 0.75rem;
  }
}

.class-offerings__social{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
    margin-top:-20px;
}

.class-offerings__social-text{
    color:#fff;
    font-size:16px;
}

.site-footer-main__social1{display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(0.65rem, 1.5vw, 1rem);
    list-style: none;
    
    padding: 0;
}

@media (max-width: 767px){

    .class-offerings__social{
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:12px;
    }

    .class-offerings__social-text{
        white-space:normal;
    }

    .site-footer-main__social1{
        justify-content:center;
    }
}

/* --- Top strip --- */
.top-strip {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--strip-height);
	z-index: 1001;
	background: #000;
	transition: transform 0.3s ease;
}
.top-strip__inner {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 16px;
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
	padding: 0 20px;
}
.top-strip__label {
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.03em;
}
.top-strip__socials {
	display: flex;
	align-items: center;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.top-strip__socials img {
	display: block;
	width: 20px;
	height: 20px;
	object-fit: contain;
}
/* Hide after first scroll (JS toggles this class on body) */
body.scrolled .top-strip {
	transform: translateY(-100%);
}
.skip-link{
	display: none;
}
body.scrolled .site-header {
	top: 0;
}
/* Always hide the strip on mobile */
@media (max-width: 767px) {
	.top-strip {
		display: none;
	}
	.site-header{
		top: 0 !important;
	}
}

/* --- Mobile "Follow Us" inside hamburger menu --- */
.mobile-follow-us {
	display: none;
}

@media (max-width: 767px) {
	.mobile-follow-us {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 10px;
		padding: 16px 20px;
		margin-top: 16px;
/* 		border-top: 1px solid rgba(0,0,0,0.1); */
	}

	.mobile-follow-us__label {
		font-size: 1.02rem;
		font-weight: 700;
		letter-spacing: 0.03em;
		color: #fff;
	}
	.site-header.is-scrolled .mobile-follow-us__label{
		color: #2a9d8f;
	}

	.mobile-follow-us__socials {
		display: flex;
		align-items: center;
		gap: 14px;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.mobile-follow-us__socials img {
		width: 26px;
		height: 26px;
		object-fit: contain;
	}
}
@media (max-width:600px){
	.clientsay__layout .clientsay__main{
		margin-top:-330px;
	}
	.hero{
		padding: 4rem 0 1.5rem;
/*         background-position:  center !important; */
        height: 60vh;
        min-height: 60vh !important;
	}
	.tell-us-contact__left .tell-us-contact__yay{
		display: none !important;
	}
	.tell-us-contact__right {
		display: none;
	}
	.cu-form-strip__media{
		display: none;
	}
	.nav-links--right{
		margin-top:0px !important;
		padding-top: 0px !important;
		border-top: none ;
	}
	.illuminate-gallery__title{
		font-size: 6.5vw;
	}
	.illuminate-gallery__inner--filters{
		margin-top: 25px;
	}
	.illuminate-gallery__showcase{
		margin-top: 30px;
	}
	.illuminate-gallery__explore{
		font-size: 3.5vw;
    margin-top: 15px;
	}
	.illuminate-gallery__stage{
		display: flex;
    flex-direction: column;
    gap: 20px;
	}
}
