﻿/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin-top: 0;
}

/* ===== SLIDES ===== */
.hero-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

    .hero-slide.active {
        opacity: 1;
        z-index: 0;
    }

/* ===== OVERLAY ===== */
.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* ===== IMAGE CREDIT ===== */
.hero-credit {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 3;
    pointer-events: none;
    user-select: none;
    transition: opacity 0.5s ease;
}

/* ===== HERO CONTENT ===== */
.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: left;
    top: 40%;
    left: 10%;
}

    .hero-content h1 {
        font-size: 3rem;
        font-weight: 700;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.5rem;
        margin-top: 15px;
        line-height: 1.6;
    }

.image-credit {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 4px;
    z-index: 10;
}




/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-credit {
        font-size: 10px;
        bottom: 10px;
        right: 12px;
    }
}
