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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #3c3332;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("yoga.png");
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(0.6);
  transform: scale(1.1);
  z-index: -3;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.447);
  z-index: -2;
  pointer-events: none;
}

.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section-contact {
  padding-bottom: 100px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(to top, rgb(12 6 8 / 30%), rgba(12, 6, 8, 0.55));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}

.logo {
  font-family: "Bellota", system-ui;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fbe9ef;
}

.nav {
  display: flex;
  gap: 20px;
  margin-right: -50px;
}

.nav a {
  font-size: 0.9rem;
  text-decoration: none;
  color: #f9e0ea;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
  color: #ab768b;
}

.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 560px;
  padding: 120px 0 80px;
  text-align: left;
  color: #fff7fb;
  margin-left: 135px;
}

.hero .badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(248, 214, 224, 0.26);
  border: 1px solid rgba(250, 220, 230, 0.6);
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 3.3rem);
  line-height: 1.1;
  margin: 0 0 14px;
}

.hero p {
  font-size: 1rem;
  max-width: 32rem;
  margin-bottom: 26px;
  color: #ffeef7;
}

.hero-actions {
  margin-bottom: 26px;
}

.hero-badge {
  margin-top: 14px;
  display: inline-block;
  opacity: 0.9;
}

.hero-subtitle {
  margin: 12px 0 28px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ffeef7;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f8c7d8, #f4a9c0);
  color: #47252d;
  box-shadow: 0 12px 25px rgba(163, 86, 118, 0.4);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(140, 65, 97, 0.55);
}

.btn-ghost {
  background: linear-gradient(135deg, #f8c7d8, #f4a9c0);
  color: #47252d;
  box-shadow: 0 12px 25px rgba(163, 86, 118, 0.4);
  border: none;
}

.btn-ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(140, 65, 97, 0.55);
}

.card {
  background: rgba(255, 250, 252, 0.88);
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: 0 18px 50px rgba(82, 46, 63, 0.32);
  backdrop-filter: blur(18px);
}

.card.small {
  padding: 26px 22px;
  border-radius: 24px;
}

.section-title {
  text-align: center;
  color: #fdf3f8;
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  margin: 0 0 26px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.cards-grid .card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: #3d292f;
}

.cards-grid .card p {
  margin: 0;
  font-size: 0.95rem;
  color: #5a4146;
}

.card h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-family: "Playfair Display", serif;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.96rem;
  color: #4a3439;
}

.benefits-list li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f4a9c0, #f8c7d8);
}

.contact-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.contact-items {
  margin: 22px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-link {
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255, 250, 252, 0.92);
  text-decoration: none;
  color: #422931;
  font-size: 0.95rem;
  border: 1px solid rgba(250, 210, 229, 0.9);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s ease;
}

.contact-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(104, 60, 79, 0.35);
  background: #fff8fc;
}

.contact-label {
  opacity: 0.7;
}

.contact-value {
  font-weight: 600;
}

.back-to-top {
  margin-top: 10px;
}

.site-footer {
  padding: 26px 0;
  font-size: 1rem;
  color: #f8dfe9;
  background: linear-gradient(to top, rgb(12 6 8 / 30%), rgba(12, 6, 8, 0.55));
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-note {
  opacity: 0.7;
}

body::after {
  z-index: -2;
}

body::before {
  z-index: -3;
}

#about,
#programs,
#benefits,
#contact {
  scroll-margin-top: 160px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInCenter {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out both;
}

.fade-in-center {
  animation: fadeInCenter 0.8s ease-out both;
}

.fade-in-delay-1 {
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.fade-in-delay-2 {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.fade-in-delay-3 {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.fade-in-delay-4 {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}



@media (max-width: 768px) {
  .header-inner {
    gap: 10px;
  }

  .nav {
    gap: 10px;
    font-size: 0.8rem;
  }

  .hero-inner {
    padding-top: 60px;
  }

  .card {
    padding: 26px 22px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

@media (max-width: 520px) {

  .nav {
    display: none;
  }

  .site-header {
    padding: 10px 0;
  }

  .header-inner {
    justify-content: center;
  }

  .logo {
    text-align: center;
    width: 100%;
    font-size: 1.3rem;
  }


  .hero {
    text-align: center;
    padding: 60px 0 40px;
  }

  .hero-inner {
    margin: 0 auto;
    padding: 0;
    max-width: 90%;
  }

  .hero h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 16px;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin: 0 auto 28px;
    max-width: 90%;
    text-align: center;
  }

  .hero-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    max-width: 390px;
  }

  .hero-badge {
    margin: 18px auto 0;
    display: inline-block;
    padding: 10px 18px;
    font-size: 0.8rem;
  }


  .section {
    padding: 52px 0;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }


  .card {
    padding: 22px 18px;
  }

  .card.small {
    padding: 20px 16px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }


  .contact-link {
    padding: 16px 18px;
    font-size: 1rem;
  }

  .contact-items {
    gap: 16px;
  }

  .back-to-top {
    margin-top: 20px;
    padding: 14px;
    width: 100%;
  }


  #about,
  #programs,
  #benefits,
  #contact {
    scroll-margin-top: 100px;
  }
}

