/* =====================================
   SOUL SATTVAA ESSENTIALS V8
===================================== */

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#faf8f2;
    color:#333;
    line-height:1.7;
    overflow-x:hidden;
}

/* VARIABLES */

:root{

    --gold:#c7a24b;
    --dark:#143d33;
    --cream:#faf8f2;
    --white:#ffffff;

    --shadow:
    0 10px 25px rgba(0,0,0,0.08);

}

/* CONTAINER */

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/* =========================
HEADER
========================= */

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    background:rgba(255,255,255,0.97);

    z-index:1000;

    box-shadow:
    0 2px 15px rgba(0,0,0,0.08);

}

.header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

    min-height:85px;

}

.logo-link{

    text-decoration:none;

}

.header-logo{

    width:90px;
    height:auto;
    display:block;

}

/* =========================
NAVIGATION
========================= */

.nav-menu{

    display:flex;
    gap:30px;

    list-style:none;

}

.nav-menu li{

    list-style:none;

}

.nav-menu a{

    text-decoration:none;
    color:#222;

    font-weight:500;

    transition:.3s;

}

.nav-menu a:hover{

    color:var(--gold);

}

/* HAMBURGER */

.hamburger{

    display:none;

    flex-direction:column;

    gap:5px;

    cursor:pointer;

}

.hamburger span{

    width:28px;
    height:3px;

    background:#222;

    border-radius:3px;

}

/* =========================
HERO
========================= */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

}

.hero-slider{

    position:absolute;

    width:100%;
    height:100%;

    top:0;
    left:0;

}

.slide{

    position:absolute;

    width:100%;
    height:100%;

    opacity:0;

    transition:opacity 1.5s ease;

}

.slide.active{

    opacity:1;

}

.slide img{

    width:100%;
    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    width:100%;
    height:100%;

    background:
    rgba(0,0,0,0.45);

}

.hero-content{

    position:relative;

    z-index:2;

    text-align:center;

    color:white;

    max-width:900px;

    padding:20px;

}

.hero-logo{

    width:260px;
    max-width:80%;

    margin-bottom:25px;

}

.hero-content h1{

    font-family:
    'Cormorant Garamond',serif;

    font-size:4.5rem;

    line-height:1.1;

    margin-bottom:20px;

    text-shadow:
    0 3px 12px rgba(0,0,0,.35);

}

.hero-content p{

    font-size:1.15rem;

    max-width:700px;

    margin:auto;

    margin-bottom:35px;

}

/* =========================
BUTTONS
========================= */

.hero-btn{

    display:inline-block;

    padding:14px 35px;

    border-radius:40px;

    background:var(--gold);

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.hero-btn:hover{

    transform:translateY(-3px);

}

/* =========================
SECTIONS
========================= */

.section{

    padding:100px 0;

}

.alt-section{

    background:white;

}

.section-heading{

    text-align:center;

    margin-bottom:60px;

}

.section-heading h2{

    font-family:
    'Cormorant Garamond',serif;

    font-size:3rem;

    color:var(--dark);

    margin-bottom:15px;

}

.section-heading p{

    max-width:900px;

    margin:auto;

}

/* =========================
ABOUT
========================= */

#about .section-heading p{

    font-size:1.05rem;

}

/* =========================
TIMELINE
========================= */

.timeline{

    max-width:900px;

    margin:auto;

}

