/* =============================================
   GLOBAL CSS — Colors, Fonts, Base Styles
   ============================================= */
:root {
    --dark: #0f172a;
    --accent: #2B8A6A;
    --soft: #E6F4EA;
    --bg: #ffffff;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --header-height: 70px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--bg);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 0.8rem;
}

.heading3 {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Layout & Containers */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    scroll-margin-top: var(--header-height);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
    min-height: 44px;
}

.header {
    height: 70px;

}


.btn--primary {
    background-color: var(--accent);
    color: #fff;
}

.btn--primary:hover,
.btn--primary:focus {
    background-color: #1f6b54;
    transform: translateY(-2px);
}

.btn--secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn1 {
    margin-left: 25px;
}

.btn--secondary:hover,
.btn--secondary:focus {
    background-color: var(--accent);
    color: #fff;
}

/* Accessibility */
.focus-visible:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
    transition-delay: var(--fade-delay, 0s);
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   HEADER STYLES
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #eee;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    height: 70px;
}

.header__logo img {
    height: 42px;
    width: auto;
    transform: scale(1.2);

}


.header__nav {
    display: flex;
    align-items: center;
}

.header__toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    margin-left: 1rem;
}

.header__toggle-line {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.header__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.header__link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.header__link:hover,
.header__link:focus,
.header__link--active {
    color: var(--accent);
}

.header__link--active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}

.header__cta {
    margin-left: 2rem;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--dark);
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* =============================================
   HERO SECTION & SLIDER
   ============================================= */
.hero {
    position: relative;
    min-width: 66svh;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@supports not (height: 100svh) {
    .hero {
        min-height: 100vh;
    }
}

.hero__slider,
.hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__slide {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero__slide--active {
    opacity: 1;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Content & Overlay (Merged Duplicates) */
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    pointer-events: none;
}

.hero__overlay-inner {
    pointer-events: auto;
    max-width: 980px;
    width: 100%;
    text-align: center;
    color: #fff;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    transform: translateY(12px);
    opacity: 0;
    transition: transform 450ms cubic-bezier(.2, .9, .25, 1), opacity 450ms ease;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.12));
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-top: 10vh;
}

.hero__overlay-inner.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero__overlay-title {
    font-size: 1.6rem;
    margin: 0 0 .5rem;
    font-family: var(--font-heading);
}

.hero__overlay-desc {
    margin: 0 0 1rem;
    font-size: 1rem;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

.hero__overlay-cta {
    display: inline-block;
    pointer-events: auto;
}

/* Slider controls */
.hero__prev,
.hero__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.hero__prev:hover,
.hero__next:hover {
    background: rgba(255, 255, 255, 0.4);
}

.hero__prev {
    left: 20px;
}

.hero__next {
    right: 20px;
}

.hero__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
}

.hero__dot--active {
    background: white;
}

/* =============================================
   PROGRAMS & CTA STRIP
   ============================================= */
.programs-preview {
    padding: 4rem 0;
    background-color: var(--soft);
}

.programs-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.program-card {
    background: #eaf3f0;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
}

.program-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

.cta-strip {
    padding: 4rem 0;
    background-color: var(--accent);
    color: white;
    text-align: center;
}

/* =============================================
   QUICK CTA / WHATSAPP
   ============================================= */
.quick-cta {
    padding: 4rem 0;
    text-align: center;
    background-color: #bfdcd2;
    color: #000;
}

.quick-cta h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.quick-cta p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.btn--whatsapp {
    background-color: #25d366;
    color: white;
    border: 2px solid #25d366;
    font-weight: 700;
    padding: 0.8rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: background-color 0.3s ease;
}

.btn--whatsapp:hover {
    background-color: #128c7e;
    border-color: #128c7e;
}

.btn--whatsapp i.fab {
    font-size: 20px;
    color: white;
    line-height: 1;
}

/* =============================================
   FOOTER STYLES
   ============================================= */
