body{
margin:0;
font-family:Arial, sans-serif;
background:#f9f9f9;
}

/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:white;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
flex-wrap:wrap;
}

.logo img{
height:60px;
}

/* MENU */

nav{
display:flex;
flex-wrap:wrap;
gap:10px;
}

nav a{
text-decoration:none;
font-weight:bold;
color:#c40000;
background:#ffe5e5;
padding:10px 20px;
border-radius:30px;
transition:0.3s;
}

nav a:hover{
background:#c40000;
color:white;
transform:scale(1.05);
}

/* HERO */

.hero{
display:flex;
align-items:center;
justify-content:center;
gap:120px;
padding:120px 80px;
background:linear-gradient(135deg,#ff2d2d,#c40000);
color:white;
flex-wrap:wrap;
}

.hero-left{
flex:1;
display:flex;
justify-content:center;
}

.hero-right{
flex:1;
display:flex;
flex-direction:column;
justify-content:center;
text-align:left;
}

.hero-logo{
width:350px;
max-width:100%;
}

.hero-button{
margin-top:25px;
display:flex;
justify-content:center;
}

/* BUTTON */

.btn{
background:white;
color:#c40000;
padding:15px 35px;
border-radius:8px;
text-decoration:none;
font-weight:bold;
}

/* HOME OFFER */

.home-offer{
padding:80px 40px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.card{
background:white;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
overflow:hidden;
transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
}

.card img{
width:100%;
height:200px;
object-fit:cover;
}

.card h3{
padding:20px;
text-align:center;
}

/* PAGE */

.page{
padding:80px 40px;
}

.offer-box{
display:flex;
gap:40px;
margin-bottom:60px;
align-items:center;
flex-wrap:wrap;
}

.offer-box img{
width:350px;
max-width:100%;
border-radius:10px;
}

/* FOOTER */

footer{
background:#111;
color:white;
text-align:center;
padding:30px;
}

/* ================= */
/* RESPONSIVE MOBILE */
/* ================= */

@media (max-width: 900px){

.hero{
flex-direction:column;
text-align:center;
gap:40px;
padding:80px 30px;
}

.hero-right{
text-align:center;
}

.hero-logo{
width:250px;
}

header{
flex-direction:column;
gap:15px;
}

nav{
justify-content:center;
}

}

/* SMALL PHONES */

@media (max-width: 500px){

.hero h1{
font-size:28px;
}

.hero p{
font-size:16px;
}

.btn{
padding:12px 25px;
}

.cards{
gap:25px;
}

}