

/* Banner Section */
.recipes-banner {
    width: 100%;
    min-height: 600px;
    /* Reemplazar con la ruta de tu imagen local */
    background: linear-gradient(to right, rgba(0,0,0,0.5) 20%, transparent 80%), 
                url('images/recipes.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 20px 0;
}

.recipes-banner-container {
    width: 90%;
    margin: 0 auto;
}

.recipes-banner-content {
    max-width: 700px;
}

.recipes-banner-content h1 {
    font-size: 2.3rem;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 700;
}

.recipes-banner-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.recipes-banner-actions {
    display: flex;
    gap: 20px;
}

/* Recipes section */
body {
    background-image: url("images/paper-back.png");
}

.recipes-section {
    padding: 30px 5%;
    background-color: transparent; /* Hereda el fondo de papel del contenedor principal */
}

.section-title {
    font-family: 'MuseoSansRounded700', sans-serif;
    color: #2d5a3a; /* Verde marca */
    font-size: 28px;
    margin-bottom: 30px;
    text-align: left;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.recipe-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-5px);
}

.recipe-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.recipe-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recipe-content h3 {
    font-family: 'MuseoSansRounded700', sans-serif;
    font-size: 18px;
    color: #333;
    margin: 0;
}

.recipe-meta {
    font-family: 'MuseoSansRounded300', sans-serif;
    font-size: 14px;
    color: #666;
    display: flex;
    gap: 10px;
    align-items: center;
}

.recipe-meta i {
    color: #8cb85c;
}

.btn-recipe {
    width: 70%;
    background-color: #2d5a3a; /* Verde oscuro del prototipo */
    color: #ffffff;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'MuseoSansRounded700', sans-serif;
    font-size: 14px;
    margin-top: 5px;
    transition: background-color 0.3s;
}

.btn-recipe:hover {
    background-color: #3e7a4e;
}

/* Responsivo para tablets y móviles */
@media (max-width: 992px) {
    .recipes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .recipes-grid { grid-template-columns: 1fr; }
}