*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#052e16;
    color:white;
    overflow-x:hidden;
    position:relative;
    margin:0;
    padding:0;
}

/* Background Logo */
.background-logo{
    position:absolute;
    width:90%;
    height:90%;
    background:url('images/logo.png') no-repeat center;
    background-size:contain;
    opacity:0.05;
    z-index:0;
}

.container{
    width:100%;
    max-width:500px;

    margin:40px auto;

    background:rgba(0,0,0,0.35);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.1);

    border-radius:28px;

    padding:30px 25px;

    box-shadow:0 10px 30px rgba(0,0,0,0.4);

    position:relative;

    z-index:1;
}
h1{
    text-align:center;
    font-family:'Cinzel', serif;
    font-size:38px;
    color:#facc15;
    margin-bottom:5px;
}

.tagline{
    text-align:center;
    color:#d1d5db;
    margin-bottom:30px;
    font-style:italic;
}

.input-group{
    margin-bottom:22px;
}

.input-group label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    color:#fef08a;
}

.input-group input{
    width:100%;
    padding:14px;
    border:none;
    border-radius:14px;
    background:#0b3b24;
    color:white;
    font-size:16px;
    outline:none;
}

.product-section{
    margin-bottom:25px;
}

.product-title{
    display:block;
    margin-bottom:15px;
    color:#fef08a;
}

.slider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.product-card{
    width:320px;
    background:#0b3b24;
    border-radius:20px;
    padding:15px;
    text-align:center;
    animation:fade 0.5s ease;
}

.product-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:16px;
    margin-bottom:10px;
}

.product-card h2{
    font-size:20px;
    color:#facc15;
}

.arrow{
    background:#14532d;
    color:white;
    border:none;
    width:42px;
    height:42px;
    border-radius:50%;
    font-size:20px;
    cursor:pointer;
    transition:0.3s;
}

.arrow:hover{
    background:#facc15;
    color:#052e16;
}

.order-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:16px;
    background:#facc15;
    color:#052e16;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.order-btn:hover{
    transform:scale(1.03);
}

@keyframes fade{
    from{
        opacity:0;
        transform:scale(0.95);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

/* Mobile Perfect */
@media(max-width:480px){

    .container{
        padding:25px 20px;
    }

    h1{
        font-size:32px;
    }

    .product-card{
        width:280px;
    }

}



 .hero-banner{
    width:100%;
    max-width:1400px;

    height:420px;

    margin:0 auto;

    background-image:url('images/banner.jpg');

    background-size:cover;

    background-position:center center;

    background-repeat:no-repeat;

    border-bottom:3px solid #d4af37;
}



@media(max-width:768px){

    .hero-banner{
        height:180px;
        background-size:cover;
        background-position:center;
    }

}

.showcase-container{

    width:100%;

    overflow:hidden;

    height:100px;

    margin-bottom:25px;
}

.showcase-slider{

    display:flex;

    transition:transform 1s ease-in-out;
}

.showcase-item{

    min-width:100%;

    text-align:center;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;
}

.showcase-item h1{

    color:#facc15;

    font-family:'Cinzel', serif;

    font-size:30px;

    margin:0;
}

.showcase-item p{

    color:#d1d5db;

    font-style:italic;

    margin-top:8px;
}