.footer {
    background: var(--dark);
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer__logo {
    height: 80px;
    width: auto;
}

.footer__links h3,
.footer__contact h3,
.footer__social h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.footer__links ul {
    list-style: none;
    padding: 0;
}

.footer__links li {
    margin-bottom: .5rem;
}

.footer__links a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer__links a:hover {
    color: var(--accent);
}

.footer__contact p {
    margin: .5rem 0;
    color: #ccc;
}

.footer__contact a {
    color: #fff;
}

.footer__social-links {
    display: flex;
    gap: 1rem;
}

.footer__social-links a i.fab {
    font-size: 1.5rem;
    color: #fff;
    transition: color 0.3s ease;
}

.footer__social-links a:hover i.fab {
    color: var(--accent);
}

.footer__bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* =============================================
   YOGAKSHIVA – YOGA ANIMATION STYLES
   ============================================= */
.yoga-main-wrapper {
    background-color: var(--bg);
    overflow-x: hidden;
    width: 100%;
}

.yoga-anim-container {
    margin-bottom: 60px;
    width: 100%;
}

.yoga-anim-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.row-reverse .yoga-anim-row {
    flex-direction: row-reverse;
}

.yoga-text {
    flex: 1.2;
}

.yoga-label {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.yoga-text h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.yoga-text p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 16px;
}

.yoga-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.yoga-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.yoga-list li i {
    color: var(--accent);
}

.yoga-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tab-highlight-color: transparent;
}

.aura-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(43, 138, 106, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px);
    animation: glowPulse 5s ease-in-out infinite;
}

.yoga-float-stack {
    position: relative;
    z-index: 5;
    animation: floatingYoga 5s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.yoga-character-frame {
    position: relative;
    width: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.yoga-img-layer {
    width: 100%;
    transition: opacity 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.layer-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.yoga-visual:hover .layer-hover,
.yoga-visual:active .layer-hover {
    opacity: 1;
}

.yoga-visual:hover .layer-base,
.yoga-visual:active .layer-base {
    opacity: 0;
}

.yoga-name-tag {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-weight: 800;
    font-size: 2rem;
    color: var(--accent);
    opacity: 0;
    transition: all 0.6s ease;
    white-space: nowrap;
    z-index: -1;
    letter-spacing: 5px;
}

.yoga-visual:hover .yoga-name-tag {
    opacity: 0.15;
    transform: translate(-50%, -50%) scale(1.4);
    letter-spacing: 7px;
}

.yoga-shadow--floating,
.yoga-shadow--grounded {
    position: absolute;
    width: 320px;
    height: 30px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 75%);
    border-radius: 50%;
    filter: blur(4px);
    z-index: 2;
}

.yoga-shadow--floating {
    bottom: 35px;
    animation: shadowMovement 5s ease-in-out infinite;
}

.yoga-shadow--grounded {
    bottom: 35px;
    animation: groundedShadow 5s ease-in-out infinite;
}

/* =============================================
   YOGA PRACTICE MAIN HEADING
   ============================================= */

.yoga-practice-heading {
    padding: 5rem 0 3.5rem;
    background: linear-gradient(180deg,
            #f6faf8 0%,
            #ffffff 100%);
    text-align: center;
}

.yoga-practice-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

.yoga-practice-title {
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 1rem;
}

.yoga-practice-desc {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 991px) {
    .yoga-practice-title {
        font-size: 2.2rem;
    }

    .yoga-practice-desc {
        font-size: 1rem;
    }

    .yoga-list {
        display: flex;
        flex-direction: column;
        align-items: self-start;
    }


}

@media (max-width: 576px) {
    .yoga-practice-heading {
        padding: 2rem 0 2.8rem;
    }

    .yoga-practice-title {
        font-size: 1.9rem;
    }

    .yoga-practice-desc {
        font-size: 0.95rem;
    }

    .yoga-list {
        display: flex;
        flex-direction: column;
        align-items: self-start;
    }
}

/* =====================================
   FLOATING CONTACT BUTTONS
===================================== */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Common Button Style */
.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.float-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* Call Button */
.call-btn {
    background-color: #318ce7;
    /* dark theme */
}

/* WhatsApp Button */
.whatsapp-btn {
    background-color: #25d366;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .floating-buttons {
        right: 14px;
        bottom: 14px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}


/* =============================================
   KEYFRAMES
   ============================================= */
@keyframes floatingYoga {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-40px);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes shadowMovement {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
        filter: blur(6px);
    }

    50% {
        transform: scale(0.7);
        opacity: 0.3;
        filter: blur(12px);
    }
}

@keyframes groundedShadow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
        filter: blur(6px);
    }

    50% {
        transform: scale(0.7);
        opacity: 0.3;
        filter: blur(12px);
    }
}

