@media (min-width: 769px) {

.desktop-view {
    display: block;
    background: #f5f5f5;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #0a2540;
    color: white;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

/* HERO */
.hero {
    height: 80vh;
    background: url('../assets/bg.jpg') no-repeat center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    color: white;
}

.hero h1 {
    font-size: 48px;
}

.hero p {
    font-size: 18px;
}

.cta-btn {
    margin-top: 20px;
    padding: 12px 25px;
    background: orange;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

/* DESTINATIONS */
.destinations {
    padding: 50px 5%;
    text-align: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card-d {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.card-d:hover {
    transform: translateY(-5px);
}

.card-d img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

/* PACKAGES */
.packages {
    padding: 50px 5%;
    text-align: center;
    background: white;
}

.package-box {
    background: #eee;
    padding: 20px;
    border-radius: 10px;
    margin: 15px auto;
    max-width: 400px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #0a2540;
    color: white;
}

/* TABLET VIEW */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 36px;
    }

    .navbar ul {
        gap: 10px;
    }
}

/* SMALL LAPTOP */
@media (max-width: 900px) {
    .hero {
        height: auto;
        padding: 60px 5%;
    }
}

}