/*==========================================================
    VAASTUSHALA WEBSITE
    Version : 1.0
    Author  : Amit Nanda
==========================================================*/

/*==============================
RESET
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#FDFBF7;
    color:#333333;
    line-height:1.7;
    overflow-x:hidden;

}

img{
    display:block;
    max-width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/*==============================
CONTAINER
==============================*/

.container{

    width:90%;
    max-width:1280px;
    margin:auto;

}

/*==============================
COLORS

Primary Gold  : #C88A2B
Dark Brown    : #4A2E1F
Cream         : #FDFBF7
Soft Beige    : #F6EFE3
Text          : #333333

==============================*/


/*==============================
BUTTONS
==============================*/

.btn-primary{

    display:inline-block;

    padding:15px 34px;

    background:#C88A2B;

    color:#fff;

    border-radius:50px;

    transition:.35s;

    font-weight:600;

}

.btn-primary:hover{

    background:#aa741f;

    transform:translateY(-3px);

}

.btn-secondary{

    display:inline-block;

    padding:15px 34px;

    border:2px solid #C88A2B;

    color:#C88A2B;

    border-radius:50px;

    transition:.35s;

}

.btn-secondary:hover{

    background:#C88A2B;

    color:#fff;

}

/*==============================
HEADER
==============================*/

.header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    background:rgba(253,251,247,.92);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(0,0,0,.05);

    z-index:999;

}

.nav-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:95px;

}

.logo img{

    height:62px;

}

.navbar ul{

    display:flex;

    gap:42px;

}

.navbar a{

    color:#333;

    font-weight:500;

    transition:.3s;

}

.navbar a:hover{

    color:#C88A2B;

}

/*==============================
HERO
==============================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:100px;

    background:linear-gradient(135deg,#FDFBF7,#F6EFE3);

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.hero-tag{

    display:inline-block;

    color:#C88A2B;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:25px;

    font-size:15px;

}

.hero h1{

    font-family:'Cinzel',serif;

    font-size:68px;

    line-height:1.15;

    color:#4A2E1F;

    margin-bottom:28px;

}

.hero h1 span{

    color:#C88A2B;

}

.hero p{

    font-size:20px;

    color:#555;

    margin-bottom:45px;

    max-width:600px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.hero-image{

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:100%;

    max-width:720px;

    animation:floatImage 6s ease-in-out infinite;

    filter:drop-shadow(0 25px 35px rgba(0,0,0,.15));

}

/*==============================
ANIMATION
==============================*/

@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}
/*==========================================================
    ABOUT SECTION
==========================================================*/

.about{

    padding:120px 0;

    background:#ffffff;

}

.about-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:80px;

    align-items:center;

}

.section-tag{

    display:inline-block;

    color:#C88A2B;

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.about h2{

    font-family:'Cinzel', serif;

    font-size:48px;

    line-height:1.25;

    color:#4A2E1F;

    margin-bottom:30px;

}

.about p{

    font-size:18px;

    color:#555;

    margin-bottom:40px;

    max-width:650px;

}

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px 30px;

    margin-bottom:45px;

}

.about-features div{

    position:relative;

    padding-left:22px;

    font-weight:500;

    color:#333;

}

.about-features div::before{

    content:"";

    position:absolute;

    left:0;

    top:11px;

    width:10px;

    height:2px;

    background:#C88A2B;

}

.about-image{

    display:flex;

    justify-content:center;

}

.about-image img{

    width:100%;

    max-width:500px;

    border-radius:24px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    transition:.4s;

}

.about-image img:hover{

    transform:translateY(-8px);

}
/*==========================================================
    CONNECTED PLATFORMS
==========================================================*/

.platforms{

    padding:120px 0;

    background:#F6EFE3;

}

.section-heading{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-heading h2{

    font-family:'Cinzel',serif;

    font-size:46px;

    color:#4A2E1F;

    margin:20px 0;

}

.section-heading p{

    font-size:18px;

    color:#666;

}

.platform-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.platform-card{

    background:#ffffff;

    padding:45px;

    border-radius:22px;

    border-top:5px solid #C88A2B;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

    transition:.35s;

    display:flex;

    flex-direction:column;

}

.platform-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 55px rgba(0,0,0,.10);

}

.platform-card h3{

    font-family:'Cinzel',serif;

    font-size:30px;

    color:#4A2E1F;

    margin-bottom:12px;

}

.platform-card h4{

    color:#C88A2B;

    font-size:15px;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:22px;

}

.platform-card p{

    color:#666;

    font-size:17px;

    line-height:1.8;

    flex:1;

}

.platform-link{

    margin-top:35px;

    color:#4A2E1F;

    font-weight:600;

    transition:.3s;

}

.platform-link:hover{

    color:#C88A2B;

}
/*==========================================================
    WHY VAASTUSHALA
==========================================================*/

.why{

    padding:120px 0;

    background:#ffffff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:70px;

}

.why-card{

    background:#FDFBF7;

    padding:40px;

    border-radius:20px;

    border-left:5px solid #C88A2B;

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.why-card h3{

    font-family:'Cinzel',serif;

    color:#4A2E1F;

    font-size:28px;

    margin-bottom:18px;

}

.why-card p{

    color:#666;

    line-height:1.8;

}
/*==========================================================
    FEATURED PUBLICATIONS
==========================================================*/

.books{

    padding:120px 0;

    background:#FDFBF7;

}

.books-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

    margin-top:70px;

}

