@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f7f2ea;
    color:#111;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

h1,h2,h3{
    font-family:'Cormorant Garamond',serif;
}

/* =========================
   TOPBAR
========================= */

.topbar{
    background:#050505;
    color:#d4af6a;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;

    padding:10px 20px;

    font-size:14px;
    font-weight:500;

    text-align:center;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    background:#050505;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:16px 60px;

    position:sticky;
    top:0;
    z-index:1000;

    border-bottom:1px solid rgba(255,255,255,.08);
}

/* LOGO */

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:160px;
    height:auto;
    object-fit:contain;
}

/* NAV LINKS */

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;

    list-style:none;
}

.nav-links a{
    color:white;

    text-decoration:none;

    font-size:15px;
    font-weight:600;

    position:relative;

    transition:.3s;
}

.nav-links a::after{
    content:'';

    position:absolute;

    left:0;
    bottom:-6px;

    width:0%;
    height:2px;

    background:#d8b16c;

    transition:.4s;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-links a:hover{
    color:#d8b16c;
}

/* ICONS */

.icons{
    display:flex;
    align-items:center;
    gap:20px;

    color:white;

    font-size:22px;
}

.icons span{
    cursor:pointer;
    transition:.3s;
}

.icons span:hover{
    color:#d8b16c;
    transform:scale(1.15);
}

/* =========================
   HERO SECTION
========================= */

.hero{
    min-height:850px;

    background:
    linear-gradient(rgba(0,0,0,.78),rgba(0,0,0,.78)),
    url('./images/hero.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:60px;

    padding:80px 70px;

    position:relative;

    overflow:hidden;
}

.hero::after{
    content:'';

    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at center,
        rgba(216,177,108,.12),
        transparent 60%
    );

    animation:glow 6s infinite;
}

/* =========================
   HERO CONTENT
========================= */

.hero-content{
    max-width:580px;

    color:white;

    z-index:2;

    animation:fadeUp 1s ease;
}

.tag{
    color:#d8b16c;

    letter-spacing:3px;

    margin-bottom:18px;

    font-size:14px;

    font-weight:600;
}

.hero-content h1{
    font-size:88px;

    line-height:1;

    color:#e7c17c;

    margin-bottom:18px;
}

.hero-content h3{
    font-size:38px;

    line-height:1.4;

    font-weight:400;

    margin-bottom:35px;
}

/* FEATURES */

.features{
    display:flex;
    flex-wrap:wrap;

    gap:16px;

    margin-bottom:35px;
}

.features div{
    border:1px solid rgba(255,255,255,.15);

    background:rgba(255,255,255,.05);

    padding:14px 18px;

    border-radius:12px;

    color:#f3f3f3;

    font-size:14px;

    backdrop-filter:blur(10px);
}

/* =========================
   BUTTON
========================= */

.btn{
    display:inline-block;

    background:#d8b16c;

    color:#111;

    padding:16px 32px;

    border:none;

    border-radius:12px;

    text-decoration:none;

    font-weight:700;

    cursor:pointer;

    transition:.4s;

    position:relative;

    overflow:hidden;
}

.btn:hover{
    transform:translateY(-4px);

    box-shadow:
    0 10px 30px rgba(216,177,108,.35);
}

.btn::before{
    content:'';

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transition:.7s;
}

.btn:hover::before{
    left:100%;
}

/* =========================
   HERO PRODUCT
========================= */

.hero-product{
    text-align:center;

    color:white;

    z-index:2;
}

.shiv{
    width:340px;
    height:520px;

    border-radius:40px;

    overflow:hidden;

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;

    background:
    linear-gradient(
        180deg,
        rgba(255,210,120,.15),
        rgba(255,120,0,.08)
    );

    border:1px solid rgba(255,255,255,.15);

    box-shadow:
    0 30px 80px rgba(255,120,0,.28);

    animation:
    floatBottle 4s ease-in-out infinite;
}

.shiv::before{
    content:'';

    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top,
        rgba(255,255,255,.2),
        transparent 60%
    );
}

.shiv img{
    width:82%;
    height:auto;

    object-fit:contain;

    position:relative;
    z-index:2;

    filter:
    drop-shadow(0 25px 35px rgba(0,0,0,.35));
}

.hero-product h2{
    font-size:58px;

    color:#e7c17c;

    margin-top:25px;
}

.hero-product p{
    letter-spacing:4px;

    margin:10px 0;
}

.hero-product h1{
    font-size:65px;

    margin:10px 0 20px;
}

/* =========================
   HIGHLIGHTS
========================= */

.highlights{
    background:#111;

    color:#d8b16c;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    padding:35px 70px;
}

.highlight{
    text-align:center;

    font-weight:600;

    padding:10px;

    border-right:1px solid rgba(255,255,255,.08);

    transition:.4s;
}

