/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Mobile-first styles for Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    background: #000; /* Fallback for video */
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 54, 100, 0.75); /* Dark blue overlay for contrast */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 90%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-column-left {
    flex: 1;
    text-align: left;
}

.hero-column-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-title-changing-word {
    display: inline-block;
    color: #EB5434; /* Orange for emphasis */
    min-width: 170px; /* Prevent layout shift */
}

.hero-description {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.hero-hotel {
    font-size: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 400px;
}

.cta-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.15); /* Semi-transparent card */
    border: 3px solid #EB5434;
    border-radius: 15px;
    padding: 1.8rem;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: rgba(235, 84, 52, 0.25); /* Subtle orange tint on hover */
}

.cta-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cta-card-location {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero-register-button {
    background: #EB5434;
    color: #fff;
    padding: 1.3rem 2.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-register-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Mobile-first styles for About Section */
.about-section {
    background: #f8f9fa; /* Light gray background for contrast */
    padding: 2rem 1.5rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.about-content {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-column-left {
    flex: 1;
    text-align: left;
}

.about-column-right {
    flex: 1;
}

.about-top-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #EB5434; /* Orange for emphasis */
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1C3664; /* Dark blue for contrast */
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.about-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.about-register-button {
    display: inline-block;
    background: #EB5434;
    color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-register-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

/* Fade-in animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Medium screens (tablets) */
@media (min-width: 768px) {
    .hero-content {
        max-width: 85%;
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .hero-column-left {
        max-width: 50%;
    }

    .hero-column-right {
        max-width: 50%;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-description {
        font-size: 1.2rem;
        max-width: 450px;
    }

    .hero-hotel {
        font-size: 1.1rem;
    }

    .cta-card {
        padding: 2rem;
    }

    .cta-card-title {
        font-size: 1.6rem;
    }

    .cta-card-location {
        font-size: 1.4rem;
    }

    .hero-register-button {
        font-size: 1.4rem;
        padding: 1.5rem 3rem;
    }

    .about-content {
        max-width: 85%;
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .about-column-left {
        max-width: 50%;
    }

    .about-column-right {
        max-width: 50%;
    }

    .about-top-title {
        font-size: 1.4rem;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-description {
        font-size: 1.1rem;
    }

    .about-register-button {
        font-size: 1.3rem;
        padding: 1.3rem 3rem;
    }
}

/* Large screens (desktops) */
@media (min-width: 1024px) {
    .hero-content {
        max-width: 1200px;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-description {
        font-size: 1.3rem;
        max-width: 500px;
    }

    .hero-hotel {
        font-size: 1.2rem;
    }

    .cta-card {
        padding: 2.5rem;
    }

    .cta-card-title {
        font-size: 1.8rem;
    }

    .cta-card-location {
        font-size: 1.6rem;
    }

    .hero-register-button {
        font-size: 1.6rem;
        padding: 1.6rem 3.5rem;
    }

    .about-content {
        max-width: 1200px;
    }

    .about-top-title {
        font-size: 1.6rem;
    }

    .about-title {
        font-size: 3rem;
    }

    .about-description {
        font-size: 1.2rem;
        max-width: 500px;
    }

    .about-register-button {
        font-size: 1.4rem;
        padding: 1.5rem 3.5rem;
    }
}