/* HERO */
* {
    font-family: 'Libre Baskerville';
}

.hero {
    height: 90vh;
    background: url('/static/images/originales/africain/mafe.jpeg') center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.6);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn-hero {
    background: #412018 !important;
    color: white !important;
    padding: 15px 30px;
    margin-top: 20px;
    text-decoration: none;
}

/* SECTION */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* CARDS */
.dish-card {
    text-align: center;
}

.dish-card img {
    width: 100%;
    border-radius: 10px;
}

/* STORY */
.story {
    background: #f8f8f8;
    padding: 60px 0;
}

.story2 {
    background: orangered;
    padding: 60px 0;
}

.story3 {
    background: whitesmoke;
    padding: 60px 0;
}

.story4 {
    background: #F0D79F;
    padding: 60px 0;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.story-content img {
    width: 50%;
    border-radius: 10px;
}

/* GALLERY */
.gallery img {
    width: 100%;
}

/* INFO */
.info {
    background: #222;
    color: white;
    text-align: center;
    padding: 50px;
}

/* CTA */
.cta {
    text-align: center;
    padding: 60px;
}

.btn-cta {
    background: #412018 !important;
    color: white !important;
    padding: 15px 40px;
    text-decoration: none;
}



/* RESPONSIVE */
@media (max-width: 768px) {
    .story-content {
        flex-direction: column;
        text-align: center;
    }

    .story-content img {
        width: 100%;
    }

    .story-content div {
        width: 100%;
    }
}