/* ============================================
   APONGA — Hero Section (style mpiketrika plein ecran)
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-top: 100px;
    padding-bottom: 80px;
    background-color: var(--aponga-bg-primary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(18, 18, 18, 0.5) 0%,
        rgba(18, 18, 18, 0.4) 30%,
        rgba(18, 18, 18, 0.75) 70%,
        rgba(18, 18, 18, 0.95) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    margin-bottom: 0.3em;
    color: var(--aponga-text-light);
}

.hero-subtitle {
    font-family: var(--aponga-font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--aponga-text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Scroll indicator (style mpiketrika) */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.scroll-indicator-box {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: inline-flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator-dot {
    width: 4px;
    height: 10px;
    background-color: var(--aponga-accent);
    border-radius: 2px;
    animation: scrollDot 1.5s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(12px); }
}

.scroll-indicator-text {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
}

@media (max-width: 991px) {
    .hero-section { min-height: 85vh; padding-top: 90px; padding-bottom: 60px; }
}

@media (max-width: 767px) {
    .hero-section { min-height: 75vh; padding-top: 80px; padding-bottom: 50px; }
    .hero-cta { flex-direction: column; align-items: flex-start; }
    .hero-cta .btn { width: 100%; max-width: 300px; }
    .scroll-indicator { display: none; }
}
