/* =====================================================
   holistic-modern.css
   Desktop/base stylesheet for Holistic Wellness
   Mobile-specific rules are moved to mobile-modern.css
===================================================== */

:root {
  --bg: #fffaf2;
  --bg-soft: #f4eee3;
  --surface: #fff;
  --surface-2: #fbf6ec;
  --deep: #213b35;
  --deep-2: #132720;
  --sage: #6e8b74;
  --sage-light: #dce8dc;
  --clay: #b86f52;
  --gold: #d6a85e;
  --text: #2a302d;
  --muted: #6f7872;
  --border: rgba(33, 59, 53, .12);
  --shadow: 0 24px 70px rgba(33, 59, 53, .13);
  --radius-lg: 28px;
  --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background:
    radial-gradient(circle at top left, rgba(214, 168, 94, .13), transparent 34rem),
    radial-gradient(circle at 90% 20%, rgba(110, 139, 116, .16), transparent 30rem),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

/* =========================
   Navbar
========================= */
.site-navbar {
  background: rgba(255, 250, 242, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  z-index: 1000;
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--deep) !important;
  letter-spacing: .02em;
}

.logoMain {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(184, 111, 82, .22);
}

.navbar .nav-link {
  color: var(--deep) !important;
  font-size: .94rem;
  font-weight: 600;
  padding: 10px 14px !important;
  letter-spacing: .01em;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--clay) !important;
}

.dropdown-menu {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255, 250, 242, .96);
}

.dropdown-item {
  border-radius: 12px;
  color: var(--deep);
  font-size: .92rem;
  padding: 9px 12px;
}

.dropdown-item:hover {
  background: var(--sage-light);
  color: var(--deep);
}

/* =========================
   Buttons
========================= */
.btn-brand {
  border: 0;
  background: linear-gradient(135deg, var(--clay), var(--gold));
  color: #fff !important;
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(184, 111, 82, .22);
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(184, 111, 82, .28);
}

.btn-outline-deep {
  border: 1px solid rgba(33, 59, 53, .24);
  color: var(--deep) !important;
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 700;
  background: rgba(255, 255, 255, .42);
}

.btn-outline-deep:hover {
  background: var(--deep);
  color: #fff !important;
}

/* =========================
   Hero
========================= */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 90px 0;
  margin-bottom: 60px;
  background: linear-gradient(120deg, rgba(255, 250, 242, .96) 0%, rgba(244, 238, 227, .92) 55%, rgba(220, 232, 220, .9) 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: auto -8% -28% auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(110, 139, 116, .14);
  filter: blur(5px);
}

.chakra-soft {
  position: absolute;
  left: -120px;
  top: 120px;
  width: 360px;
  height: 360px;
  background: url('Yoga-IMG/images__1_-removebg-preview.png') center/contain no-repeat;
  opacity: .07;
  animation: slowSpin 95s linear infinite;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--clay);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--clay);
}

.hero-section h1 {
  font-family: var(--font-display);
  color: var(--deep-2);
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 700;
  line-height: .94;
  letter-spacing: -.035em;
  max-width: 680px;
}

.hero-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
  margin-top: 34px;
}

.hero-points div {
  background: rgba(255, 255, 255, .56);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
}

.hero-points strong {
  display: block;
  color: var(--deep);
  font-size: .96rem;
}

.hero-points span {
  color: var(--muted);
  font-size: .87rem;
}

.hero-card {
  position: relative;
  border-radius: 36px;
  padding: 14px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -34px;
  top: -34px;
  border-radius: 50%;
  border: 1px solid rgba(214, 168, 94, .36);
  animation: breathe 5s ease-in-out infinite;
}

.hero-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center top;
  border-radius: 26px;
}

.hero-caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(19, 39, 32, .78), rgba(19, 39, 32, .25));
  backdrop-filter: blur(8px);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(33, 59, 53, .75);
  border-radius: 999px;
  background-size: 58%;
}

/* =========================
   Decorative yogi/chakra band
========================= */
.ambient-stage {
  position: relative;
  min-height: 260px;
  margin-top: -95px;
  pointer-events: none;
  overflow: visible;
  isolation: isolate;
}

.ambient-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 95px;
  transform: translateX(-50%);
  width: min(860px, 82vw);
  height: 130px;
  background: linear-gradient(90deg, transparent, rgba(110, 139, 116, .12), transparent);
  border-radius: 50%;
  filter: blur(8px);
}

