*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#faf8f4;
color:#222;
}

a{
text-decoration:none;
}

img{
width:100%;
display:block;
}


/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 8%;
background:white;
}

.logo h2{
font-size:40px;
font-weight:800;
}

.logo span{
font-size:12px;
letter-spacing:1px;
}

nav{
display:flex;
gap:25px;
}

nav a{
color:#222;
font-weight:600;
text-transform:uppercase;
font-size:14px;
}

.btn{
padding:14px 28px;
border-radius:40px;
font-weight:600;
display:inline-block;
}

.yellow{
background:#f3b327;
color:black;
}

.green{
background:#36432b;
color:white;
}

.white{
background:white;
color:black;
}


/* HERO */

.hero{
height:90vh;
background:url("https://k0j.67d.mytemp.website/images/Hero_Best-Eggs Benedict.png") center/cover;
position:relative;
display:flex;
align-items:center;
padding:0 8%;
}

.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.55);
}

.hero-content{
position:relative;
max-width:650px;
color:white;
}

.hero-content p{
font-size:24px;
margin-bottom:20px;
}

.hero-content h1{
font-size:90px;
line-height:1;
font-weight:800;
margin-bottom:20px;
}

.hero-content span{
display:block;
font-size:18px;
line-height:1.8;
}

.hero-buttons{
margin-top:35px;
display:flex;
gap:15px;
flex-wrap:wrap;
}


/* FEATURED */

.featured{
padding:90px 8%;
text-align:center;
}

.featured h4{
color:#d79a20;
margin-bottom:10px;
}

.featured h2{
font-size:48px;
margin-bottom:50px;
}

.cards{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 0 15px rgba(0,0,0,.08);
}

.card img{
height:240px;
object-fit:cover;
}

.card h3{
padding-top:20px;
}

.card p{
padding:15px;
color:#666;
}

.card span{
display:block;
padding-bottom:25px;
font-weight:700;
color:#d79a20;
}

.menu-btn{
display:inline-block;
margin-top:40px;
padding:15px 40px;
border:1px solid #333;
border-radius:5px;
color:#222;
}


/* ABOUT */

.about{
display:grid;
grid-template-columns:1.2fr 1fr 1fr;
gap:40px;
padding:90px 8%;
background:white;
}

.about-content h4{
color:#d79a20;
margin-bottom:10px;
}

.about-content h2{
font-size:48px;
margin-bottom:20px;
}

.about-content p{
line-height:1.8;
margin-bottom:30px;
color:#555;
}

.about-icons{
display:flex;
flex-direction:column;
gap:30px;
}

.icon-box{
padding:25px;
border:1px solid #ddd;
border-radius:10px;
}

.icon-box h3{
margin-bottom:10px;
}


/* REVIEWS */

.reviews{
padding:90px 8%;
text-align:center;
}

.reviews h4{
color:#d79a20;
margin-bottom:15px;
}

.reviews h2{
font-size:50px;
margin-bottom:10px;
}

.review-wrapper{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;
}

.review-card{
background:white;
padding:35px;
border-radius:10px;
box-shadow:0 0 15px rgba(0,0,0,.08);
}

.review-card h3{
margin-bottom:15px;
}

.review-card p{
line-height:1.7;
color:#555;
margin-bottom:20px;
}



/* Footer */

footer{
    background:linear-gradient(
        90deg,
        #27331d,
        #475232,
        #27331d
    );
    color:#fff;
    padding:35px 50px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.footer-box{
    padding:0 20px;
    border-right:1px solid rgba(255,255,255,.15);
}

.footer-box:last-child{
    border:none;
}

.footer-box h4{
    font-size:14px;
    margin-bottom:15px;
}

.footer-box p{
    color:#ddd;
    font-size:13px;
    margin-bottom:8px;
}

.footer-box a{
    color:#d7a026;
    font-weight:600;
}

.footer-box h2{
    margin:10px 0;
    font-size:30px;
}

.call-btn{
    display:inline-block;
    background:#d7a026;
    color:#000 !important;
    padding:12px 22px;
    border-radius:6px;
    margin-top:10px;
}

.copyright{
    background:#20271a;
    color:#bbb;
    text-align:center;
    padding:12px;
    font-size:12px;
}

.stars{
    color:#d8a028;
    font-size:28px;
    margin:10px 0;
}

.rating-left span{
    color:#666;
}


/* RESPONSIVE */

@media(max-width:992px){

header{
flex-direction:column;
gap:20px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

.cards{
grid-template-columns:repeat(2,1fr);
}

.about{
grid-template-columns:1fr;
}

.review-wrapper{
grid-template-columns:1fr;
}

footer{
grid-template-columns:1fr 1fr;
}

.hero-content h1{
font-size:60px;
}

}


@media(max-width:768px){

.cards{
grid-template-columns:1fr;
}

footer{
grid-template-columns:1fr;
}

.hero{
height:auto;
padding:100px 8%;
}

.hero-content h1{
font-size:50px;
}

}