/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: url('../assets/hero-bg.jpg') center/cover no-repeat;
    overflow: visible;
    margin-top: var(--header-offset);
    padding-bottom: clamp(72px, 12vw, 140px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: var(--z-content);
    text-align: center;
    color: var(--white);
    max-width: 900px;
    width: 100%;
    padding: 0 24px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(80px, 18vh, 180px);
}

.hero-title {
    font-family: 'Archivo Black', var(--font-heading);
    font-size: clamp(40px, 12vw, 100px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
