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

/* NAVBAR */
header{
    width: 100%;
    padding: 15px 40px;
    background: #006a4e;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.logo{
    font-size: 22px;
    font-weight: bold;
}

nav{
    display: flex;
    gap: 20px;
}

nav a{
    text-decoration: none;
    color: white;
    font-weight: bold;
    position: relative;
    padding-bottom: 4px;
    transition: 0.3s;
}

/* Hover Effect: underline animation */
nav a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: white;
    transition: 0.3s;
}

nav a:hover::after{
    width: 100%;
}


.menu-icon{
    display: none;
    font-size: 28px;
    cursor: pointer;
}
.read-btn{
    display: block;
    margin: 10px auto 20px;
    padding: 10px 20px;
    background: #006a4e;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.read-btn:hover{
    background: #008f66;
    transform: scale(1.05);
}


/* HERO SECTION */
.hero{
    height: 100vh;
    background: url("images/Hero.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
    padding-top: 100px;
}

.hero-text h1{
    font-size: 55px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-text p{
    font-size: 20px;
    margin: 15px 0;
}

.btn{
    background: #006a4e;
    padding: 12px 25px;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

/* DESTINATIONS */
.destinations{
    padding: 50px;
    text-align: center;
    background: #f7f7f7;
}

.cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.card{
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

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

.card h3{
    margin: 15px 0 5px;
}

.card p{
    padding: 0 15px 20px;
    color: #444;
}

/* ABOUT */
.about{
    padding: 50px;
    text-align: center;
    background: #fff;
}

.about p{
    max-width: 700px;
    margin: auto;
    color: #333;
    line-height: 1.6;
}

/* FOOTER */
footer{
    background: #006a4e;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}

/* ---------------------- */
/* RESPONSIVE DESIGN */
/* ---------------------- */

@media (max-width: 768px){

    /* NAVBAR MOBILE */
    nav{
        position: absolute;
        top: 70px;
        right: -200px;
        background: #006a4e;
        width: 150px;
        padding: 15px;
        flex-direction: column;
        gap: 10px;
        transition: 0.3s;
    }

    nav.active{
        right: 20px;
    }

    .menu-icon{
        display: block;
    }

    /* HERO TEXT */
    .hero-text h1{
        font-size: 35px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px){
    .hero-text h1{
        font-size: 28px;
    }

    .hero-text p{
        font-size: 16px;
    }

    .card{
        width: 90%;
    }
}
