* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header and Navigation */
header {
    background: linear-gradient(90deg, #2c3e50, #3498db);
    color: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.nav-links li a:hover,
.nav-links li a[aria-current="page"] {
    color: #f1c40f;
    transform: translateY(-2px);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #f1c40f;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger .line {
    width: 30px;
    height: 3px;
    background-color: #fff;
    display: block;
    margin: 6px 0;
    transition: all 0.3s ease;
}

.hamburger[aria-expanded="true"] .line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .line:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] .line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    text-align: center;
}

.hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #fff;
}

/* Destinations Section */
.destinations-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.destinations-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 20px 10px;
}

.destination-card:hover {
    transform: scale(1.05);
}

.destination-img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    transition: transform 0.5s;
}

.destination-card:hover .destination-img {
    transform: scale(1.1);
}





.explore-btn {
    display: block;
    text-align: center;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.explore-btn:hover {
    background: linear-gradient(45deg, #2980b9, #1a5276);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(90deg, #2c3e50, #34495e);
    color: #fff;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-column p,
.footer-column ul li a {
    font-size: 0.95rem;
    color: #bdc3c7;
    text-decoration: none;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a:hover {
    color: #f1c40f;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background: #f1c40f;
    transform: rotate(360deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100vh;
        background: rgba(44, 62, 80, 0.95);
        flex-direction: column;
        align-items: center;
        padding-top: 4rem;
        transition: transform 0.3s ease;
        transform: translateX(-100%);
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }

    .hamburger {
        display: block;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .destinations {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .destination-img {
        height: 150px;
    }

    .explore-btn {
        font-size: 0.8rem;
    }
}