@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
}



.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */

.navbar {
    height: 12vh;
    width: 100%;
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 7.1vw;
    overflow: hidden;
}

.logo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a:hover {
    color: #007bff;
}

.whatsapp {
    text-decoration: none;
    color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5vw;
    font-family: "poppins";
    font-weight: 600;
}

.whatsapp i {
    font-size: 2vw;
}






.destination-section {
    padding: 80px 20px;
    background: #f4f7fb;
}

.destination-section .container {
    max-width: 1250px;
    margin: auto;
}

.destination-section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 60px;
    color: #111;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.destination-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.35s ease;
    display: block;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-image {
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.card-content {
    padding: 22px;
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
}

.duration {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 6px;
}

.price {
    font-weight: 600;
    color: #0b5ed7;
    font-size: 1rem;
}


/* FOOTER */
.footer {
    font-size: 14px;
    padding: 15px;
}
.footer p{
    text-align: center;
}