*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:"Lato", sans-serif;
}

body{
background:#f4f4f4;
}

/* NAVBAR */
header{
    position : sticky;
    top:0;
}
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 10%;
background:#0f172ae3;
color:white;
position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.logo{
font-size:24px;
font-weight:bold;
display:flex;
justify-content: center;
align-items: center;
}

.logo img{
    height: 90px;
    width: 90px;
}
.Milo{

    border-left: 2px solid #f0e6e6;
    padding-left: 20px;
}
.MM{

font-family: "Fraunces", serif;
font-weight: 400;
font-size: 30px;
/* color: #324e70; */
}

.MM-sub{
        font-size: 15px;
    font-weight: 300;
}

.nav-links{
display:flex;
list-style:none;
gap:25px;
}

.nav-links a{
text-decoration:none;
color:white;
font-weight:bold;
}

.menu{
display:none;
font-size:28px;
cursor:pointer;
}

/* HERO */

.hero{
height:90vh;
background:url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero h1{
font-size:50px;
margin-bottom:10px;
}

.hero button{
margin-top:15px;
padding:12px 25px;
border:none;
background:#ff7a00;
color:white;
border-radius:5px;
font-size:16px;
cursor:pointer;
}

/* DESTINATIONS */

.destinations{
padding:60px 10%;
text-align:center;
}

.destination-grid{
margin-top:30px;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.card img{
width:100%;
height:200px;
object-fit:cover;
}

.card h3{
padding:15px;
}

/* FOOTER */

footer{
background:#0f172a;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}

/* RESPONSIVE */

@media(max-width:900px){

.destination-grid{
grid-template-columns:repeat(2,1fr);
}

.hero h1{
font-size:35px;
}



}

@media(max-width:768px){

.menu{
display:block;
}

.nav-links{
position:absolute;
top:100px;
left:-100%;
background:#0f172a;
width:100%;
flex-direction:column;
text-align:center;
padding:20px;
transition:0.3s;
}

.nav-links.active{
left:0;
}

.navbar{
    padding: 10px 4%;
}

.MM {
    font-family: "Fraunces", serif;
    font-weight: 400;
    font-size: 22px;
    /* color: #324e70; */
}

.MM-sub {
    font-size: 15px;
    font-weight: 300;
}

.logo img {
    height: 60px;
    width: 60px;
}
.destination-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:28px;
}


}