body {
    background-color: #f6f3ee !important;
}

body nav,
body footer {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

/* FONTS */

@font-face {
    font-family: "Empirica";
    src:
        url("../fonts/empirica.woff2") format("woff2"),
        url("../fonts/empirica.woff") format("woff");
    font-weight: normal;
	font-style: normal;
    font-display: swap;
}

.empirica {
    font-family: "Empirica", serif;
}

.lmr-bajada {
    font-size: 1.2rem;
}

.lmr-carmen {
    border-bottom: 1px solid #c66939;
}
    

.lmr-hero {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.lmr-button {
    background-color: #c66939;
    color: #ffffff;
    text-transform: uppercase;
}



.recipe-section {
    background-color: #f5f2ed;
    overflow: hidden;
}

.recipe-heading {
    color: #8d8b88;
    letter-spacing: 3px;
}

.recipe-heading p {
    font-size: 16px;
}

.recipe-heading-line {
    position: relative;
    display: block;
    width: 55%;
    height: 1px;
    margin: 0 auto;
    background-color: #9b9995;
}

.recipe-heading-line::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #9b9995;
    transform: translateY(-50%);
}

.recipe-card {
    position: relative;
    padding: 45px 40px 35px;
    background-color: #d8d5cd;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 55px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.recipe-bottle-column {
    position: relative;
    min-height: 500px;
}

.recipe-bottle {
    position: absolute;
    bottom: -35px;
    left: 50%;
    width: auto;
    max-height: 610px;
    transform: translateX(-50%);
}

.recipe-bib {
    position: absolute;
    left: 50%;
    width: auto;
    max-height: 610px;
    transform: translateX(-50%);
}

.recipe-content {
    padding-right: 30px;
}

.recipe-content h3 {
    margin-bottom: 25px;
    padding-bottom: 20px;
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: 3px;
    border-bottom: 1px solid #343434;
}

.recipe-ingredients {
    margin: 0 0 20px;
    padding: 0 0 20px 20px;
    font-size: 1.2rem; /* igual que .lmr-bajada */
    line-height: 1.4;
    border-bottom: 1px solid #343434;
}

.recipe-description {
    font-size: inherit;
    line-height: 1.5;
}

.recipe-image {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 55px;
}


.recipe-header-mobile{
    display:none;
}

.recipe-header-desktop{
    display:block;
}

.recipe-bottle-mobile{
    max-height:320px;
    width:auto;
}


@media (max-width: 991.98px) {

    .recipe-card {
        padding: 35px 30px;
        border-radius: 35px;
    }

    .recipe-bottle-column {
        min-height: auto;
        margin-bottom: 30px;
    }

    .recipe-bottle, .recipe-bib {
        position: static;
        max-height: 400px;
        transform: none;
    }

    .recipe-content {
        padding-right: 15px;
        margin-bottom: 30px;
    }

    .recipe-content h3 {
        font-size: 30px;
    }

    .recipe-ingredients {
        font-size: 1.1rem;
    }
    .recipe-description {
        font-size: inherit;
    }

    .recipe-image {
        height: auto;
        max-height: 450px;
    }

        .recipe-header-mobile{
        display:block;
        margin-bottom:25px;
    }

    .recipe-header-desktop{
        display:none;
    }

    .recipe-bottle-mobile{
        max-height:340px;
    }

    .recipe-description{
        margin-top:10px;
    }

    .recipe-image-column{
        margin-top:25px;
    }
}

@media (max-width: 575.98px) {

    .recipe-heading p {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .recipe-heading-line {
        width: 80%;
    }

    .recipe-card {
        padding: 30px 20px;
        border-radius: 25px;
    }

    .recipe-content h3 {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .recipe-ingredients {
        font-size: 1rem;
    }

    .recipe-description {
        font-size: inherit;
    }

    .recipe-image {
        border-radius: 30px;
    }

    .recipe-bottle-mobile{
        max-height:260px;
    }

    .recipe-header-mobile h3{
        margin-bottom:15px;
    }
}


