*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#0d0b09;
    color:#fff;
    font-family:'Poppins',sans-serif;
}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 70px;
    background:rgba(0,0,0,0.7);
    position:fixed;
    width:100%;
    z-index:999;
    backdrop-filter:blur(10px);
}

.logo-section img{
    width:100px;
    animation:slideLogo 0.8s ease-in-out;
}

@keyframes slideLogo{
    from{
        transform:translateX(-50px);
        opacity:0;
    }
    to{
        transform:translateX(0);
        opacity:1;
    }
}

nav{
    display:flex;
    gap:30px;
}

.nav-item{
    position:relative;
    color:#d4af37;
    text-decoration:none;
    font-size:18px;
    transition:0.3s;
}

.nav-item:hover{
    color:#fff;
}

.dropdown{
    position:absolute;
    top:100%;
    left:0;
    background:rgba(0,0,0,0.95);
    border:1px solid #d4af37;
    border-radius:8px;
    padding:15px 20px;
    min-width:150px;
    display:none;
    flex-direction:column;
    gap:10px;
    margin-top:10px;
    z-index:1000;
}

.nav-item:hover .dropdown{
    display:flex;
}

.dropdown a{
    color:#d4af37;
    text-decoration:none;
    font-size:16px;
    transition:0.3s;
}

.dropdown a:hover{
    color:#fff;
}

nav a{
    color:#d4af37;
    text-decoration:none;
    font-size:18px;
    transition:0.3s;
}

.hero{
    height:100vh;
    position:relative;
    overflow:hidden;
}

.slideshow{
    position:relative;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    visibility:hidden;
    transition:opacity 1s ease-in-out;
}

.slide.active{
    opacity:1;
    visibility:visible;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    text-align:center;
    z-index:2;
    width:90%;
    max-width:900px;
}

.dots{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:2;
}

.dot{
    width:14px;
    height:14px;
    border-radius:50%;
    border:1px solid rgba(212,175,55,0.8);
    background:rgba(255,255,255,0.2);
    cursor:pointer;
    outline:none;
    transition:transform 0.3s ease, background-color 0.3s ease;
}

.dot.active{
    background:rgba(212,175,55,0.95);
    transform:scale(1.2);
}

.hero-content{
    position:relative;
    text-align:center;
    z-index:2;
}

.hero-content h1{
    font-size:90px;
    letter-spacing:8px;
    color:#d4af37;
    font-family:'Cinzel',serif;
}

.hero-content p{
    margin-top:20px;
    font-size:24px;
    color:#f5f5f5;
}

.btn{
    display:inline-block;
    margin-top:35px;
    padding:15px 40px;
    background:#d4af37;
    color:#000;
    text-decoration:none;
    font-weight:bold;
    border-radius:50px;
    transition:0.4s;
}

.btn:hover{
    background:#fff;
    transform:translateY(-5px);
}

.about{
    padding:120px 10%;
    text-align:center;
}

.about h2{
    color:#d4af37;
    font-size:48px;
    margin-bottom:30px;
    font-family:'Cinzel',serif;
}

.about p{
    max-width:900px;
    margin:auto;
    line-height:2;
    font-size:18px;
    color:#ddd;
    margin-bottom:20px;
}

.premium-strip{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    padding:0 10% 100px;
}

.strip-box{
    background:#15110c;
    border:1px solid #d4af37;
    padding:50px;
    text-align:center;
    border-radius:20px;
    transition:0.4s;
}

.strip-box:hover{
    transform:translateY(-10px);
    background:#1f180f;
}

.strip-box h3{
    color:#d4af37;
    font-size:28px;
}

.contact{
    padding:100px 10%;
    text-align:center;
}

.contact h2{
    color:#d4af37;
    margin-bottom:40px;
    font-size:45px;
}

.contact-box{
    max-width:700px;
    margin:auto;
    background:#16120d;
    padding:50px;
    border-radius:25px;
    border:1px solid #d4af37;
}

.contact-box p{
    margin-bottom:25px;
    line-height:1.8;
    font-size:18px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    padding:60px 10% 100px;
}

.gallery-item{
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,0.35);
    border:1px solid rgba(212,175,55,0.2);
    background:#111;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.contact-page{
    padding:120px 10% 120px;
}

.contact-page h1{
    color:#d4af37;
    text-align:center;
    font-size:48px;
    margin-bottom:25px;
    font-family:'Cinzel',serif;
}

.contact-details{
    display:grid;
    gap:25px;
    max-width:900px;
    margin:0 auto;
}

.contact-details p{
    font-size:18px;
    line-height:1.8;
    color:#ddd;
}

footer{
    text-align:center;
    padding:25px;
    background:#000;
    color:#aaa;
}

.whatsapp-btn{
    position:fixed;
    bottom:30px;
    right:30px;
    background:#25D366;
    color:white;
    padding:15px 22px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    z-index:999;
}

.products-section{
    padding:160px 10% 100px;
}

.products-section h1{
    text-align:center;
    color:#d4af37;
    font-size:55px;
    margin-bottom:70px;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.product-card{
    background:#15110d;
    border-radius:20px;
    overflow:hidden;
    border:1px solid #d4af37;
    transition:0.4s;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.product-info{
    padding:25px;
}

.product-info h3{
    color:#d4af37;
    margin-bottom:10px;
}

.product-info p{
    color:#ddd;
    line-height:1.7;
}

.admin-container{
    width:100%;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:40px;
}

.login-box,
.dashboard{
    width:100%;
    max-width:500px;
    background:#15110d;
    padding:40px;
    border-radius:20px;
    border:1px solid #d4af37;
}

.admin-container h1,
.dashboard h2{
    color:#d4af37;
    margin-bottom:30px;
}

input,
textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:none;
    border-radius:10px;
    background:#222;
    color:#fff;
}

button{
    width:100%;
    padding:15px;
    background:#d4af37;
    border:none;
    font-weight:bold;
    cursor:pointer;
    border-radius:10px;
}

.product-item{
    background:#15110d;
    padding:20px;
    margin-bottom:15px;
    border:1px solid #d4af37;
    border-radius:10px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.product-item h4{
    color:#d4af37;
    margin:0;
}

.product-item button{
    width:auto;
    padding:10px 20px;
    background:#ff4444;
    margin:0;
}

.delivery-note{
    text-align:center;
    padding:20px;
    background:#15110d;
    border:1px solid #d4af37;
    border-radius:10px;
    margin-bottom:50px;
    font-size:18px;
    color:#d4af37;
    font-weight:bold;
}

@media(max-width:768px){

    header{
        padding:20px;
        flex-direction:column;
    }

    nav{
        margin-top:15px;
    }

    .hero-content h1{
        font-size:50px;
    }

    .premium-strip{
        grid-template-columns:1fr;
    }
}