.timeline-item{

    display:flex;

    gap:25px;

    margin-bottom:25px;

    background:white;

    padding:25px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.year{

    min-width:90px;

    height:90px;

    border-radius:50%;

    background:var(--gold);

    color:white;

    font-weight:700;

    display:flex;

    justify-content:center;
    align-items:center;

}

.timeline-content h3{

    color:var(--dark);

    margin-bottom:10px;

}

/* =========================
BRANDS
========================= */

.brands-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.brand-card{

    background:white;

    padding:35px;

    border-radius:25px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.3s;

}

.brand-card:hover{

    transform:translateY(-8px);

}

.brand-card h3{

    color:var(--dark);

    font-size:2rem;

    margin-bottom:10px;

}

.brand-card h4{

    color:var(--gold);

    margin-bottom:15px;

}
/* =========================
CAKE COLLECTION
========================= */

.cake-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.cake-order-btn{

    text-align:center;

    margin-top:50px;

}

/* =========================
FLIP CARDS
========================= */

.flip-card{

    background:transparent;

    height:420px;

    perspective:1000px;

}

.flip-card-inner{

    position:relative;

    width:100%;
    height:100%;

    transition:transform 0.8s;

    transform-style:preserve-3d;

}

.flip-card:hover .flip-card-inner{

    transform:rotateY(180deg);

}

.flip-card-front,
.flip-card-back{

    position:absolute;

    width:100%;
    height:100%;

    border-radius:20px;

    overflow:hidden;

    backface-visibility:hidden;

    box-shadow:var(--shadow);

}

.flip-card-front{

    background:white;

}

.flip-card-front img{

    width:100%;
    height:320px;

    object-fit:cover;

    display:block;

}

.flip-card-front h3{

    text-align:center;

    padding:15px;

    font-size:1rem;

    color:var(--dark);

}

.flip-card-back{

    background:
    linear-gradient(
        135deg,
        var(--dark),
        #1f5a4a
    );

    color:white;

    transform:rotateY(180deg);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:25px;

}

.flip-card-back h3{

    margin-bottom:15px;

}

.flip-card-back p{

    font-size:0.95rem;

}

/* Mobile Tap Flip */

.mobile-flip{

    transform:rotateY(180deg) !important;

}

/* =========================
WOMEN'S COLLECTIVE
========================= */

.collective-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.collective-card{

    background:white;

    padding:35px;

    border-radius:25px;

    box-shadow:var(--shadow);

    transition:.3s;

}

.collective-card:hover{

    transform:translateY(-6px);

}

.collective-card h3{

    color:var(--dark);

    margin-bottom:10px;

}

.collective-card h4{

    color:var(--gold);

    margin-bottom:15px;

}

/* =========================
FEATURES
========================= */

.features-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:20px;

}

.feature-box{

    background:white;

    padding:25px;

    border-radius:15px;

    text-align:center;

    box-shadow:var(--shadow);

    font-weight:600;

}

/* =========================
OUR STORY
========================= */

.story-box{

    max-width:900px;

    margin:auto;

    background:white;

    padding:40px;

    border-radius:25px;

    box-shadow:var(--shadow);

    text-align:center;

}

.story-box p{

    margin-bottom:20px;

}

/* =========================
CONTACT
========================= */

.contact-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

}

.contact-card{

    background:white;

    padding:30px;

    text-align:center;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.contact-card h3{

    color:var(--dark);

    margin-bottom:10px;

}

/* =========================
FOOTER
========================= */

.footer{

    background:#111;

    color:white;

    text-align:center;

    padding:70px 20px;

}

.footer-logo{

    width:140px;

    margin-bottom:20px;

}

.footer h3{

    margin-bottom:10px;

}

.footer p{

    margin-bottom:10px;

}

.copyright{

    color:#999;

    margin-top:25px;

}

/* =========================
WHATSAPP BUTTON
========================= */

.whatsapp-float{

    position:fixed;

    right:20px;
    bottom:20px;

    background:#25D366;

    color:white;

    text-decoration:none;

    padding:15px 22px;

    border-radius:50px;

    font-weight:600;

    z-index:9999;

    box-shadow:
    0 5px 20px rgba(0,0,0,.25);

}

.whatsapp-float:hover{

    transform:translateY(-3px);

}

/* =========================
MOBILE
========================= */

@media(max-width:900px){

    .hero-content h1{

        font-size:3rem;

    }

}

@media(max-width:768px){

    /* Navigation */

    .hamburger{

        display:flex;

    }

    .nav-menu{

        position:absolute;

        top:85px;
        left:0;

        width:100%;

        background:white;

        flex-direction:column;

        text-align:center;

        padding:20px;

        display:none;

        box-shadow:
        0 5px 20px rgba(0,0,0,.08);

    }

    .nav-menu.active{

        display:flex;

    }

    /* Hero */

    .hero-logo{

        width:180px;

    }

    .hero-content h1{

        font-size:2.3rem;

    }

    .hero-content p{

        font-size:1rem;

    }

    /* Section Headings */

    .section-heading h2{

        font-size:2.2rem;

    }

    /* Timeline */

    .timeline-item{

        flex-direction:column;

        text-align:center;

        align-items:center;

    }

    /* Flip Cards */

    .flip-card{

        height:390px;

    }

    .flip-card-front img{

        height:280px;

    }

    /* Footer */

    .footer-logo{

        width:110px;

    }

    .whatsapp-float{

        right:15px;
        bottom:15px;

        padding:12px 18px;

    }

}