.book-card{

    background:#ffffff;

    padding:45px;

    border-radius:24px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    position:relative;

    transition:.35s;

    display:flex;

    flex-direction:column;

}

.book-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.book-badge{

    display:inline-block;

    align-self:flex-start;

    padding:8px 16px;

    background:#C88A2B;

    color:#fff;

    font-size:12px;

    font-weight:600;

    border-radius:30px;

    letter-spacing:1px;

    margin-bottom:25px;

}

.book-badge.coming{

    background:#666666;

}

.book-card h3{

    font-family:'Cinzel',serif;

    font-size:32px;

    color:#4A2E1F;

    margin-bottom:8px;

}

.book-card h4{

    color:#C88A2B;

    font-size:22px;

    margin-bottom:25px;

    font-weight:600;

}

.book-card p{

    color:#666;

    font-size:17px;

    line-height:1.8;

    flex:1;

    margin-bottom:35px;

}
/*==========================================================
    PODCAST
==========================================================*/

.podcast{

    padding:120px 0;

    background:#ffffff;

}

.podcast-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.podcast h2{

    font-family:'Cinzel',serif;

    font-size:48px;

    color:#4A2E1F;

    margin:20px 0;

}

.podcast p{

    font-size:18px;

    color:#666;

    line-height:1.8;

}

.podcast-status{

    display:flex;

    align-items:center;

    gap:12px;

    margin:35px 0;

    font-weight:600;

    color:#4A2E1F;

}

.status-dot{

    width:12px;

    height:12px;

    background:#27ae60;

    border-radius:50%;

    animation:pulse 2s infinite;

}

.podcast-card{

    background:#FDFBF7;

    padding:60px;

    border-radius:24px;

    text-align:center;

    border-top:5px solid #C88A2B;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.podcast-icon{

    font-size:70px;

    margin-bottom:25px;

}

.podcast-card h3{

    font-family:'Cinzel',serif;

    color:#4A2E1F;

    font-size:34px;

    margin-bottom:25px;

}

@keyframes pulse{

    0%{

        opacity:1;

    }

    50%{

        opacity:.3;

    }

    100%{

        opacity:1;

    }

}
/*==========================================================
    VAASTU ESSENTIALS
==========================================================*/

.essentials{

    padding:120px 0;

    background:#F6EFE3;

}

.essential-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin:70px 0;

}

.essential-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    transition:.35s;

}

.essential-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.essential-card h3{

    font-family:'Cinzel',serif;

    color:#4A2E1F;

    margin-bottom:18px;

}

.coming-soon{

    text-align:center;

    max-width:760px;

    margin:auto;

}

.coming-soon h3{

    font-family:'Cinzel',serif;

    color:#4A2E1F;

    font-size:36px;

    margin-bottom:20px;

}

.coming-soon p{

    color:#666;

    margin-bottom:35px;

}
/*==========================================================
    EXPERIENCE CENTRES
==========================================================*/

.centres{

    padding:120px 0;

    background:#ffffff;

}

.centre-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

    margin-top:70px;

}

.centre-card{

    background:#FDFBF7;

    padding:45px;

    border-radius:24px;

    border-top:5px solid #C88A2B;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.centre-card h3{

    font-family:'Cinzel',serif;

    color:#4A2E1F;

    margin-bottom:20px;

}

.centre-card p{

    color:#555;

    margin-bottom:25px;

    line-height:1.9;

}

.centre-card ul{

    margin-bottom:35px;

}

.centre-card li{

    margin-bottom:12px;

    color:#666;

}

.centre-buttons{

    display:flex;

    gap:15px;

}
/*==========================================================
    CALL TO ACTION
==========================================================*/

.cta{

    padding:120px 0;

    background:#F6EFE3;

}

.cta-box{

    background:#ffffff;

    padding:80px;

    border-radius:30px;

    text-align:center;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.cta-box h2{

    font-family:'Cinzel',serif;

    font-size:54px;

    color:#4A2E1F;

    margin:25px 0;

}

.cta-box p{

    max-width:760px;

    margin:auto;

    font-size:19px;

    color:#666;

    line-height:1.9;

}

.cta-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

}
/*==========================================================
    CONTACT
==========================================================*/

.contact{

    padding:120px 0;

    background:#FDFBF7;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    margin-top:70px;

}

.contact-item{

    margin-bottom:35px;

}

.contact-item h3{

    font-family:'Cinzel',serif;

    color:#4A2E1F;

    margin-bottom:10px;

}

.contact-item a{

    color:#333;

    font-size:18px;

}

.contact-actions{

    display:flex;

    gap:20px;

    margin-top:40px;

}

.contact-form{

    background:#ffffff;

    padding:45px;

    border-radius:24px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,

.contact-form textarea{

    padding:18px 22px;

    border:1px solid #ddd;

    border-radius:14px;

    font-family:'Poppins',sans-serif;

    font-size:16px;

    outline:none;

    transition:.3s;

}

.contact-form input:focus,

.contact-form textarea:focus{

    border-color:#C88A2B;

}