/* =============================
   Reset & Base Styles
============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fefefe;
    line-height: 1.6;
    color: #333;
}

/* =============================
   Navbar
============================= */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

/* Logo */
.logo img {
    height: 50px;  /* Adjust as needed */
    width: auto;
    display: block;
}

/* Nav Links */
ul.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

ul.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

ul.nav-links li a:hover {
    color: #28a745;
}

/* Hamburger menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

/* =============================
   Hero Section
============================= */
.hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero-text .btn {
    padding: 12px 25px;
    background: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* =============================
   Featured Destinations
============================= */
.destinations {
    padding: 50px 20px;
    text-align: center;
}

.destinations h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #333;
}

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

.dest-cards .card {
    flex: 1 1 200px;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dest-cards img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.dest-cards p {
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
}

/* =============================
   Blog Section
============================= */
.blog {
    padding: 50px 20px;
    text-align: center;
    background: #f5f5f5;
}

.blog h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #333;
}

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

.blog-cards .card {
    flex: 1 1 200px;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-cards img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.blog-cards p {
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
}

/* =============================
   Footer
============================= */
footer {
    padding: 20px;
    text-align: center;
    background: #333;
    color: #fff;
    margin-top: 20px;
}

/* =============================
   Responsive
============================= */
@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
    }

    ul.nav-links {
        width: 100%;
        flex-direction: column;
        display: none; /* Hidden by default on mobile */
        gap: 10px;
        margin-top: 10px;
    }

    ul.nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .dest-cards, .blog-cards {
        flex-direction: column;
        align-items: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}
