/* ===================================
   Hero Simple Section
   =================================== */

.hero-simple {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--bg-white);
    text-align: center;
}

.hero-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 48, 135, 0.6) 0%, rgba(0, 166, 81, 0.5) 100%);
    z-index: 1;
}

.hero-simple .container {
    position: relative;
    z-index: 2;
}

/* Scroll Down Indicator */
.hero-simple::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    transform: translateX(-50%) rotate(45deg);
    animation: scrollDown 2s ease-in-out infinite;
    z-index: 3;
}

.hero-simple-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl) 0; /* Vertical only, container handles horizontal */
}

.hero-simple h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-simple p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-simple {
        min-height: 60vh;
    }

    .hero-simple h1 {
        font-size: 2rem;
    }

    .hero-simple p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-simple {
        min-height: 50vh;
    }

    .hero-simple-content {
        padding: var(--spacing-lg) 0;
    }

    .hero-simple h1 {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-sm);
    }

    .hero-simple p {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .hero-simple {
        min-height: 40vh;
    }

    .hero-simple-content {
        padding: var(--spacing-md) 0;
    }

    .hero-simple h1 {
        font-size: 1.5rem;
    }

    .hero-simple p {
        font-size: 0.875rem;
    }
}
