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

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: linear-gradient(90deg, #1abc9c, #3498db);
    color: white;
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(
        180deg,
        #1abc9c,
        #3498db
    );
}

/* Hero inner layout */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    width: 100%;
}

/* Hero image */
.hero-content img {
    width: 45%;
    max-width: 350px;
    border-radius: 12px;
}

/* Hero text */
.hero-text {
    width: 50%;
    color: white;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-content img {
        width: 90%;
    }

    .hero-text {
        width: 100%;
    }
}
/* Button */
.btn {
    padding: 12px 25px;
    background: linear-gradient(90deg, #16a085, #2980b9);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.btn:hover {
    opacity: 0.85;
}

/* Tourist Spots */
.tourist-spots {
    padding: 60px 8%;
    text-align: center;
    background: linear-gradient(180deg, #e8fdf8, #eaf4ff);
}

.tourist-spots h2 {
    font-size: 32px;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #16a085, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cards */
.card-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: white;
    width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

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

.card h3 {
    margin: 15px 0 10px;
    color: #16a085;
}

.card p {
    padding: 0 15px 20px;
    font-size: 14px;
    color: #555;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: linear-gradient(90deg, #2980b9, #16a085);
    color: white;
}
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .navbar ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-content img {
        width: 90%;
    }

    .hero-text {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 28px;
    }

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

    .card {
        width: 90%;
        max-width: 350px;
    }