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

html{
    scroll-behavior:smooth;
}

body{
    background:#000;
    color:#fff;
    font-family:'Poppins', sans-serif;
    overflow-x:hidden;
}

h1,h2,h3,h4{
    font-family:'Cinzel', serif;
    font-weight:600;
}

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 60px;
    background:rgba(0,0,0,0.94);
    border-bottom:1px solid #b58a3f;
    z-index:1000;
}

.logo h1{
    color:#d2a45b;
    line-height:1;
    font-size:22px;
}

.logo span{
    font-size:40px;
}

.logo p{
    color:#c8a15a;
    font-size:10px;
    margin-top:4px;
    letter-spacing:1px;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:#fff;
    font-size:14px;
    transition:0.3s;
}

nav a:hover{
    color:#d2a45b;
}

.menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.menu-toggle span{
    width:28px;
    height:3px;
    background:#d2a45b;
    border-radius:10px;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.nav-right i{
    color:#d2a45b;
    cursor:pointer;
}

.nav-right button,
.hero button,
.story button,
.product-card button,
.contact-form button{
    background:transparent;
    border:1px solid #b58a3f;
    color:#d2a45b;
    padding:12px 28px;
    cursor:pointer;
    transition:0.3s;
}

.nav-right button:hover,
.hero button:hover,
.story button:hover,
.product-card button:hover,
.contact-form button:hover{
    background:#b58a3f;
    color:#000;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:140px 80px 80px;
    background:url('images/hero-background.jpg') center/cover no-repeat;
    position:relative;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
}

.hero-content,
.hero-bottle{
    position:relative;
    z-index:2;
}

.hero-content h2{
    color:#d2a45b;
    font-size:50px;
    letter-spacing:6px;
}

.hero-content h1{
    font-size:120px;
    color:#d2a45b;
    line-height:1;
}

.hero-content p{
    letter-spacing:5px;
    margin:20px 0;
    color:#f0d6a3;
}

.line{
    width:220px;
    height:1px;
    background:#b58a3f;
    margin:30px 0;
}

.hero-bottle img{
    width:340px;
    border-radius:20px;
    filter:drop-shadow(0 0 25px rgba(0,0,0,0.8));
}

.story,
.collection,
.craftsmanship,
.contact{
    padding:100px 80px;
    border-top:1px solid #7a5a22;
}

.story{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
    background:#050505;
}

.story-image img{
    width:100%;
    border-radius:20px;
}

.story-text h2,
.collection h2,
.craftsmanship h2,
.contact h2{
    color:#d2a45b;
    font-size:48px;
    margin-bottom:20px;
}

.gold-line{
    width:120px;
    height:1px;
    background:#b58a3f;
    margin-bottom:30px;
}

.story-text p{
    margin-bottom:18px;
    line-height:1.8;
    color:#ddd;
}

.collection{
    text-align:center;
}

.collection-grid{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.product-card,
.package-card{
    border:1px solid #7a5a22;
    border-radius:16px;
    padding:30px;
    background:#0b0b0b;
}

.product-card img{
    width:170px;
    height:260px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:20px;
}

.product-card h3,
.package-card h3{
    color:#d2a45b;
    margin-bottom:15px;
}

.product-card p{
    color:#c9c9c9;
    margin-bottom:20px;
    line-height:1.7;
}

.product-card h4{
    color:#d2a45b;
    font-size:34px;
    margin-bottom:20px;
}

.package-row{
    border:1px solid #7a5a22;
    padding:20px;
    margin-top:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.package-row h4{
    color:#d2a45b;
    margin-bottom:5px;
}

.package-row p{
    color:#bbb;
}

.package-row span{
    color:#d2a45b;
    font-size:30px;
    font-family:'Cinzel', serif;
}

.package-footer{
    background:#b58a3f;
    color:#000;
    padding:15px;
    margin-top:20px;
    font-weight:600;
}

.craftsmanship{
    text-align:center;
}

.craft-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:50px;
}

.craft-card{
    padding:20px;
}

.craft-card i{
    font-size:42px;
    color:#d2a45b;
    margin-bottom:20px;
}

.craft-card h3{
    color:#d2a45b;
    margin-bottom:15px;
    font-size:18px;
}

.craft-card p{
    color:#ccc;
    line-height:1.7;
}

.contact{
    display:grid;
    grid-template-columns:1fr 1.2fr 1fr;
    gap:40px;
    align-items:start;
}

.contact-info p{
    margin-bottom:20px;
    color:#ddd;
}

.contact-info i{
    color:#d2a45b;
    margin-right:10px;
}

.socials{
    display:flex;
    gap:20px;
    margin-top:30px;
}

.socials i{
    color:#d2a45b;
    font-size:24px;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    background:#050505;
    border:1px solid #7a5a22;
    padding:15px;
    color:#fff;
    outline:none;
}

.contact-form textarea{
    min-height:160px;
    resize:none;
}

.map-box img{
    width:100%;
    border-radius:20px;
}

footer{
    border-top:1px solid #7a5a22;
    padding:30px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#050505;
}

.footer-logo,
.footer-right{
    color:#d2a45b;
    font-family:'Cinzel', serif;
}

.footer-links{
    display:flex;
    gap:30px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
}

@media(max-width:1100px){

    .hero,
    .story,
    .contact{
        grid-template-columns:1fr;
        flex-direction:column;
    }

    .collection-grid,
    .craft-grid{
        grid-template-columns:1fr 1fr;
    }

    .hero{
        text-align:center;
    }

    .line{
        margin:auto;
        margin-bottom:30px;
    }

    footer{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }
}

@media(max-width:768px){

    .menu-toggle{
        display:flex;
        position:absolute;
        top:35px;
        right:20px;
    }

    nav{
        width:100%;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:18px;
        max-height:0;
        overflow:hidden;
        transition:max-height 0.4s ease;
    }

    nav.active{
        max-height:400px;
        margin-top:15px;
    }

    header{
        padding:18px 20px;
        flex-direction:column;
        gap:18px;
    }

    .logo{
        text-align:center;
    }

    .logo span{
        font-size:32px;
    }

    nav{
        width:100%;
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    nav a{
        font-size:12px;
    }

    .nav-right{
        gap:15px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .nav-right button{
        padding:10px 20px;
        font-size:12px;
    }

    .hero{
        padding:240px 25px 80px;
        text-align:center;
        min-height:auto;
        gap:50px;
    }

    .hero-content h1{
        font-size:56px;
        line-height:1;
    }

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

    .hero-content p{
        font-size:12px;
        letter-spacing:3px;
    }

    .line{
        margin:25px auto;
        width:140px;
    }

    .hero button{
        width:100%;
        max-width:320px;
    }

    .hero-bottle img{
        width:100%;
        max-width:260px;
    }

    .story,
    .collection,
    .craftsmanship,
    .contact{
        padding:70px 22px;
    }

    .story{
        grid-template-columns:1fr;
        gap:40px;
    }

    .story-text h2,
    .collection h2,
    .craftsmanship h2,
    .contact h2{
        font-size:34px;
        text-align:center;
    }

    .gold-line{
        margin:0 auto 25px;
    }

    .collection-grid,
    .craft-grid,
    .contact{
        grid-template-columns:1fr;
    }

    .product-card,
    .package-card{
        padding:24px;
    }

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

    .package-row{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .package-row span{
        font-size:24px;
    }

    .craft-grid{
        gap:15px;
    }

    .craft-card{
        padding:10px;
    }

    .contact{
        gap:50px;
    }

    .contact-form input,
    .contact-form textarea{
        width:100%;
    }

    .contact-form button{
        width:100%;
    }

    .map-box iframe{
        height:260px;
    }

    footer{
        flex-direction:column;
        gap:20px;
        text-align:center;
        padding:30px 20px;
    }

    .footer-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }
}

@media(max-width:480px){

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

    .hero-content h2{
        font-size:22px;
    }

    .hero-content p{
        font-size:11px;
        letter-spacing:2px;
    }

    .story-text h2,
    .collection h2,
    .craftsmanship h2,
    .contact h2{
        font-size:28px;
    }

    .product-card h4{
        font-size:28px;
    }

    .package-row h4{
        font-size:16px;
    }

    .package-row span{
        font-size:22px;
    }
}