.yogi-man {
  position: absolute !important;
  left: 50%;
  top: 34px;
  transform: translateX(-50%);
  width: 260px;
  height: 260px;
  background: url('Yoga-IMG/WhatsApp_Image_2024-04-18_at_11.59.59_AM-removebg-preview.png') center/contain no-repeat;
  opacity: .92;
  filter: drop-shadow(0 22px 30px rgba(33, 59, 53, .16));
  animation: floatSoft 6s ease-in-out infinite;
  z-index: 2 !important;
}

.chakra-ring {
  position: absolute;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .12;
}

/* Holder stays fixed; ::before rotates on its own center */
.chakra-one {
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  top: 14px !important;
  width: 340px !important;
  height: 340px !important;
  margin-left: -170px !important;
  transform: none !important;
  background: none !important;
  opacity: 1 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: visible !important;
}

.chakra-one::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('Yoga-IMG/chakra-2-removebg-preview.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .20;
  transform-origin: 50% 50%;
  animation: chakraOwnWheelSpin 40s linear infinite;
  will-change: transform;
}

.ambient-flower {
  position: absolute;
  width: 170px;
  height: 260px;
  top: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .70;
  animation: flowerDrift 7s ease-in-out infinite;
}

.ambient-left {
  left: 0;
  background-image: url('Yoga-IMG/pngtree-flat-paper-and-flowers-on-side-image_6117410-removebg-preview.png');
}

.ambient-right {
  right: 0;
  background-image: url('Yoga-IMG/pngtree-flat-paper(C)-and-flowers-on-side-image_6117410-removebg-preview - Copy.png');
  animation-delay: 1.2s;
}

/* =========================
   Sections / typography
========================= */
.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-heading h2,
.training-section h2,
.contact-card h2 {
  font-family: var(--font-display);
  color: var(--deep-2);
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}

.section-heading p,
.training-section p,
.contact-card p {
  color: var(--muted);
  font-size: 1rem;
}

/* =========================
   Services
========================= */
.services-section {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0), rgba(244, 238, 227, .76));
}

.service-card {
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(33, 59, 53, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 111, 82, .28);
}

.service-card img {
  width: 100%;
  height: 350px; /* Increased height */
  object-fit: cover;
  object-position: center top;
}

.service-body {
  padding: 28px;
}

.service-body h3,
.testimonial-card h3,
.site-footer h3 {
  color: var(--deep-2);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-body p {
  color: var(--muted);
  margin-bottom: 18px;
}

.service-body a {
  color: var(--clay);
  font-weight: 800;
}

.featured-card {
  background: linear-gradient(180deg, #fff, #fbf2e7);
}

/* =========================
   Testimonials
========================= */
.testimonials-section {
  background: var(--bg);
}

.testimonial-card {
  height: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 16px 44px rgba(33, 59, 53, .07);
}

.student_img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 10px 22px rgba(33, 59, 53, .16);
  margin-bottom: 18px;
}

.testimonial-card p {
  color: var(--muted);
  font-style: italic;
}

.testimonial-card a {
  color: var(--clay);
  font-weight: 800;
}

/* =========================
   Contact CTA
========================= */
.contact-cta {
  margin-top: -70px;
  padding: 100px 0;
}

.contact-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 42px;
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: var(--shadow);
  z-index: 1;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('Yoga-IMG/Untitled design.png') left/cover no-repeat;
  filter: blur(0);
  z-index: -1;
}

.contact-card h1,
.contact-card h2,
.contact-card p,
.contact-card .eyebrow {
  color: #fff;
}

.contact-card .eyebrow::before,
.contact-card .eyebrow::after {
  background: #fff;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 240px;
}

.contact-number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
}

.contact-number:hover {
  color: #ffe2be;
}

/* =========================
   Training / Gallery
========================= */
.training-section {
  background: linear-gradient(180deg, var(--bg), #f7efe2);
  margin-top: -80px;
}

.training-img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 52px rgba(33, 59, 53, .1);
}

.gallery-section {
  background: var(--surface-2);
  overflow: hidden;
}

.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 230px;
  gap: 18px;
  overflow-x: auto;
  padding: 12px max(22px, calc((100vw - 1140px)/2)) 26px;
  scroll-snap-type: x proximity;
}

.gallery-strip::-webkit-scrollbar {
  height: 10px;
}

.gallery-strip::-webkit-scrollbar-track {
  background: rgba(33, 59, 53, .08);
  border-radius: 999px;
}

