﻿/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HERO */
.hero {
    width: 100%;
    overflow: hidden;
    background: #000;
    color: #fff;
}

/* SLIDER */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 520px;
}

/* SLIDE */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

    .hero-slide.active {
        opacity: 1;
        z-index: 1;
    }

    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* DARK GRADIENT OVERLAY (CLEAR TEXT) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( rgba(0,0,0,0.65), rgba(0,0,0,0.45) );
}

/* CONTENT */
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 2;
}

/* GLASS CONTENT BOX */
.hero-box {
    max-width: 720px;
    padding: 28px 26px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    border-radius: 14px;
    text-align: center;
}

    /* TEXT */
    .hero-box h1 {
        font-size: 2rem;
        font-weight: 800;
        line-height: 1.25;
    }

        .hero-box h1 span {
            color: #ffd700;
        }

    .hero-box p {
        margin-top: 14px;
        font-size: 1rem;
        opacity: 0.95;
    }

/* BUTTONS */
.hero-buttons {
    margin-top: 22px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 13px 26px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
}

.btn-green {
    background: #27ae60;
}

.btn-blue {
    background: #2980b9;
}

.btn:hover {
    transform: translateY(-3px);
}

/* STATS */
.hero-stats {
    background: #111;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
    padding: 22px 16px;
    text-align: center;
}

.stat strong {
    font-size: 1.2rem;
    color: #ffd700;
}

.stat span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.85;
}

/* DESKTOP */
@media (min-width: 768px) {

    .hero-slider {
        height: 90vh;
    }

    .hero-box {
        text-align: left;
    }

        .hero-box h1 {
            font-size: 3rem;
        }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-stats {
        grid-template-columns: repeat(4,1fr);
        padding: 28px;
    }
}
