@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@100..900&display=swap');

/* ===== CSS Variables ===== */
:root {
  --yoga-bg: #f7fdf5;
  --yoga-olive: #e07a2f;
  --yoga-cream: #e8f5e2;
  --yoga-ink: #2d4a35;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--yoga-bg);
  color: var(--yoga-ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* ===== Utilities ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-md { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1024px; margin: 0 auto; padding: 0 24px; }

.text-center { text-align: center; }
.italic { font-style: italic; }
.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }

.text-olive { color: var(--yoga-olive); }
.text-ink { color: var(--yoga-ink); }
.text-ink-60 { color: rgba(45,74,53,0.6); }
.text-ink-70 { color: rgba(45,74,53,0.7); }
.text-ink-80 { color: rgba(45,74,53,0.8); }

/* ===== Pills / Tags ===== */
.pill-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(224,122,47,0.1);
  color: var(--yoga-olive);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== Glass card ===== */
.glass-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* ===== Navbar ===== */
.site-header { width: 100%; background: var(--yoga-bg); }

.header-logo-area {
  padding: 32px 24px;
  display: flex;
  justify-content: center;
}

.header-logo-area a { display: flex; flex-direction: column; align-items: center; }
.header-logo-area img { height: 80px; width: auto; object-fit: contain; }

nav.main-nav {
  background: var(--yoga-ink);
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.nav-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-desktop ul li a {
  color: white;
  padding: 16px 0;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.nav-desktop ul li a:hover,
.nav-desktop ul li a.active { color: var(--yoga-olive); }

.nav-mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  height: 56px;
}

.nav-mobile-header span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.nav-toggle {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

.nav-mobile-menu {
  display: none;
  background: var(--yoga-ink);
  border-top: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  transition: max-height 0.3s ease;
  max-height: 0;
}

.nav-mobile-menu.open { display: block; max-height: 500px; }

.nav-mobile-menu ul {
  list-style: none;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-mobile-menu ul li a {
  display: block;
  padding: 8px 0;
  color: white;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: color 0.2s;
}

.nav-mobile-menu ul li a:hover { color: var(--yoga-olive); }

/* ===== Footer ===== */
footer.site-footer {
  padding: 64px 24px;
  background: var(--yoga-bg);
  border-top: 1px solid rgba(224,122,47,0.05);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: left;
}

.footer-logo img { height: 48px; width: auto; object-fit: contain; }
.footer-logo p {
  font-size: 10px;
  color: rgba(45,74,53,0.4);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 16px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--yoga-olive);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a, .footer-col p a {
  font-size: 13px;
  color: rgba(45,74,53,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover, .footer-col p a:hover { color: var(--yoga-olive); }
.footer-col .whatsapp-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--yoga-olive);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: text-decoration 0.2s;
}
.footer-col .whatsapp-link:hover { text-decoration: underline; }

.footer-bottom {
  max-width: 1280px;
  margin: 64px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(224,122,47,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 10px;
  color: rgba(45,74,53,0.3);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.footer-links { display: flex; gap: 24px; }
.footer-links button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 10px;
  color: rgba(45,74,53,0.3);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: color 0.2s;
}
.footer-links button:hover { color: var(--yoga-olive); }

/* ===== Floating Actions ===== */
.floating-actions {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.btn-scroll-top {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(224,122,47,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--yoga-olive);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-scroll-top:hover { background: var(--yoga-olive); color: white; transform: translateY(-2px); }
.btn-scroll-top.visible { display: flex; }

.btn-whatsapp {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.2s;
  position: relative;
}

.btn-whatsapp:hover { transform: scale(1.1); }
.btn-whatsapp svg { width: 28px; height: 28px; fill: white; }

.btn-whatsapp .tooltip {
  position: absolute;
  right: calc(100% + 16px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--yoga-ink);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-whatsapp:hover .tooltip { opacity: 1; }

/* ===== Page Hero ===== */
.page-hero {
  padding: 80px 24px 48px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 16px; }
.page-hero p { color: rgba(45,74,53,0.6); max-width: 600px; margin: 0 auto; }

/* ===== Section spacing ===== */
.section { padding: 48px 24px; }
.section-lg { padding: 80px 24px; }

/* ===== Fade-in animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.fade-in-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-scale.visible { opacity: 1; transform: scale(1); }

/* ===== Buttons ===== */
.btn-primary {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 16px;
  background: var(--yoga-ink);
  color: white;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(45,74,53,0.2);
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: rgba(45,74,53,0.9); }

.btn-olive {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 16px;
  background: var(--yoga-olive);
  color: white;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: background 0.2s;
  box-shadow: 0 8px 32px rgba(224,122,47,0.2);
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-olive:hover { background: rgba(224,122,47,0.9); }

.btn-outline-olive {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 16px;
  border: 1px solid rgba(224,122,47,0.2);
  color: var(--yoga-olive);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s;
  background: transparent;
  cursor: pointer;
  text-align: center;
}
.btn-outline-olive:hover { background: rgba(224,122,47,0.05); }

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45,74,53,0.4);
  backdrop-filter: blur(4px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--yoga-bg);
  border-radius: 24px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 80px rgba(0,0,0,0.2);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s;
  position: relative;
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.modal-close:hover { background: white; }

.modal-scroll { overflow-y: auto; }

/* ===== No scrollbar ===== */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-mobile-header { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-logo img { margin: 0 auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