.highlight:last-child{
    border-right:none;
}

.highlight:hover{
    color:white;
    transform:translateY(-5px);
}

/* =========================
   PRODUCTS
========================= */

.products{
    padding:100px 70px;
}

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:30px;

    margin-bottom:60px;
}

.section-head p{
    color:#b8914d;

    margin-bottom:10px;

    font-weight:600;
}

.section-head h2{
    font-size:58px;
}

.product-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;
}

/* CARD */

.card{
    background:white;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
    0 10px 25px rgba(0,0,0,.06);

    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.12);
}

.product-image{
    height:340px;

    background:#f4ebdf;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;

    object-fit:contain;

    padding:20px;

    transition:.5s;
}

.card:hover .product-image img{
    transform:scale(1.05);
}

.card-content{
    padding:28px;
}

.card h3{
    font-size:36px;

    margin-bottom:12px;
}

.card p{
    color:#555;

    line-height:1.7;

    margin-bottom:18px;
}

.price{
    display:block;

    font-size:40px;

    font-weight:700;

    margin-bottom:22px;
}

/* =========================
   STORY
========================= */

.story{
    padding:0 70px 100px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;
}

.story h2{
    font-size:62px;

    margin:15px 0;
}

.story .desc{
    color:#555;

    line-height:1.9;

    margin-bottom:30px;
}

.story-icons{
    display:flex;
    flex-wrap:wrap;

    gap:16px;

    margin-bottom:30px;
}

.story-icons div{
    background:white;

    padding:14px 18px;

    border-radius:12px;

    box-shadow:
    0 5px 15px rgba(0,0,0,.05);
}

.story-image{
    min-height:450px;

    background:
    linear-gradient(rgba(0,0,0,.15),rgba(0,0,0,.15)),
    url('./images/story.jpg');

    background-size:cover;
    background-position:center;

    border-radius:28px;

    position:relative;

    overflow:hidden;
}

.story-card{
    position:absolute;

    left:30px;
    bottom:30px;

    background:white;

    padding:28px;

    border-radius:20px;

    max-width:330px;
}

.story-card h3{
    font-size:34px;

    margin-bottom:10px;
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#111;

    color:#d8b16c;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    text-align:center;

    padding:40px 70px;

    font-weight:600;
}

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float{
    position:fixed;

    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    background:#25D366;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:9999;

    box-shadow:
    0 0 10px #25D366,
    0 0 25px rgba(37,211,102,.7);

    animation:glowPulse 2s infinite;
}

.whatsapp-float img{
    width:34px;
    height:34px;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes floatBottle{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes glow{

    0%{
        box-shadow:0 0 0 rgba(216,177,108,0);
    }

    50%{
        box-shadow:0 0 35px rgba(216,177,108,.5);
    }

    100%{
        box-shadow:0 0 0 rgba(216,177,108,0);
    }

}

@keyframes glowPulse{

    0%{
        box-shadow:
        0 0 10px #25D366,
        0 0 20px #25D366;
    }

    50%{
        box-shadow:
        0 0 20px #25D366,
        0 0 40px #25D366;
    }

    100%{
        box-shadow:
        0 0 10px #25D366,
        0 0 20px #25D366;
    }

}

/* =========================
   TABLET
========================= */

@media(max-width:1000px){

    .navbar{
        flex-direction:column;
        gap:20px;

        padding:20px;
    }

    .hero{
        flex-direction:column;

        text-align:center;

        padding:80px 30px;

        gap:60px;
    }

    .product-grid,
    .story,
    .highlights,
    .footer{
        grid-template-columns:1fr;
    }

    .section-head{
        flex-direction:column;
        align-items:flex-start;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .topbar{
        flex-direction:column;
        gap:8px;

        font-size:12px;
    }

    .navbar{
        padding:16px 20px;
    }

    .logo img{
        width:120px;
    }

    .nav-links{
        gap:18px;

        flex-wrap:wrap;

        justify-content:center;
    }

    .hero{
        padding:60px 20px;

        min-height:auto;
    }

    .hero-content h1{
        font-size:54px;
    }

    .hero-content h3{
        font-size:28px;
    }

    .features{
        justify-content:center;
    }

    .shiv{
        width:240px;
        height:360px;
    }

    .hero-product h2{
        font-size:44px;
    }

    .hero-product h1{
        font-size:52px;
    }

    .products{
        padding:70px 20px;
    }

    .section-head h2{
        font-size:42px;
    }

    .story{
        padding:40px 20px 70px;
    }

    .story h2{
        font-size:44px;
    }

    .footer{
        padding:30px 20px;
    }

    .btn{
        width:100%;
        text-align:center;
    }

    .whatsapp-float{
        width:58px;
        height:58px;

        right:18px;
        bottom:18px;
    }

    .whatsapp-float img{
        width:30px;
        height:30px;
    }

}