:root{

    --cream:#f4f1eb;
    --light:#faf8f5;
    --sage:#9ca38d;
    --sage-dark:#7f876f;
    --text:#222222;
    --muted:#666666;
    --white:#ffffff;
    --border:#e7e3dc;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Manrope',sans-serif;
    background:var(--cream);
    color:var(--text);
    overflow-x:hidden;
    line-height:1.7;

}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/* ==========================
   NAVIGATION
========================== */

.luxury-nav{

    position:absolute;
    top:25px;
    left:50%;
    transform:translateX(-50%);

    width:90%;
    z-index:999;

    border-radius:22px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);

    border:1px solid rgba(255,255,255,.2);

    padding:10px 25px;

}

.logo{

    font-family:'Cormorant Garamond',serif;
    font-size:2rem;
    font-weight:600;
    color:#fff !important;

}

.navbar-nav{

    gap:15px;

}

.nav-link{

    color:#fff !important;
    font-size:14px;
    font-weight:500;
    transition:.3s;

}

.nav-link:hover{

    opacity:.7;

}

.cart-btn{

    color:#fff;
    border:1px solid rgba(255,255,255,.3);
    padding:10px 18px;
    border-radius:40px;
    font-size:14px;

}

/* ==========================
   HERO
========================== */

.hero{

    height:100vh;
    position:relative;
    overflow:hidden;

}

.hero-image{

    width:100%;
    height:100%;
    object-fit:cover;

}

.hero-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
    rgba(0,0,0,.05),
    rgba(0,0,0,.15)
    );

}

.hero-content{

    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:center;

}

.hero-subtitle{

    color:white;
    letter-spacing:4px;
    font-size:13px;
    margin-bottom:80px;

}

.hero-title{

    font-family:'Cormorant Garamond',serif;

    font-size:35vw;
    line-height:.8;
    color:white;
    font-weight:300;
    letter-spacing:-10px;
    margin-bottom:-40px;

}

/* ==========================
   COMMON
========================== */

.section-title{

    font-family:'Cormorant Garamond',serif;

    font-size:4rem;
    line-height:1;

    font-weight:400;

    margin-bottom:25px;

}

.section-text{

    color:var(--muted);

    font-size:16px;

    max-width:500px;

    margin-bottom:35px;

}

.luxury-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:15px 35px;

    border-radius:50px;

    background:var(--sage);

    color:white;

    transition:.4s;

}

.luxury-btn:hover{

    background:var(--sage-dark);
    color:white;

    transform:translateY(-3px);

}

/* ==========================
   INTRO
========================== */

.intro-section{

    padding:140px 0;

    background:var(--light);

}

.product-jar{

    max-width:600px;
    margin:auto;

    transition:.5s;

}

.product-jar:hover{

    transform:translateY(-10px);

}

/* ==========================
   PRODUCTS
========================== */

.products-section{

    padding:120px 0;

}

.product-card{

    overflow:hidden;

    border-radius:6px;

}

.product-card img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;

}

.product-card:hover img{

    transform:scale(1.05);

}

.product-copy{

    padding:20px;

}

.product-copy h2{

    font-family:'Cormorant Garamond',serif;

    font-size:4rem;
    line-height:1;

    margin-bottom:20px;

}

.product-copy p{

    color:var(--muted);

}

/* ==========================
   COMPLEX SECTION
========================== */

.complex-section{

    position:relative;

    padding:180px 0;

    background:var(--light);

    overflow:hidden;

}

.background-word{

    position:absolute;

    left:-30px;
    bottom:-120px;

    font-family:'Cormorant Garamond',serif;

    font-size:35rem;

    line-height:1;

    color:#d7d7cf;

    opacity:.5;

    pointer-events:none;

}

.feature-image{

    border-radius:8px;

    transition:.5s;

}

.feature-image:hover{

    transform:scale(1.02);

}

/* ==========================
   GALLERY
========================== */

.gallery-section{

    padding:120px 0;

}

.gallery-item{

    overflow:hidden;

    border-radius:8px;

}

.gallery-item img{

    width:100%;
    height:500px;

    object-fit:cover;

    transition:.6s;

}

.gallery-item:hover img{

    transform:scale(1.06);

}


.all-in-one-section{
    background:#f4f2ed;
    padding:120px 0;
    overflow:hidden;
    position:relative;
}

.main-title{
    font-size:3.4rem;
    line-height:0.95;
    font-weight:600;
    color:#2b2b2b;
    margin-bottom:15px;
}

