/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 90vh;
    /* Reduced from 100vh */
    max-height: 800px;
    min-height: 500px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10vh;
    /* Push visual center up */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* Add a subtle zoom effect */
    animation: heroZoom 20s infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
    transform: translateY(-50px);
    /* Explicitly move up */
}


.hero-title {
    font-family: 'Roca', serif;
    font-weight: 700;
    font-size: 2.5rem;
    /* Mobile first */
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Roca', serif;
    font-weight: 300;
    font-size: 1.1rem;
    /* Mobile first */
    letter-spacing: 1px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.8s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    /* Slightly smaller on mobile */
    background: #FF8C00;
    color: white;
    font-family: 'Roca', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 1.1s;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    font-size: 0.9rem;
}

.hero-btn:hover {
    background: white;
    color: #FF8C00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}



@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@media (min-width: 768px) {
    .hero-section {
        height: 85vh;
        /* Taller on desktop but not full screen */
        min-height: 600px;
    }

    .hero-title {
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .hero-btn {
        padding: 15px 40px;
        font-size: 1rem;
    }


}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }
}