@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Premium Emotional Healing Color Palette */
    --primary-sage: #7A8B73;
    --primary-sage-light: #B4C0A8;
    --primary-lavender: #E8E6F0;
    --primary-beige: #F6F3EB;
    --primary-cream: #FCFBFA;
    --primary-dusty-blue: #A2B1C2;
    --primary-peach: #F6E5DE;
    --primary-earth: #8C7B6C;

    /* Gradients */
    --grad-calm: linear-gradient(135deg, var(--primary-cream) 0%, var(--primary-beige) 100%);
    --grad-healing: linear-gradient(135deg, var(--primary-lavender) 0%, var(--primary-peach) 100%);
    --grad-sage: linear-gradient(135deg, #8A9B83 0%, var(--primary-sage) 100%);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Text Colors */
    --text-dark: #1A2017;
    --text-muted: #5C6656;
    --text-light: #FCFBFA;
    
    /* UI Elements */
    --transition-slow: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-mid: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
    
    --radius-xl: 60px;
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-blob: 40% 60% 70% 30% / 40% 50% 60% 50%;
    
    /* Premium Glassmorphism */
    --glass-bg: rgba(252, 251, 250, 0.6);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    --glass-blur: blur(20px);
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 400;
}

.section-padding {
    padding: 140px 0;
}

/* Custom Scrollbar - Minimal */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--primary-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-sage-light);
    border-radius: 10px;
}

/* Emotional Gradients & Particles */
.floating-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: -1;
    animation: breathe 10s infinite alternate ease-in-out;
}

.gradient-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-lavender);
    top: -100px;
    right: -100px;
}

.gradient-2 {
    width: 500px;
    height: 500px;
    background: var(--primary-peach);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

@keyframes breathe {
    0% { transform: scale(1) translate(0, 0); opacity: 0.4; }
    50% { transform: scale(1.1) translate(20px, 30px); opacity: 0.6; }
    100% { transform: scale(0.95) translate(-20px, -10px); opacity: 0.3; }
}

/* Navigation - Premium Sticky Glass */
.navbar {
    padding: 30px 0;
    transition: var(--transition-mid);
    z-index: 1000;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--text-dark) !important;
    text-transform: uppercase;
}

.nav-link {
    font-weight: 400;
    color: var(--text-muted) !important;
    margin: 0 18px;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition-mid);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-sage);
    transition: var(--transition-mid);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-sage) !important;
}

/* Dropdown Premium Style */
.dropdown-menu {
    background: rgba(252, 251, 250, 0.95);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow) !important;
    padding: 25px !important;
    border-radius: var(--radius-md);
    margin-top: 15px !important;
}

.dropdown-item {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 12px 25px !important;
    border-radius: 8px;
    transition: var(--transition-fast);
    letter-spacing: 1px;
}

.dropdown-item:hover {
    background: var(--primary-lavender);
    color: var(--primary-sage);
    transform: translateX(8px);
}

/* Buttons - Calming Interaction */
.btn-wellness {
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition-mid);
    background: var(--grad-sage);
    color: white !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-wellness::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-fast);
}

.btn-wellness:hover::before {
    opacity: 1;
}

.btn-wellness:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(122, 139, 115, 0.2);
}

.btn-outline-wellness {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition-mid);
    background: transparent;
    color: var(--primary-sage) !important;
    border: 1px solid var(--primary-sage);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-outline-wellness:hover {
    background: var(--primary-sage);
    color: white !important;
    box-shadow: 0 15px 30px rgba(122, 139, 115, 0.15);
}

/* Hero Section - Cinematic Storytelling */
.hero-section {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-cream);
}

.hero-image-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    border-bottom-left-radius: 150px;
    overflow: hidden;
    z-index: 1;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(0.95);
    transform: scale(1.05);
    transition: transform 10s ease-out;
}

.hero-section:hover .hero-image-wrap img {
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 5%;
}

.hero-content h1 {
    font-size: 5.5rem;
    line-height: 1.05;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.hero-content h1 span {
    display: block;
    overflow: hidden;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 45px;
    font-weight: 300;
}

/* Section Titles - Editorial */
.section-title {
    margin-bottom: 80px;
}

.section-title h6 {
    color: var(--primary-earth);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.section-title h2 {
    font-size: 4rem;
    color: var(--text-dark);
    max-width: 800px;
    margin-bottom: 25px;
}

/* Wellness Cards - Layered UI */
.wellness-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 60px 45px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    transition: var(--transition-slow);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.wellness-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--grad-healing);
    opacity: 0;
    transition: var(--transition-slow);
    z-index: 0;
}

.wellness-card > * {
    position: relative;
    z-index: 1;
}

.wellness-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255,255,255,1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}

.wellness-card:hover::before {
    opacity: 0.05;
}

.wellness-card .icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--primary-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-sage);
    margin-bottom: 40px;
    transition: var(--transition-mid);
}

.wellness-card:hover .icon-wrap {
    background: var(--primary-sage);
    color: white;
    transform: scale(1.1);
}

.wellness-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Breathing Interactive Section */
.breathing-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--grad-healing);
    opacity: 0.6;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: deepBreathe 8s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.breathing-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-sage-light);
    animation: ripple 8s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.breathing-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-sage);
    animation: fadeText 8s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes deepBreathe {
    0%, 100% { transform: scale(0.8); }
    50% { transform: scale(1.2); }
}

@keyframes ripple {
    0%, 100% { transform: scale(0.8); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0; }
}

@keyframes fadeText {
    0%, 100% { opacity: 0.5; content: "Inhale"; }
    50% { opacity: 1; content: "Exhale"; }
}

/* Success Stories / Testimonials */
.story-card {
    padding: 50px;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    position: relative;
}

.story-card i.lni-quotation {
    font-size: 4rem;
    color: var(--primary-lavender);
    position: absolute;
    top: 30px;
    right: 40px;
    opacity: 0.5;
}

.story-card p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.9;
}

/* Footer Premium */
footer {
    background-color: var(--primary-sage);
    color: var(--text-light);
    padding: 120px 0 40px;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
}

footer h4 {
    color: var(--text-light);
    margin-bottom: 35px;
    font-size: 1.5rem;
}

footer p, footer li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 1.05rem;
    margin-bottom: 12px;
    display: block;
}

footer li a:hover {
    color: var(--primary-peach);
    padding-left: 8px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: var(--primary-peach);
    color: var(--primary-sage);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-image-wrap {
        width: 100%;
        height: 60%;
        top: 0;
        border-radius: 0 0 50px 50px;
    }
    .hero-content {
        padding-top: 60vh;
        padding-left: 0;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-content p {
        margin: 0 auto 30px;
    }
    .section-title h2 {
        font-size: 2.8rem;
    }
    footer {
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
    }
}


/* Lenis required CSS */
html.lenis, html.lenis body { height: auto; width: 100vw; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }
