/* ===================================
   HERO - MINIMAL & SUPERB
   =================================== */

.hero-fullwidth {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

/* Content */
.hero-content-center {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    text-align: center;
    padding: 0 24px;
}

/* Title */
.hero-title-huge {
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 32px 0;
}

/* Description */
.hero-description-center {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 48px 0;
}

/* Actions */
.hero-actions-center {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Primary Button */
.btn-hero-primary {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    background: #A4C741;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-hero-primary:hover {
    background: #8fb535;
    transform: translateY(-2px);
}

/* Secondary Button */
.btn-hero-secondary {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-hero-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-fullwidth {
        min-height: 80vh;
    }

    .hero-actions-center {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }
}
