
body{
margin:0;
font-family:"Bodoni Moda", serif;
background:#f4f4f4;
}

.page-title{
text-align:center;
margin-top:40px;
letter-spacing:4px;
}


.header{
display:flex;
align-items:center;
justify-content:space-between;
padding:20px 30px;
background:#d9d9d9;
border-bottom:2px solid #333;
position:relative;
z-index:1001; 
}

.logo img{
height:60px;
}

.left{
display:flex;
align-items:center;
cursor:pointer;
}

.right{
display:flex;
align-items:center;
}


.nav{
display:none;
position:absolute;
left:50%;
transform:translateX(-50%);
gap:25px;
}

.nav a{
text-decoration:none;
color:#333;
font-size:14px;
letter-spacing:1px;
}

.nav a:hover{
opacity:.6;
}

 /*menu*/
.mobile-menu{
display:none;
flex-direction:column;
background:#d9d9d9;
position:absolute;
top:80px;
left:0;
width:100%;
padding:20px;
border-bottom:2px solid #333;
z-index:1000;
}

.mobile-menu.open{
display:flex;
}

.mobile-menu li{
list-style:none;
margin:10px 0;
}

.mobile-menu a{
text-decoration:none;
color:#333;
font-size:14px;
letter-spacing:1px;
}

/* hero */

.hero{
padding:40px 20px;
background:white;
}

.hero-container{
position:relative;
display:flex;
justify-content:center;
}

.hero img{
width:100%;
max-width:550px;
border-radius:5px;
}

.hero-text{
position:absolute;
bottom:30px;
left:50%;
transform:translateX(-50%);
background:rgba(255,255,255,0.85);
padding:15px 20px;
border-radius:5px;
max-width:500px;
text-align:center;
font-size:14px;
line-height:1.6;
}


.sections-wrapper{
display:flex;
flex-direction:column;
}

.section{
padding:30px 20px;
text-align:center;
}

.section h2{
letter-spacing:2px;
margin-bottom:20px;
}

.light{
background:white;
}

.dark{
background:#333;
color:white;
}

.content{
display:flex;
flex-direction:column;
align-items:center;
}

.content img{
width:100%;
max-width:500px;
border-radius:10px;
}


/* buttons */


.view-button{
display:inline-block;
margin-top:20px;
padding:10px 25px;
background:#444;
color:white;
text-decoration:none;
border-radius:20px;
font-size:14px;
transition:.25s;
}

.view-button:hover{
opacity:.7;
}


/* Grid */


.product-grid{
display:grid;
grid-template-columns:1fr;
gap:40px;
padding:40px;
}

.product-card{
border:1px solid #999;
padding:20px;
text-align:center;
border-radius:6px;
background:white;
transition:.3s;
}

.product-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.product-card img{
width:100%;
height:auto;
border-radius:6px;
}

.product-card p{
font-size:12px;
letter-spacing:2px;
}

.product-card span{
font-size:12px;
}


/* footer */


.footer{
background:#d9d9d9;
padding:40px 20px;
border-top:2px solid #333;
margin-top:40px;
}

.footer-container{
display:flex;
flex-direction:column;
gap:30px;
text-align:center;
}

.footer-column ul{
list-style:none;
padding:0;
}

.footer-column a{
text-decoration:none;
color:#333;
}


/* Tablet size */


@media (min-width:768px){

.left{
display:none;
}

.nav{
display:flex;
}

/* show only 4 links */
.nav a:nth-child(5),
.nav a:nth-child(6),
.nav a:nth-child(7){
display:none;
}

.product-grid{
grid-template-columns:repeat(2,1fr);
max-width:900px;
margin:auto;
}

}


/* DESKTOP */


@media (min-width:1100px){

.header{
gap:40px;
}

.nav{
display:flex;
}

/* show all links */
.nav a:nth-child(5),
.nav a:nth-child(6),
.nav a:nth-child(7){
display:block;
}

.product-grid{
grid-template-columns:repeat(3,1fr);
max-width:1200px;
margin:auto;
}

.sections-wrapper{
flex-direction:row;
gap:30px;
padding:40px;
}

.section{
flex:1;
}

.footer-container{
flex-direction:row;
justify-content:space-around;
text-align:left;
}

/* dont show  */
.mobile-menu{
display:none !important;
}

}



