*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

:root{

    --gold:#d4af37;
    --dark:#0f0f0f;
    --light:#f5f5f5;

}

body{

    font-family:'Poppins',sans-serif;

    background:#000;

    color:white;

    overflow-x:hidden;

}

/* ================= NAVBAR ================= */

header{

    width:100%;

    padding:20px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    position:fixed;

    top:0;

    left:0;

    z-index:1000;

    background:rgba(0,0,0,0.92);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(212,175,55,0.25);

    transition:0.4s;

}
/* ================= LOGO ================= */

.logo{

    font-size:34px;

    font-family:'Cinzel',serif;

    color:#d4af37;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

/* ================= NAVIGATION ================= */

nav ul{

    display:flex;

    gap:35px;

    list-style:none;

}

nav ul li a{

    text-decoration:none;

    color:white;

    font-weight:500;

    font-size:18px;

    transition:0.4s;

    position:relative;

}

/* ================= HOVER EFFECT ================= */

nav ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:#d4af37;

    transition:0.4s;

}

nav ul li a:hover{

    color:#d4af37;

}

nav ul li a:hover::after{

    width:100%;

}
/* ================= HERO ================= */

.hero{

    min-height:100svh;

    height:auto;

    position:relative;

    overflow:hidden;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

    background-size:cover;

    background-position:center;

    animation:heroSlider 20s infinite ease-in-out;

}

.hero::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.6);

    z-index:1;

}

.hero-content{

    position:relative;

    z-index:2;

    width:90%;

    animation:fadeUp 1.5s ease;

}

.hero-content h1{

    font-size:85px;

    font-family:'Cinzel',serif;

    color:white;

    line-height:1.2;

    text-shadow:0 5px 20px rgba(0,0,0,0.5);

}

.hero-content p{

    margin-top:20px;

    font-size:22px;

    color:#f1f1f1;

}

.hero-btn{

    display:inline-block;

    margin-top:35px;

    padding:16px 45px;

    border-radius:50px;

    background:var(--gold);

    color:black;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

    transition:0.4s;

}

.hero-btn:hover{

    transform:translateY(-5px);

    background:#f5d76e;

}

/* ================= BACKGROUND SLIDER ================= */

@keyframes heroSlider{

    0%{

        background-image:
        linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
        url('https://www.parisera.com/cdn/shop/files/DSC_0372.jpg?v=1745850463&width=1946');

    }

    25%{

        background-image:
        linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
        url('https://t4.ftcdn.net/jpg/08/27/22/07/360_F_827220796_mXrTTYh7jlYoycgLZFgX4f48VzAvYtIw.jpg');

    }

    50%{

        background-image:
        linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
        url('https://i.etsystatic.com/39295592/r/il/39b13e/7953057599/il_fullxfull.7953057599_bidd.jpg');

    }

    75%{

        background-image:
        linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
        url('https://assets.ajio.com/medias/sys_master/root/20250404/uE1c/67efb4c055340d4b4faf6a54/-1117Wx1400H-701416438-wine-MODEL.jpg');

    }

    100%{

        background-image:
        linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
        url('https://www.parisera.com/cdn/shop/files/DSC_0372.jpg?v=1745850463&width=1946');

    }

}

/* ================= ANIMATIONS ================= */

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(50px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/* ================= TITLES ================= */

.section-title,
.collection-title{

    text-align:center;

    font-family:'Cinzel',serif;

    color:var(--gold);

}

.section-title{

    font-size:48px;

    margin-bottom:60px;

}

.collection-title{

    font-size:60px;

    margin-top:70px;

    margin-bottom:50px;

}

/* ================= PRODUCTS ================= */

.products{

    padding:120px 8%;

    background:#000;

}

.product-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.product-card{

    background:#111;

    border-radius:22px;

    overflow:hidden;

    transition:0.4s;

    border:1px solid rgba(212,175,55,0.2);

    box-shadow:0 10px 30px rgba(0,0,0,0.4);

}

.product-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

}

.product-card img{

    width:100%;

    height:320px;

    object-fit:cover;

}

.product-info{

    padding:22px;

}

.product-info h3{

    font-size:24px;

    color:white;

    margin-bottom:15px;

}

.price{

    font-size:34px;

    color:var(--gold);

    font-weight:700;

    margin-bottom:20px;

}

