/*==================================================
VEDIC SPIRITUALS
STYLE.CSS
PART 1
Foundation • Header • Hero
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

/*==================================================
ROOT
==================================================*/

:root{

--gold:#b89145;
--gold-light:#d6b36a;

--cream:#f8f5ef;
--white:#ffffff;

--dark:#222;
--text:#666;

--shadow:0 20px 50px rgba(0,0,0,.15);

--transition:.35s ease;

}


/*==================================================
RESET
==================================================*/

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Lato',sans-serif;

background:var(--cream);

color:var(--text);

overflow-x:hidden;

line-height:1.8;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

transition:var(--transition);

}

ul{

list-style:none;

}

.container{

width:min(1180px,92%);

margin:auto;

}


/*==================================================
TYPOGRAPHY
==================================================*/

h1,h2,h3,h4{

font-family:'Cormorant Garamond',serif;

color:var(--dark);

font-weight:600;

}

.section-heading{

text-align:center;

margin-bottom:70px;

}

.section-label{

display:block;

letter-spacing:5px;

font-size:14px;

font-weight:700;

color:var(--gold);

margin-bottom:15px;

}

.section-heading h2{

font-size:52px;

margin-bottom:20px;

}

.section-heading p{

max-width:760px;

margin:auto;

font-size:18px;

color:#666;

}

.gold-line{

width:90px;

height:2px;

background:var(--gold);

margin:22px auto 28px;

}


/*==================================================
HEADER
==================================================*/

.site-header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:1000;

padding:18px 0;

transition:.4s;

}

.site-header.scrolled{

background:rgba(18,18,18,.82);

backdrop-filter:blur(12px);

box-shadow:0 10px 30px rgba(0,0,0,.18);

}

.nav-container{

display:flex;

align-items:center;

justify-content:space-between;

}

.logo img{

height:78px;

transition:.4s;

}

.site-header.scrolled .logo img{

height:60px;

}
/*=========================================
HAMBURGER MENU
=========================================*/

.menu-toggle{

display:none;

background:none;

border:none;

font-size:34px;

color:#fff;

cursor:pointer;

z-index:2000;

}

/*==================================================
NAVIGATION
==================================================*/

.main-nav ul{

display:flex;

gap:38px;

align-items:center;

}

.main-nav a{

color:#fff;

font-size:15px;

font-weight:600;

letter-spacing:.5px;

position:relative;

}

.main-nav a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:var(--gold);

transition:.35s;

}

.main-nav a:hover{

color:#f3d28f;

}

.main-nav a:hover::after{

width:100%;

}


/*==================================================
BUTTONS
==================================================*/

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:18px 42px;

border-radius:50px;

font-size:15px;

font-weight:700;

letter-spacing:1px;

transition:var(--transition);

}

.btn-primary{

background:var(--gold);

color:#fff;

box-shadow:0 15px 40px rgba(0,0,0,.18);

}

.btn-primary:hover{

background:#c79a49;

transform:translateY(-5px);

box-shadow:0 25px 50px rgba(0,0,0,.25);

}


/*==================================================
HOME HERO
==================================================*/

.hero{

position:relative;

min-height:100vh;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

overflow:hidden;

background:url("../images/himalayas/home-hero.jpg")
center center/cover no-repeat;

animation:heroZoom 30s linear infinite alternate;

}

.hero::before{

content:"";

position:absolute;

inset:0;

background:

linear-gradient(

rgba(12,18,22,.25),

rgba(18,20,22,.18),

rgba(18,20,22,.55)

);

}

.hero-overlay{

position:absolute;

inset:0;

background:

radial-gradient(circle at 50% 18%,

rgba(255,220,130,.15),

transparent 60%);

}

.hero-content{

    max-width:760px;
    width:100%;
    margin:auto;
    padding:20px;
    text-align:center;
}

.hero-label{

font-size:15px;

letter-spacing:8px;

font-weight:700;

color:#f0d9a2;

margin-bottom:18px;

}

.hero h1{

    font-size:72px;
    line-height:1.1;
    max-width:900px;
    margin:0 auto 25px;
}
.hero h2{

font-size:38px;

font-style:italic;

font-weight:400;

color:#f6ead3;

margin-bottom:35px;

}

.hero-text{

font-size:22px;

line-height:2;

max-width:820px;

margin:auto;

color:#fffdf7;

font-weight:300;

text-shadow:

0 4px 12px rgba(0,0,0,.35);

margin-bottom:45px;

}


/*==================================================
ANIMATIONS
==================================================*/