/* =============================================
   RESPONSIVE BREAKPOINTS (Merged & Cleaned)
   ============================================= */

/* TABLET (768px+) */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero__overlay {
        justify-content: center;
        align-items: center;
    }

    .hero__overlay-inner {
        margin-top: 8vh;
        max-width: 820px;
    }

    .hero__overlay-title {
        font-size: 2.25rem;
    }

    .hero__overlay-desc {
        font-size: 1.125rem;
    }


}

/* DESKTOP (1024px+) */
@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
        max-width: 1100px;
    }

    .header__content {
        padding: 1.5rem 0;
    }

    .header__logo img {
        height: 50px;
    }

    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .hero {
        min-height: 60svh;
    }
}

/* MOBILE (max-width: 767px) */
@media (max-width: 767px) {
    .header__content {
        min-height: var(--header-height);
        padding: 0.5rem 0;
    }

    .header__cta {
        display: none;
    }

    .header__toggle {
        display: flex;
    }

    .header__menu {
        position: fixed;
        top: 48px;
        bottom: 0;
        left: 0;
        right: 0;
        height: fit-content;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        padding: 1rem;
        gap: 0.75rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 350ms cubic-bezier(.1, .5, .2, 1);
        z-index: 2000;
        overflow-y: auto;
    }

    .header__menu--open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header__menu .header__link {
        padding: 0.9rem 0;
        display: block;
        font-size: 1.05rem;
    }

    .header__menu .header__link:hover {
        background-color: var(--soft);
        border-radius: 6px;
    }

    .header__menu .header__cta {
        display: inline-block;
        margin-top: 0.75rem;
    }

    /* Hamburger to Cross Animation */
    body.menu-open .header__toggle-line:nth-child(3) {
        opacity: 0;
        transform: translateX(-50%);
    }

    body.menu-open .header__toggle-line:nth-child(2) {
        transform: translateY(9px) rotate(45deg);
    }

    body.menu-open .header__toggle-line:nth-child(4) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero {
        height: 60vh;
        min-height: 320px;
        min-width: 100svw;
    }

    .hero__overlay-inner {
        margin-top: 8vh;
        padding: 0.9rem 1rem;
        border-radius: 10px;
    }

    .hero__overlay-title {
        font-size: 1.25rem;
    }

    .hero__overlay-desc {
        font-size: 0.95rem;
        max-width: 45ch;
    }
}

/* YOGA MOBILE ADJUSTMENTS */
@media (max-width: 991px) {

    .yoga-anim-row,
    .row-reverse .yoga-anim-row {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
    }

    .yoga-text {
        width: 100%;
        order: 2;
    }

    .yoga-text h2 {
        font-size: 1.2rem;
    }

    .yoga-visual {
        width: 100%;
        height: 350px;
        order: 1;
    }

    .yoga-character-frame {
        width: 300px;
    }

    .frame-tall {
        width: 380px;
    }

    .aura-effect {
        width: 250px;
        height: 250px;
    }

    .yoga-name-tag {
        font-size: 1.2rem;
    }

    .yoga-shadow--floating {
        width: 200px;
        bottom: -20px;
    }

    .yoga-shadow--grounded {
        width: 300px;
        bottom: -10px;
    }

    .yoga-list li {
        justify-content: center;
        font-size: 0.95rem;
    }


}