.buy-btn{

    width:100%;

    padding:15px;

    border:none;

    border-radius:12px;

    background:var(--gold);

    color:black;

    font-weight:600;

    cursor:pointer;

    transition:0.4s;

}

.buy-btn:hover{

    background:#f5d76e;

}

/* ================= SERVICES ================= */

.services{

    padding:120px 8%;

    background:#0a0a0a;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.service-card{

    background:#111;

    padding:40px;

    border-radius:22px;

    text-align:center;

    border:1px solid rgba(212,175,55,0.15);

}

.service-card i{

    font-size:55px;

    color:var(--gold);

    margin-bottom:20px;

}

/* ================= CONTACT ================= */

.contact{

    padding:120px 8%;

    background:#000;

}

.contact-box{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.contact-card{

    background:#111;

    padding:40px;

    border-radius:22px;

    text-align:center;

    text-decoration:none;

    color:white;

    border:1px solid rgba(212,175,55,0.15);

    transition:0.4s;

}

.contact-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.contact-card i{

    font-size:50px;

    color:var(--gold);

    margin-bottom:20px;

}

/* ================= FOOTER ================= */

footer{

    background:#050505;

    color:#aaa;

    text-align:center;

    padding:30px;

    border-top:1px solid rgba(212,175,55,0.15);

}

/* ================= WHATSAPP ================= */

.whatsapp{

    position:fixed;

    right:20px;
    bottom:20px;

    width:70px;
    height:70px;

    border-radius:50%;

    background:#25d366;

    display:flex;

    justify-content:center;
    align-items:center;

    color:white;

    font-size:32px;

    text-decoration:none;

    box-shadow:0 10px 30px rgba(0,0,0,0.5);

}

.details-btn{
    width: 100%;
    padding: 12px;
    margin-top: 10px;

    background: transparent;
    border: 1px solid gold;

    color: gold;
    font-weight: 600;

    border-radius: 10px;
    cursor: pointer;
}

.product-details{

    display: none;

    margin-top: 15px;

    color: white;

    line-height: 1.7;

    font-size: 15px;

}

.product-description{

    display:none;

    color:white;

    margin-top:15px;

    line-height:1.8;

    font-size:16px;

    animation:fadeIn 0.3s ease;

}
.product-card{

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

}

.product-card{

    height:fit-content;

}

@keyframes fadeIn{

    from{

        opacity:0;

        transform:translateY(-5px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ================= RESPONSIVE ================= */

/* ================= GLOBAL RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

html,
body{
    width:100%;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
}

/* ================= IMAGE FIX ================= */

img{
    width:100%;
    max-width:100%;
    height:auto;
    display:block;
}

/* ================= HEADER ================= */

header{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    position:fixed;

    top:0;

    left:0;

    z-index:1000;

    padding:20px 8%;

    background:rgba(0,0,0,0.92);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    transition:0.4s;

}

/* ================= HERO ================= */

.hero{

    min-height:100svh;

    height:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    position:relative;

    overflow:hidden;

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

/* ================= MOBILE ================= */

@media screen and (max-width:768px){

    /* HEADER */

    header{
        flex-direction:column;
        gap:15px;
        padding:15px 5%;
    }

    .logo{
        font-size:24px;
        text-align:center;
    }

    nav{
        width:100%;
    }

    nav ul{
        width:100%;
        display:flex;
        justify-content:center;
        align-items:center;
        flex-wrap:wrap;
        gap:14px;
        list-style:none;
    }

    nav ul li a{
        font-size:14px;
        text-decoration:none;
    }

    /* HERO */

    .hero{

        min-height:100svh;

        padding:150px 15px 70px;

        animation:none;

        background-image:
        linear-gradient(rgba(0,0,0,0.58),rgba(0,0,0,0.58)),
        url('https://www.parisera.com/cdn/shop/files/DSC_0372.jpg?v=1745850463&width=1946');

        background-position:center top;

    }

    .hero-content{
        width:100%;
        padding:10px;
    }

    .hero-content h1{

        font-size:clamp(30px,7vw,48px);

        line-height:1.3;

        word-break:break-word;

    }

    .hero-content p{

        font-size:14px;

        line-height:1.8;

        margin-top:15px;

    }

    .hero-btn{

        display:inline-flex;

        align-items:center;

        justify-content:center;

        width:min(100%,280px);

        text-align:center;

        padding:14px;

        margin-top:25px;

        border-radius:12px;

        text-decoration:none;

        font-size:14px;

    }

    /* TITLES */

    .section-title{
        font-size:30px;
        margin-bottom:35px;
    }

    .collection-title{
        font-size:34px;
        margin-top:45px;
        margin-bottom:30px;
    }

    /* PRODUCTS */

    .products{
        padding:70px 5%;
    }

    .product-grid{

        display:grid;

        grid-template-columns:repeat(2,minmax(0,1fr));

        gap:15px;

    }

    .product-card{

        width:100%;

        min-width:0;

        overflow:hidden;

        border-radius:18px;

    }

    .product-card img{

        width:100%;

        height:180px;

        object-fit:cover;

    }

    .product-info{
        padding:14px;
    }

    .product-info h3{

        font-size:16px;

        line-height:1.5;

        word-break:break-word;

    }

    .price{

        font-size:20px;

        margin-bottom:15px;

    }

    .buy-btn,
    .details-btn{

        width:100%;

        display:block;

        text-align:center;

        padding:12px;

        font-size:12px;

        border-radius:10px;

        text-decoration:none;

    }

    .product-info a{
        display:block;
        text-decoration:none;
    }

    .details-btn{
        margin-top:10px;
    }

    .product-description{

        font-size:13px;

        line-height:1.7;

        margin-top:12px;

        word-break:break-word;

    }

    /* SERVICES */

    .services{
        padding:70px 5%;
    }

    .service-grid{

        display:grid;

        grid-template-columns:1fr;

        gap:18px;

    }

    .service-card{

        padding:28px 18px;

        border-radius:18px;

    }

    .service-card i{
        font-size:40px;
    }

    .service-card h3{
        font-size:20px;
        margin-bottom:10px;
    }

    .service-card p{
        font-size:13px;
        line-height:1.8;
    }

    /* CONTACT */

    .contact{
        padding:70px 5%;
    }

    .contact-box{

        display:grid;

        grid-template-columns:1fr;

        gap:18px;

    }

    .contact-card{

        padding:28px 18px;

        border-radius:18px;

    }

    .contact-card i{
        font-size:38px;
        margin-bottom:12px;
    }

    .contact-card h3{
        font-size:20px;
        margin-bottom:8px;
    }

    .contact-card p{
        font-size:13px;
        line-height:1.7;
    }

    /* FOOTER */

    footer{
        padding:20px;
        font-size:12px;
        text-align:center;
    }

    /* WHATSAPP */

    .whatsapp{

        width:55px;

        height:55px;

        font-size:26px;

        right:15px;

        bottom:15px;

        z-index:1100;

    }

}

/* ================= EXTRA SMALL MOBILE ================= */

@media screen and (max-width:480px){

    header{
        padding:12px 4%;
    }

    .logo{
        font-size:22px;
    }

    nav ul{
        gap:10px;
    }

    nav ul li a{
        font-size:12px;
    }

    .hero{
        min-height:100svh;
        padding:135px 12px 60px;
    }

    .hero-content h1{
        font-size:28px;
    }

    .hero-content p{
        font-size:13px;
    }

    .section-title,
    .collection-title{
        font-size:26px;
    }

    .products,
    .services,
    .contact{
        padding:60px 4%;
    }

    .product-grid{
        grid-template-columns:1fr;
        gap:12px;
    }

    .product-card img{
        height:260px;
    }

    .product-info{
        padding:10px;
    }

    .product-info h3{
        font-size:14px;
    }

    .price{
        font-size:17px;
    }

    .buy-btn,
    .details-btn{
        padding:10px;
        font-size:11px;
    }

    .product-description{
        font-size:12px;
        line-height:1.6;
    }

    .service-card,
    .contact-card{
        padding:22px 15px;
    }

    .service-card h3,
    .contact-card h3{
        font-size:18px;
    }

    .service-card p,
    .contact-card p{
        font-size:12px;
    }

}

/* ================= VERY SMALL MOBILE ================= */

@media screen and (max-width:360px){

    .logo{
        font-size:20px;
    }

    nav ul{
        gap:8px;
    }

    nav ul li a{
        font-size:11px;
    }

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

    .hero-btn{
        width:100%;
    }

    .product-card img{
        height:220px;
    }

}