@keyframes heroFade{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@keyframes heroZoom{

from{

transform:scale(1);

}

to{

transform:scale(1.08);

}

}
/*==================================================
WELCOME SECTION
==================================================*/

.welcome-section{

padding:120px 0;

background:#fff;

}

.welcome-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.welcome-image{

overflow:hidden;

border-radius:20px;

box-shadow:var(--shadow);

}

.welcome-image img{

width:100%;

height:650px;

object-fit:cover;

transition:.8s;

}

.welcome-image:hover img{

transform:scale(1.05);

}

.welcome-content p{

font-size:20px;

line-height:2;

margin-bottom:28px;

color:#555;

}

.welcome-content blockquote{

margin-top:45px;

padding:35px;

border-left:4px solid var(--gold);

background:#faf8f2;

font-size:30px;

font-family:'Cormorant Garamond',serif;

font-style:italic;

color:#5b4825;

border-radius:8px;

}


/*==================================================
EXPLORE SECTION
==================================================*/

.explore-section{

padding:120px 0;

background:var(--cream);

}

.explore-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.explore-card{

background:#fff;

padding:50px 40px;

border-radius:18px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.06);

transition:.45s;

position:relative;

overflow:hidden;

}

.explore-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:4px;

background:var(--gold);

transform:scaleX(0);

transition:.45s;

}

.explore-card:hover::before{

transform:scaleX(1);

}

.explore-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.card-icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:28px;

border-radius:50%;

background:#faf5ea;

display:flex;

align-items:center;

justify-content:center;

font-size:42px;

transition:.4s;

}

.explore-card:hover .card-icon{

background:var(--gold);

color:#fff;

transform:rotate(8deg);

}

.explore-card h3{

font-size:36px;

margin-bottom:18px;

}

.explore-card p{

font-size:18px;

line-height:1.9;

color:#666;

margin-bottom:35px;

}

.explore-card span{

font-size:15px;

font-weight:700;

letter-spacing:1px;

color:var(--gold);

text-transform:uppercase;

}

.explore-card:hover span{

letter-spacing:2px;

}


/*==================================================
CARD COLORS
==================================================*/

.explore-card:nth-child(1){

background:#fffdf9;

}

.explore-card:nth-child(2){

background:#fffefc;

}

.explore-card:nth-child(3){

background:#fffdf8;

}

.explore-card:nth-child(4){

background:#fffef9;

}

.explore-card:nth-child(5){

background:#fffdfa;

}

.explore-card:nth-child(6){

background:#fffefc;

}


/*==================================================
SECTION SPACING
==================================================*/

section{

position:relative;

}

section:nth-child(even){

background:#faf8f3;

}


/*==================================================
FADE ANIMATION
==================================================*/

.fade-section{

opacity:0;

transform:translateY(60px);

transition:1s;

}

.fade-section.visible{

opacity:1;

transform:translateY(0);

}
/*==================================================
TESTIMONIALS
==================================================*/

.testimonials-section{

padding:120px 0;

background:#fff;

}

.testimonial-slider{

max-width:900px;

margin:auto;

position:relative;

min-height:260px;

}

.testimonial{

display:none;

text-align:center;

animation:fadeTestimonial .8s ease;

}

.testimonial.active{

display:block;

}

.quote{

font-family:'Cormorant Garamond',serif;

font-size:42px;

line-height:1.7;

font-style:italic;

color:#4d3d24;

margin-bottom:35px;

}

.testimonial h4{

font-size:24px;

color:var(--gold);

margin-bottom:8px;

}

.testimonial span{

font-size:15px;

letter-spacing:2px;

text-transform:uppercase;

color:#888;

}

@keyframes fadeTestimonial{

from{

opacity:0;

transform:translateY(20px);

}

to{

opacity:1;

transform:translateY(0);

}

}




/*==================================================
SITE FOOTER
==================================================*/

.site-footer{

    background:#191919;

    color:#d7d7d7;

    text-align:center;

    padding:90px 20px 50px;

}

.footer-logo img{

    width:90px;

    margin-bottom:20px;

}

.site-footer h2{

    color:#d4af37;

    letter-spacing:4px;

    font-size:2rem;

    margin-bottom:10px;

}

.footer-tagline{

    color:#c8b07a;

    font-size:1.1rem;

    letter-spacing:2px;

    margin-bottom:35px;

}

.footer-divider{

    width:90px;

    height:2px;

    background:#b89145;

    margin:35px auto;

}

.footer-quote{

    max-width:720px;

    margin:auto;

    font-size:1.2rem;

    line-height:2;

    font-style:italic;

    color:#eeeeee;

}

.footer-contact{

    margin-top:45px;

    font-size:1.05rem;

}

.footer-contact a{

    color:#d4af37;

    text-decoration:none;

}

