

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}
.main-logo{
height:135px;
width:auto;
display:block;
}
















body{
background:#fffaf5;
}
.top-bar{
background:#5c0b0b;
color:white;
height:45px;
display:flex;
justify-content:space-between;
align-items:center;
padding:0 40px;
font-size:14px;
}

header{
background:white;
height:130px;
display:flex;
justify-content:space-between;
align-items:center;

padding:0 40px;
box-shadow:0 3px 15px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:999;
}

.logo-area{
display:flex;
align-items:center;
gap:15px;
}

.logo-circle{
position:relative;
width:90px;
height:90px;
display:flex;
justify-content:center;
align-items:center;
}

.rotating-border{
position:absolute;
width:90px;
height:90px;
border:3px solid #d4a017;
border-radius:50%;
animation:spin 10s linear infinite;
}

.logo-circle span{
font-size:50px;
font-weight:bold;
font-family:Georgia,serif;
color:#d4a017;
z-index:10;
}

.logo-text h1{
margin:0;
font-size:55px;
line-height:50px;
color:#d4a017;
font-family:Georgia,serif;
}

.logo-text h2{
margin:0;
letter-spacing:6px;
font-size:14px;
color:#222;
}

@keyframes spin{
from{
transform:rotate(0deg);
}
to{
transform:rotate(360deg);
}
}
nav{
display:flex;
gap:35px;
}

nav a{
text-decoration:none;
font-weight:600;
color:#222;
position:relative;
}

nav a:hover{
color:#c99700;
}

.whatsapp-btn{
background:#d19b00;
color:white;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
font-weight:600;
}

.whatsapp-btn:hover{
transform:translateY(-3px);
}

.logo{
font-size:30px;
font-weight:800;
color:#b8860b;
}



.hero-slider{
position:relative;
height:85vh;
overflow:hidden;
}

.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:1s;
}

.slide.active{
opacity:1;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}






















.btn{
display:inline-block;
margin-top:25px;
padding:15px 35px;
background:#b8860b;
color:white;
text-decoration:none;
border-radius:50px;
}

.title{
text-align:center;
font-size:45px;
margin-top:80px;
margin-bottom:50px;
}

.products{
padding:50px;
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
}

.card{
background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.card:hover{
transform:translateY(-10px);
}

.card img{
width:100%;
height:450px;
object-fit:contain;
background:white;
padding:10px;
}

.card-content{
padding:20px;
text-align:center;
}

.card-content h3{
margin-bottom:15px;
}

.order-btn{
background:#b8860b;
color:white;
border:none;
padding:12px 25px;
border-radius:30px;
cursor:pointer;
}

.contact{
background:#111;
color:white;
padding:80px 20px;
text-align:center;
margin-top:50px;
}

footer{
background:black;
color:white;
text-align:center;
padding:20px;
}

@media(max-width:768px){

.products{
grid-template-columns:repeat(2,1fr);
}

.card img{
height:280px;
}

}
@media(max-width:768px){

.hero h1{
font-size:40px;
}

.hero p{
font-size:18px;
}

}
