body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    color: #333;
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: 110vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: white;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/hero-background2.webp'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    filter: brightness(70%) blur(2px); /* Dim and blur the background for readability */
    z-index: -1; /* Push behind the content */
    animation: background-pan 20s infinite linear;
}

@keyframes background-pan {
    0% {
        background-position: center;
    }
    50% {
        background-position: left;
    }
    100% {
        background-position: center;
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 20px;
    animation: fade-in 2s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8); /* Subtle text shadow */
    animation: slide-down 1.5s ease-out;
}

.hero-description {
    font-size: 1.5rem;
    margin: 20px 0;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
    animation: fade-in 2s ease-out;
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-button {
    padding: 12px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-button.primary {
    background-color: #ff5722;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.cta-button.primary:hover {
    background-color: #e64a19;
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid #ff5722;
    color: #ff5722;
}

.cta-button.secondary:hover {
    background-color: #ff5722;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

.hero-text {
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: fade-in 2s ease;
}

.hero-text p {
    font-size: 1.5rem;
    animation: fade-in 3s ease;
}

/* City Grid */
.city-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.city-card {
    background: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s;
}

.city-card:hover {
    background-color: #81C784;
    transform: scale(1.05);
}

/* Hotel Section */
.city-hotels {
    display: none;
    margin: 40px 0;
}

.hotel-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hotel-category {
    flex: 1;
    background: #f4f4f9;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hotel-category h3 {
    margin-bottom: 10px;
    color: #333;
}

.hotel-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hotel-list .card {
    background: white;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hotel-list .card:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
