.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px); /* Reduced from calc(100vh - 80px) */
    margin: 0;
    padding: 0;
    background-size:contain;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: black;
    color: var(--neutral-white);
    width: 90%;
    max-width: 1200px;
    padding: 3rem;
    margin: 0 auto;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    background: rgba(0,0,0,0.4);
}

.hero-content h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    margin-bottom: 1rem;
    color: var(black);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 2rem);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.cta-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--accent-orange);
    color: var(--neutral-white);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out 1s backwards;
}

.cta-btn:hover {
    background: var(--deep-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