.main-desc{
    max-width:320px;
    color:#6b6b6b;
    font-size:14px;
    line-height:1.7;
}

.bg-text{
    position:absolute;
    left:-10px;
    top:100px;

    font-size:20vw;
    line-height:0.8;
    font-weight:300;

    color:#bcc1b0;

    z-index:1;
    pointer-events:none;
}

.top-image{
    position:relative;
    z-index:2;

    max-width:420px;

    margin-left:auto;
    margin-right:auto;

    transition:.4s;
}

.bottom-image{
    position:relative;
    z-index:2;

    max-width:420px;

    margin-top:-40px;

    transition:.4s;
}

.top-image:hover,
.bottom-image:hover{
    transform:translateY(-8px);
}

.bottom-desc{
    position:relative;
    z-index:2;

    color:#666;
    font-size:14px;
    line-height:1.8;

    margin-bottom:0;
}

@media (max-width:991px){

    .all-in-one-section{
        padding:80px 0;
    }

    .main-title{
        font-size:2.5rem;
    }

    .bg-text{
        font-size:30vw;
        top:180px;
    }

    .top-image{
        margin-top:30px;
    }

    .bottom-image{
        margin-top:30px;
    }

    .bottom-desc{
        margin-top:30px;
    }
}

/* ==========================
   NEWSLETTER
========================== */

.newsletter{

    padding:140px 0;

    background:#ebe7df;

}

.small-label{

    display:block;

    letter-spacing:4px;

    font-size:12px;

    margin-bottom:20px;

    color:var(--sage);

}

.h2{

    font-family:'Cormorant Garamond',serif;

    font-size:5rem;

    margin-bottom:20px;

}

.newsletter p{

    max-width:650px;
    margin:auto;

    color:var(--muted);

}

.newsletter-form{

    margin-top:40px;

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}

.newsletter-form input{

    width:400px;

    border:none;

    padding:16px 25px;

    border-radius:50px;

    outline:none;

}

.newsletter-form button{

    border:none;

    background:var(--sage);

    color:white;

    padding:16px 30px;

    border-radius:50px;

    transition:.3s;

}

.newsletter-form button:hover{

    background:var(--sage-dark);

}

/* ==========================
   FOOTER
========================== */

footer{

    background:#f8f6f3;

    padding:100px 0 30px;

}

.footer-logo{

    font-family:'Cormorant Garamond',serif;

    font-size:4rem;

}

footer h6{

    margin-bottom:20px;

    font-weight:700;

}

footer ul{

    padding:0;

    list-style:none;

}

footer li{

    margin-bottom:10px;

}

footer a{

    color:var(--muted);

}

footer a:hover{

    color:var(--sage);

}

.footer-bottom{

    border-top:1px solid var(--border);

    margin-top:50px;

    padding-top:25px;

    text-align:center;

    color:var(--muted);

    font-size:14px;

}

/* ==========================
   SCROLLBAR
========================== */

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-thumb{

    background:var(--sage);

    border-radius:10px;

}

/* ==========================
   ANIMATIONS
========================== */

.hero-title{

    animation:fadeUp 1.2s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(60px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.product-img{
    transition:all .5s ease;
}

.product-img:hover{
    transform:scale(1.05);
}

@media(max-width:768px){

    .product-img{
        width:100%;
    }

}


/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1200px){

    .hero-title{

        font-size:30vw;

    }

}

@media(max-width:991px){

    .section-title{

        font-size:3rem;

    }

    .product-copy h2{

        font-size:3rem;

    }

    .newsletter h2{

        font-size:3.5rem;

    }

    .background-word{

        font-size:16rem;

    }

    .hero-title{

        font-size:30vw;
        letter-spacing:-5px;

    }

    .luxury-nav{

        width:95%;

    }

}

@media(max-width:768px){

    .hero{

        height:90vh;

    }

    .hero-title{

        font-size:10vw;

    }

    .section-title{

        font-size:2.5rem;

    }

    .product-copy h2{

        font-size:2.5rem;

    }

    .newsletter h2{

        font-size:2.7rem;

    }

    .background-word{

        display:none;

    }

    .intro-section,
    .products-section,
    .complex-section,
    .gallery-section,
    .newsletter{

        padding:80px 0;

    }

    .gallery-item img{

        height:350px;

    }

}

@media(max-width:576px){

    .hero-subtitle{

        font-size:11px;

    }

    .section-title{

        font-size:2rem;

    }

    .newsletter-form input{

        width:100%;

    }

    .newsletter-form button{

        width:100%;

    }

}


