* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background-color: #0a0a0a;
    border-bottom: 2px solid #ff0000;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    height: 40px;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff0000;
}

.historia-intro-section {
    background-color: #000;
    padding: 80px 60px 40px;
}

.historia-header-content {
    text-align: center;
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 50px;
}

.historia-title {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    color: #fff;
    margin-bottom: 10px;
}

.title-underline {
    width: 600px;
    height: 2px;
    background-color: #ff0000;
    margin: 0 auto 20px auto;
}

.historia-subtitle {
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
}

.historia-images-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.image-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.historia-images-top .image-wrapper:nth-child(1) img,
.historia-images-top .image-wrapper:nth-child(3) img {
    filter: grayscale(100%);
    opacity: 0.9;
}

.caption {
    height: 0;
    padding: 0;
}

.historia-details-section {
    background-color: #ff0000;
    padding: 80px 60px;
    color: #fff;
    text-align: left;
}

.details-text-column {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.propietario {
    font-weight: 700;
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: left;
}

.details-quote {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item {
    padding: 10px;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9em;
    font-weight: 400;
}

.historia-final-text-section {
    background-color: #fff;
    padding: 80px 60px;
    color: #000;
    border-top: 2px solid #ff0000;
}

.final-text-content {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.final-text-column {
    flex: 2;
    text-align: left;
}

.final-text-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #ff0000;
    margin-bottom: 30px;
}

.final-text-column p {
    font-size: 1.1em;
    color: #000;
    margin-bottom: 15px;
}

.final-images-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.final-images-column .image-wrapper {
    height: 200px;
}

.final-images-column .image-wrapper img {
    height: 100%;
}

.chef-quote-section {
    background-color: #ff0000;
    color: #fff;
    padding: 0;
    position: relative;
    height: 720px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chef-image-container-full {
    position: relative;
    width: 100%;
    height: 100%;
}

.chef-image-container-full img {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: auto;
    object-fit: contain;
    z-index: 1;
}

.chef-text-overlay {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 550px;
    text-align: left;
    z-index: 2;
}

.chef-quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.6em;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 25px;
}

.chef-quote-author {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
}

.footer {
    background-color: #000;
    padding: 20px 60px 20px;
    text-align: center;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6em;
    color: #fff;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.2);
}

.copy {
    color: #ff0000;
    font-size: 0.85em;
}

@media (max-width: 900px) {
    .navbar {
        padding: 18px 20px;
    }

    .historia-intro-section {
        padding: 60px 20px 30px;
    }

    .historia-title {
        font-size: 2.5em;
        margin-bottom: 10px;
    }

    .title-underline {
        width: 80px;
        margin-bottom: 15px;
    }

    .historia-subtitle {
        font-size: 1em;
    }

    .historia-images-top {
        flex-direction: column;
        gap: 15px;
    }

    .image-wrapper img {
        height: 250px;
    }

    .historia-details-section {
        padding: 60px 20px;
    }

    .details-quote {
        font-size: 1.8em;
        margin-bottom: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .historia-final-text-section {
        padding: 60px 20px;
    }

    .final-text-content {
        flex-direction: column;
        gap: 40px;
    }

    .final-text-title {
        font-size: 2em;
    }

    .final-text-column p {
        font-size: 1em;
    }

    .final-images-column {
        width: 100%;
        gap: 10px;
    }

    .final-images-column .image-wrapper {
        height: 150px;
    }

    .chef-quote-section {
        height: 580px;
    }

    .chef-image-container-full img {
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left bottom;
    }

    .chef-text-overlay {
        right: 20px;
        left: 20px;
        top: auto;
        bottom: 20px;
        transform: none;
        max-width: none;
        background: rgba(255, 0, 0, 0.7);
        padding: 15px;
        border-radius: 5px;
    }

    .chef-quote-text {
        font-size: 1.6em;
        margin-bottom: 15px;
    }

    .chef-quote-author {
        font-size: 1em;
    }

    .footer {
        padding: 20px;
    }

    .footer-bottom {
        gap: 15px;
    }
}
