body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0d0d0d;
}

.hero-section {
    /* Parallax effect on the landing image */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('/images/quinta87-landing.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax key property */
    background-repeat: no-repeat;

    /* Full viewport height and width */
    height: 100vh;
    width: 100vw;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    color: #fff;
    /* Neon shadow effect */
    text-shadow:
        0 0 1px #fff,
        0 0 5px #fff,
        0 0 10px #00e6e6,
        0 0 20px #00e6e6,
        0 0 40px #00e6e6,
        0 0 45px #00e6e6,
        0 0 50x #00e6e6,
        0 0 75px #00e6e6;
    animation: pulsate 1.5s infinite alternate;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #fff;
    /* Lighter Neon shadow effect for subtitle */
    text-shadow:
        0 0 4px #fff,
        0 0 10px #fff,
        0 0 18px #ff00de,
        0 0 38px #ff00de,
        0 0 73px #ff00de;

}

@keyframes pulsate {
    100% {
        text-shadow:
            0 0 3px #fff,
            0 0 9px #fff,
            0 0 15px #fff,
            0 0 35px #00e6e6,
            0 0 75px #00e6e6,
            0 0 95px #00e6e6,
            0 0 105px #00e6e6,
            0 0 155px #00e6e6;
    }

    0% {
        text-shadow:
            0 0 1px #fff,
            0 0 2px #fff,
            0 0 3px #fff,
            0 0 5px #00e6e6,
            0 0 20px #00e6e6,
            0 0 25px #00e6e6,
            0 0 35px #00e6e6,
            0 0 40px #00e6e6;
    }
}

.btn-schedule {
    background-color: transparent;
    color: white;
    padding: 1rem 3rem;
    font-size: 1.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid #00e6e6;
    box-shadow: 0 0 15px #00e6e6, inset 0 0 15px #00e6e6;
    text-decoration: none;

}

.btn-schedule:hover {
    background-color: #00e6e6;
    color: #0d0d0d;
    transform: translateY(-3px);
    box-shadow: 0 0 25px #00e6e6, inset 0 0 10px #00e6e6;
    text-shadow: none;
}

.gallery-section {
    padding: 6rem 0;
    background-color: #111;
    color: white;
}

.gallery-image {
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 230, 230, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-image:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 230, 230, 0.4);
    z-index: 10;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 800;
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
}