.gallery-strip::-webkit-scrollbar-thumb {
  background: rgba(110, 139, 116, .65);
  border-radius: 999px;
}

.img-item {
  scroll-snap-align: start;
  width: 230px;
  height: 250px;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(33, 59, 53, .1);
}

/* =========================
   Footer desktop/base
========================= */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--deep-2);
  color: rgba(255, 255, 255, .78);
  padding: 78px 0 30px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(214, 168, 94, .07), transparent 45%), url('Yoga-IMG/Untitled_design_f-removebg-preview.png') center/cover no-repeat;
  opacity: .2;
}

.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.footer-orb-one {
  width: 240px;
  height: 240px;
  right: -70px;
  top: -70px;
  background: rgba(214, 168, 94, .16);
}

.footer-orb-two {
  width: 180px;
  height: 180px;
  left: -50px;
  bottom: 30px;
  background: rgba(110, 139, 116, .22);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-about {
  max-width: 360px;
}

.site-footer h3 {
  color: #fff;
  font-family: var(--font-main);
  font-size: 1.06rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, .78);
  transition: color .2s ease, padding-left .2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffd9ac;
  padding-left: 4px;
}

.footer-contact i {
  width: 22px;
  color: #ffd9ac;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
  color: #fff;
  font-size: 1.25rem;
  transition: background .2s ease, transform .2s ease;
}

.footer-social a:hover {
  background: rgba(214, 168, 94, .25);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 56px;
  padding-top: 24px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
}

.footer-bottom a {
  color: #ffd9ac;
  font-weight: 800;
}

/* =========================
   Shared animation helpers
========================= */
@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes chakraOwnWheelSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes floatSoft {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.13); opacity: .18; }
}

@keyframes flowerDrift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Light tablet/laptop scaling only. No mobile layout rules here. */
@media (max-width: 1199px) and (min-width: 768px) {
  .hero-img { height: 480px; }
  .ambient-stage { min-height: 230px; }
  .yogi-man { width: 230px; height: 230px; }
}

@media (max-width: 991px) and (min-width: 768px) {
  .site-navbar { padding: 10px 0; }

  .navbar-collapse {
    margin-top: 12px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 250, 242, .98);
    border: 1px solid var(--border);
  }

  .hero-section {
    min-height: auto;
    padding: 80px 0 100px;
  }

  .hero-card {
    max-width: 620px;
    margin: 0 auto;
  }

  .hero-img { height: 440px; }

  .chakra-one {
    width: 300px !important;
    height: 300px !important;
    margin-left: -150px !important;
    top: 18px !important;
  }

  .chakra-one::before { opacity: .16; }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Service card icons */
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 16px;

  background: linear-gradient(135deg, rgba(184, 111, 82, 0.14), rgba(214, 168, 94, 0.22));
  color: var(--clay);

  font-size: 20px;
  box-shadow: 0 10px 24px rgba(33, 59, 53, 0.08);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--clay), var(--gold));
  color: #fff;
}

/* Services dropdown icons */
.service-menu-icon {
  width: 22px;
  min-width: 22px;
  margin-right: 8px;
  text-align: center;
  font-size: 15px;
}

.dropdown-item,
.dropdown-header {
  display: flex;
  align-items: center;
}

.header-icon {
  color: var(--gold);
}

.counseling-icon {
  color: #6e8b74;
}

.reiki-icon {
  color: #4f9d69;
}

.yoga-icon {
  color: #b86f52;
}

.distance-reiki-icon {
  color: #8f7ad9;
}

.meditation-icon {
  color: #d6a85e;
}

.nidra-icon {
  color: #5d789c;
}

.mindfulness-icon {
  color: #7ca982;
}

.tarot-icon {
  color: #b86f52;
}

.contact-menu-icon {
  width: 20px !important;
  min-width: 20px !important;
  margin-right: 7px !important;
  font-size: 14px !important;
}


/* =========================
   Testimonials section color separation
========================= */

.testimonials-section {
  background: linear-gradient(180deg, #eef5ef 0%, #dfece2 100%) !important;
  position: relative;
}

.testimonials-section .section-heading h2 {
  color: #213b35 !important;
}

.testimonials-section .section-heading p {
  color: #5f6f66 !important;
}

.testimonial-card {
  background: rgba(255, 250, 242, 0.92) !important;
  border: 1px solid rgba(33, 59, 53, 0.12) !important;
}