/* HERO */
.hero {
    position: relative;
    height: 100vh;
    background-image: url('/assets/images/hero-background-1920.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem;
    overflow: hidden;
}

.hero-header {
    position: absolute;
    top: clamp(1rem, 4vh, 3rem);
    right: clamp(1rem, 4vw, 3rem);
    text-align: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    padding: clamp(1rem, 4vh, 2.5rem) clamp(1rem, 5vw, 4rem);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    max-width: min(90%, 1000px);
}

.hero-header h1 {
    color: #FFFFFF;
    font-size: clamp(1.8rem, 4vw, 3.8rem);
    letter-spacing: 2px;
}

.hero-header h2 {
    color: #FFFFFF;
    font-size: clamp(1.3rem, 3vw, 2.8rem);
    letter-spacing: 2px;
}

.hero-header p {
    color: #FFFFFF;
    font-size: clamp(0.9rem, 2vw, 1.5rem);
    margin-top: 0.3rem;
}

.side-nav {
    position: fixed;
    left: clamp(1rem, 4vw, 4rem);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 10vh, 8rem);
    z-index: 2;
}

.nav-btn {
    font-family: 'Irish Grover';
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(0.9rem, 3vw, 4rem);
    padding: clamp(0.4rem, 2vh, 1.2rem) clamp(0.6rem, 3vw, 2rem);
    border-radius: 50px;
    background: var(--cactus-red);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    border: 2px solid var(--yellow-flower);
}

.nav-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateX(6px);
}

/* Responsive styling */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-bottom: 2rem;
    }

    .hero-header {
        position: relative;
        top: 0;
        right: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 1.5rem;
        max-width: 75%;
        text-align: center;
        padding: clamp(1rem, 3vh, 2rem);
    }

    .side-nav {
        position: relative;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 2rem;
        flex-direction: column;
        gap: clamp(1rem, 8vh, 4rem);
        align-items: center;
    }

    .nav-btn {
        width: 80%;
        max-width: 250px;
        font-size: clamp(1rem, 3vw, 2rem);
        padding: clamp(0.6rem, 2vh, 1rem) clamp(1rem, 4vw, 2rem);
    }
}