/* Background Slider */

.background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
    z-index: 1;
}

.background-slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    z-index: 2;
}


/* Hero Section */

.hero {
    position: relative;
    overflow: hidden;
    /*background-image: url("/IMG/BG-Hero.png");*/
    height: 100vh;
    width: 100vw;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}


/* Decorative Bottom Accent */


/* .hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 190px;
    background-image: url("/IMG/hero-acc.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 2;
} */


/* Content Wrapper */

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: 20px;
}


/* CTA Button - Gold */

.btn-cta {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--neutral-dark);
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.btn-cta-contact {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-cta-contact:hover {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
    color: var(--neutral-dark);
    transform: scale(1.05);
}


/* TOP DESTINATION */

.top-destination {
    padding: 60px 0;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.destination-card:hover {
    transform: scale(1.05);
}

.card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: white;
    padding: 20px;
    text-align: left;
    border-radius: 0 0 12px 12px;
}

.card-overlay h3 {
    font-size: 1.5rem;
    margin: 0;
}

.card-overlay p {
    font-size: 1rem;
    margin: 5px 0 0;
    opacity: 0.8;
}


/* Mobile Styles */

@media (max-width: 768px) {
    .hero {
        background-image: url("/IMG/BG-Hero-Mobile.png");
        height: 80vh;
    }
    .hero::before {
        height: 150px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
}