/* ===============================
  HERO SECTION - MODERN
================================*/
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--navbar-height);
    background: var(--background-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}


.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 6vw, 4rem);
    background: linear-gradient(45deg, white, var(--primary-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    line-height: 1.6;
}
