/* Reset Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, sans-serif;
    color: #333;
    background-color: #f5f7fa;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Section */
header {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: fadeInUp 1s ease-out forwards;
}

header p {
    font-size: 1.25rem;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1.5s ease-out forwards;
}


/* Tourist Places Section */
.tourist-places h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    text-align: center;
    margin-bottom: 1em;
    letter-spacing: 1px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 1em;
}

.card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px;
    margin: 0 auto;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.card .card-body {
    padding: 1.5em;
    text-align: center;
}

.card h5 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.75em;
}

.card p {
    font-size: 1rem;
    color: #666666;
}

/* Footer Section */
footer {
    background-color: #222222;
    color: #eeeeee;
    padding: 1.5em 0;
    text-align: center;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }

    header p {
        font-size: 1rem;
        max-width: 90%;
    }

    .tourist-places h2 {
        font-size: 2rem;
    }
}

/* Keyframes Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional Animations for AOS */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
