@import url('variables.css');
@import url('navigation.css');

/* Home Page Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 20, 16, 0.5);
    z-index: 2;
}

.hero-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: var(--rosy-copper-500);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: var(--dark-coffee-200);
    width: 100%;
    max-width: none;
    margin: 0 auto 2rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn-explore {
    display: inline-block;
    padding: 1.5rem 2.5rem;
    background-color: var(--rosy-copper-500);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-explore:hover {
    background-color: var(--rosy-copper-600);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}
