      *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins','Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body{
    background:#f4f7fb;
    color:#222;
    overflow-x:hidden;
}

/* NAVBAR */

header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(12px);
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
}

nav{
    max-width:1300px;
    margin:auto;
    padding:20px 5%;
    list-style-type: none;
}

nav ul{
    display:flex;
    justify-content:center;
    gap:40px;
    list-style:none;
}

nav ul li a{
    text-decoration:none;
    color:#111;
    font-weight:600;
    transition:0.3s;
    position:relative;
}

nav ul li a::after{
    content:'';
    width:0%;
    height:2px;
    background:#00b894;
    position:absolute;
    left:0;
    bottom:-5px;
    transition:0.3s;
}

nav ul li a:hover::after{
    width:100%;
}

/* HERO */

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:0 20px;
}

.hero-content{
    max-width:800px;
    color:white;
}

.hero-content h1{
    font-size:70px;
    margin-bottom:20px;
    line-height:1.1;
}

.hero-content p{
    font-size:20px;
    margin-bottom:35px;
    opacity:0.95;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    padding:15px 35px;
    border-radius:50px;
    background:#00b894;
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 10px 20px rgba(0,184,148,0.3);
}

.btn:hover{
    transform:translateY(-4px);
}

.secondary{
    background:white;
    color:#111;
}

/* SECTION */

section{
    padding:90px 8%;
}

section h2{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
    color:#111;
}

/* MAP */

.map-container{
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

/* DESTINATIONS */

.destination-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:35px;
}

.card{
    width:100%;
    height: 400px;
    background:white;
    border-radius:25px;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    position:relative;
    text-align:center;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.card h3{
    font-size:26px;
    padding:20px 20px 10px;
}

.card p{
    padding:0 20px 20px;
    color:#666;
    line-height:1.6;
}

.card button{
    margin:0 20px 25px;
    padding:12px 25px;
    border:none;
    border-radius:30px;
    background:#111;
    color:white;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.card button:hover{
    background:#00b894;
}

/* NEWSLETTER */

.newsletter{
    background:linear-gradient(135deg,#00b894,#0984e3);
    color:white;
    text-align:center;
    border-radius:30px;
    width:85%;
    margin:80px auto;
    padding:70px 30px;
}

.newsletter h2{
    color:white;
    margin-bottom:15px;
}

.newsletter p{
    margin-bottom:30px;
    font-size:18px;
}

.newsletter input{
    width:320px;
    max-width:90%;
    padding:15px;
    border:none;
    border-radius:50px;
    margin-bottom:20px;
    outline:none;
    font-size:16px;
}

.newsletter button{
    padding:15px 35px;
    border:none;
    border-radius:50px;
    background:#111;
    color:white;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.newsletter button:hover{
    transform:scale(1.05);
}

/* FOOTER */

.footer{
    background:#111827;
    color:white;
    padding:70px 8% 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

.footer-section h3{
    margin-bottom:20px;
    font-size:22px;
}

.footer-section p,
.footer-section a,
.footer-section li{
    color:#cbd5e1;
    text-decoration:none;
    list-style:none;
    margin-bottom:10px;
}

.footer-section ul{
    padding:0;
}

.footer-section a:hover{
    color:#00b894;
}

.footer-bottom{
    text-align:center;
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,0.1);
    padding-top:20px;
    color:#94a3b8;
}

/* RESPONSIVE */

@media(max-width:768px){




    .hero-content h1{
        font-size:45px;
    }

    nav ul{
        gap:20px;
        flex-wrap:wrap;
    }

    section h2{
        font-size:32px;
    }
    }