.footer-contact a:hover{

    color:white;

}

.footer-social{

    margin-top:25px;

}

.footer-social a{

    color:white;

    text-decoration:none;

    margin:0 12px;

    transition:.3s;

}

.footer-social a:hover{

    color:#d4af37;

}

.footer-bottom{

    margin-top:40px;

}

.footer-bottom p{

    margin:8px 0;

}

.sanskrit{

    color:#d4af37;

    font-size:1.3rem;

    letter-spacing:2px;

}

.translation{

    color:#aaaaaa;

    font-style:italic;

}

/*==============================
MOBILE
==============================*/

@media(max-width:768px){

.site-footer{

    padding:70px 20px 40px;

}

.footer-logo img{

    width:70px;

}

.site-footer h2{

    font-size:1.6rem;

}

.footer-tagline{

    font-size:1rem;

}

.footer-quote{

    font-size:1rem;

    line-height:1.8;

}

.footer-social{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.sanskrit{

    font-size:1.05rem;

}

}

/*==================================================
HEADER SCROLL EFFECT
==================================================*/

.site-header.scrolled{

padding:10px 0;

}


/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:1100px){

    .explore-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .welcome-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .welcome-image img{
        height:500px;
    }

    .hero h1{
        font-size:72px;
    }

}


/*==================================================
MOBILE
==================================================*/

@media (max-width:768px){

    /* Header */

    .site-header{
        padding:12px 0;
    }

    .nav-container{
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    .logo img{
        height:54px;
        width:auto;
    }

    .site-header.scrolled .logo img{
        height:50px;
    }

    .menu-toggle{
        display:block;
        font-size:38px;
        line-height:1;
        color:#fff;
    }

    /* Navigation */

    .main-nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:rgba(15,15,15,.97);
        display:none;
        padding:25px;
        border-top:1px solid rgba(255,255,255,.08);
        box-shadow:0 15px 40px rgba(0,0,0,.35);
        z-index:999;
    }

    .main-nav.active{
        display:block;
    }

    .main-nav ul{
        display:flex;
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

    .main-nav li{
        width:100%;
    }

    .main-nav a{
        display:block;
        padding:14px 0;
        font-size:19px;
    }

    /* Hero */

    .hero{
        padding:150px 20px 90px;
    }

    .hero h1{
        font-size:42px;
        line-height:1.2;
    }

    .hero h2{
        font-size:24px;
    }

    .hero-text{
        font-size:17px;
        line-height:1.9;
    }

    .hero-label{
        letter-spacing:4px;
        font-size:13px;
    }

    /* Sections */

    .section-heading h2{
        font-size:40px;
    }

    .explore-grid{
        grid-template-columns:1fr;
    }

    .quote{
        font-size:30px;
    }

    .welcome-content p{
        font-size:18px;
    }

    .welcome-content blockquote{
        font-size:24px;
    }

    .btn{
        padding:15px 28px;
        font-size:14px;
    }

}


/*==================================================
SMALL MOBILE
==================================================*/

@media (max-width:500px){

    .logo img{
        height:48px;
    }

    .hero h1{
        font-size:36px;
    }

    .hero h2{
        font-size:21px;
    }

    .hero-text{
        font-size:16px;
    }

    .section-heading h2{
        font-size:32px;
    }

    .quote{
        font-size:24px;
    }

    .footer-logo{
        width:70px;
    }

}
/*==================================================
TESTIMONIAL STARS
==================================================*/

.stars{

font-size:30px;

letter-spacing:8px;

color:#d4af37;

margin-bottom:30px;

}

.quote{

max-width:820px;

margin:auto;

}

.testimonial{

padding:20px;

}
/*==================================================
GLOBAL PAGE HERO
==================================================*/

.page-hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:140px 20px 80px;

    overflow:hidden;

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.page-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    rgba(12,18,22,.30),
    rgba(18,20,22,.22),
    rgba(18,20,22,.58)
    );

}

.page-hero .hero-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at 50% 18%,
    rgba(255,220,130,.12),
    transparent 60%);

}

.page-hero .hero-content{

    position:relative;

    z-index:2;

    width:100%;

    max-width:900px;

    margin:auto;

    padding:20px;

}

.page-hero .hero-label{

    font-size:15px;

    letter-spacing:8px;

    color:var(--gold-light);

    font-weight:700;

    text-transform:uppercase;

}

.page-hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(3rem,6vw,5.5rem);

    color:#fff;

    line-height:1.1;

    margin:25px 0;

}

.page-hero .hero-text{

    max-width:720px;

    margin:30px auto;

    color:#fff;

    font-size:1.3rem;

    line-height:1.9;

}