/* AstroPsihoYoga landing — yoga-studio style. Sidebar hidden, NOT deleted. */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --yl-peach: #f7c9b8;
  --yl-peach-soft: #fde8df;
  --yl-peach-btn: #f3b9a4;
  --yl-blue: #d7e8f0;
  --yl-blue-soft: #eaf4f8;
  --yl-teal: #5aa8a0;
  --yl-ink: #2c3338;
  --yl-muted: #6b757c;
  --yl-white: #ffffff;
  --yl-radius: 28px;
}

body.landing-home {
  font-family: 'Manrope', sans-serif;
  color: var(--yl-ink);
  background: var(--yl-white);
  margin: 0;
}

/* ===== CRITICAL: hide left lessons sidebar, do NOT remove from DOM ===== */
body.landing-home.sidebar-persist-hidden .sidebar,
body.landing-home .sidebar {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.landing-home .nav-toggle,
body.landing-home .sidebar-unhide-fab {
  display: none !important;
}

body.landing-home .main-content,
body.landing-home.sidebar-persist-hidden .main-content {
  margin-left: 0 !important;
  width: 100% !important;
  padding: 0 !important;
  padding-top: 0 !important;
  background: transparent;
  min-height: 100vh;
}

body.landing-home .header {
  display: none !important; /* replaced by yoga topbar */
}

body.landing-home .courses-page > h1,
body.landing-home .site-hero-illustration,
body.landing-home .trial-lesson-central-clickable,
body.landing-home .scroll-down-indicator,
body.landing-home .lessons-list-express,
body.landing-home #courseDetails,
body.landing-home #lessonsListOld,
body.landing-home #siteLoadProgress,
body.landing-home .site-load-progress,
body.landing-home.site-load-progress--active .site-load-progress,
body.landing-home #globalLoadingOverlay,
body.landing-home .global-loading-overlay {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body.landing-home.site-load-progress--active::before,
body.landing-home.site-load-progress--active::after {
  display: none !important;
  content: none !important;
}

/* Top bar */
.yl-topbar {
  position: sticky;
  top: 0;
  z-index: 1200;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px 28px;
  padding: 14px 36px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.yl-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--yl-ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.yl-logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #7ec8c0 0 28%, transparent 29%),
    conic-gradient(from 210deg, #5aa8a0, #8fd0c8, #5aa8a0);
  position: relative;
  flex-shrink: 0;
}

.yl-logo__mark::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 50%;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(-20deg);
}

.yl-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.yl-nav a {
  color: var(--yl-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.88;
  transition: opacity 0.2s, color 0.2s;
}

.yl-nav a:hover {
  opacity: 1;
  color: var(--yl-teal);
}

.yl-topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.yl-social {
  display: flex;
  gap: 8px;
}

.yl-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--yl-muted);
  text-decoration: none;
  font-size: 13px;
  border: 1px solid #e8eef1;
  transition: background 0.2s, color 0.2s;
}

.yl-social a:hover {
  background: var(--yl-blue-soft);
  color: var(--yl-teal);
}

.yl-phone {
  color: var(--yl-ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.yl-auth {
  display: flex;
  gap: 8px;
  align-items: center;
}

.yl-auth .btn-auth,
.yl-auth a.btn-auth {
  background: transparent !important;
  color: var(--yl-ink) !important;
  border: 1px solid #e4ecef !important;
  border-radius: 999px !important;
  padding: 7px 12px !important;
  font-size: 12px !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.yl-auth .btn-auth:hover {
  background: var(--yl-peach-soft) !important;
}

/* Hero */
.yl-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 40px 56px 60px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 12% 20%, var(--yl-blue) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 88% 70%, var(--yl-peach-soft) 0%, transparent 55%),
    linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
}

.yl-blob {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  filter: blur(0.5px);
  z-index: 0;
  pointer-events: none;
}

.yl-blob--a {
  width: 420px;
  height: 420px;
  background: var(--yl-blue-soft);
  left: -80px;
  top: 40px;
  opacity: 0.9;
}

.yl-blob--b {
  width: 380px;
  height: 380px;
  background: var(--yl-peach-soft);
  right: 8%;
  bottom: 4%;
  opacity: 0.85;
  border-radius: 45% 55% 40% 60% / 55% 40% 60% 45%;
}

.yl-hero__copy,
.yl-hero__visual {
  position: relative;
  z-index: 1;
}

.yl-hero__copy h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 600;
  line-height: 0.95;
  margin: 0 0 18px;
  color: var(--yl-ink);
}

.yl-hero__copy p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--yl-muted);
  max-width: 360px;
  margin: 0 0 28px;
}

.yl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(180deg, #f7cfc0 0%, var(--yl-peach-btn) 100%);
  color: var(--yl-ink);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(243, 185, 164, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.yl-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(243, 185, 164, 0.45);
}

.yl-hero__frame {
  position: relative;
  width: min(100%, 560px);
  margin-left: auto;
  aspect-ratio: 4 / 5;
  border-radius: 48% 52% 42% 58% / 42% 38% 62% 58%;
  overflow: hidden;
  background: var(--yl-blue-soft);
  box-shadow: 0 30px 60px rgba(90, 120, 140, 0.18);
}

.yl-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Sections */
.yl-section {
  position: relative;
  padding: 88px 56px;
  overflow: hidden;
}

.yl-section--tint {
  background:
    radial-gradient(ellipse 40% 50% at 8% 30%, var(--yl-blue-soft) 0%, transparent 70%),
    radial-gradient(ellipse 35% 45% at 92% 70%, var(--yl-peach-soft) 0%, transparent 70%),
    #fff;
}

.yl-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 600;
  text-align: center;
  margin: 0 0 40px;
  color: var(--yl-ink);
}

.yl-section__title a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.yl-section__title a:hover {
  color: var(--yl-teal);
  border-bottom-color: var(--yl-teal);
}

.yl-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.yl-card {
  display: block;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 36px rgba(60, 80, 100, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
}

.yl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(60, 80, 100, 0.14);
}

.yl-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.yl-card__cap {
  padding: 14px 16px 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* Contacts */
.yl-contacts {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.yl-contacts p {
  color: var(--yl-muted);
  line-height: 1.7;
  margin: 0 0 18px;
}

.yl-footer {
  padding: 28px 56px 40px;
  text-align: center;
  color: var(--yl-muted);
  font-size: 13px;
  border-top: 1px solid #eef3f5;
}

/* Inner pages */
.yl-page {
  padding: 48px 56px 80px;
  min-height: 60vh;
  background:
    radial-gradient(ellipse 40% 40% at 10% 0%, var(--yl-blue-soft), transparent 60%),
    #fff;
}

.yl-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  text-align: center;
  margin: 0 0 28px;
}

@media (max-width: 980px) {
  .yl-topbar {
    grid-template-columns: 1fr auto;
    padding: 12px 18px;
  }
  .yl-nav {
    grid-column: 1 / -1;
    width: 100%;
    gap: 12px 16px;
    justify-content: flex-start;
  }
  .yl-hero {
    grid-template-columns: 1fr;
    padding: 28px 20px 48px;
    min-height: auto;
  }
  .yl-hero__frame {
    margin: 0 auto;
    width: min(100%, 420px);
  }
  .yl-section {
    padding: 64px 20px;
  }
  .yl-grid3 {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .yl-page {
    padding: 32px 20px 60px;
  }
}

@media (max-width: 640px) {
  .yl-phone { display: none; }
  .yl-hero__copy h1 { font-size: 48px; }
}

body.landing-home #globalLoadingOverlay,
body.landing-home .global-loading-overlay {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
