/* =====================================================
   Sitio Web - La Cruda Realidad
   Adoptando el Tema "Vintage Cantina"
   ===================================================== */
:root {
    --bg-pergamino: #E8D7B7;
    --bg-darker: #D8C5A1;
    --cafe-oscuro: #3A2A1F;
    --cafe-medio: #5C4532;
    --rojo-vino: #8B2E2E;
    --dorado-suave: #C8A86B;
    --dorado-oscuro: #A68A56;

    --text-primary: #3A2A1F;
    --text-inverse: #E8D7B7;

    --font-display: 'Rye', serif;
    --font-body: 'Playfair Display', serif;

    --paper-texture: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.15"/></svg>');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-pergamino);
    background-image: var(--paper-texture);
    color: var(--text-primary);
    line-height: 1.6;
}

.menu-container {
    width: 90%;
    max-width: 700px;
    margin: 40px auto;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px dashed var(--dorado-oscuro);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(58, 42, 31, 0.15);
}

.header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px dashed var(--dorado-suave);
}

.header img {
    width: 200px;
    filter: drop-shadow(2px 4px 6px rgba(58, 42, 31, 0.3));
    animation: fadeInDown 0.8s ease-out;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--rojo-vino);
    color: var(--text-inverse);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    box-shadow: 0 4px 10px rgba(139, 46, 46, 0.4);
}

.location-btn:hover {
    transform: translateY(-3px);
    background-color: #6a2121;
    box-shadow: 0 6px 15px rgba(139, 46, 46, 0.6);
}

.section {
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease-out forwards;
}

.section h2 {
    color: var(--rojo-vino);
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid var(--dorado-suave);
    padding-bottom: 8px;
}

.section h2 i {
    color: var(--cafe-oscuro);
    font-size: 20px;
}

.section ul {
    list-style: none;
}

.section ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 8px;
    background-color: var(--bg-darker);
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    color: var(--cafe-oscuro);
    transition: transform 0.2s, background-color 0.2s;
}

.section ul li:hover {
    transform: translateX(5px);
    background-color: #cbb48b;
}

.section ul li span {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--rojo-vino);
}

.footer {
    width: 90%;
    max-width: 700px;
    margin: 0 auto 40px;
    background-color: var(--cafe-oscuro);
    border: 2px solid var(--dorado-oscuro);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(58, 42, 31, 0.3);
}

.footer h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--dorado-suave);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.social-links {
    margin-bottom: 25px;
}

.social-links a {
    color: var(--text-inverse);
    text-decoration: none;
    font-weight: 600;
    margin: 0 10px;
    font-size: 16px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--dorado-suave);
}

.social-links i {
    margin-right: 5px;
}

.delivery-apps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    align-items: center;
}

.delivery-apps img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.6));
    transition: transform 0.3s;
    border-radius: 12px;
}

.delivery-apps img:hover {
    transform: scale(1.15) rotate(-3deg);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {

    .menu-container,
    .footer {
        width: 95%;
        padding: 20px;
    }

    .header img {
        width: 170px;
    }

    .section h2 {
        font-size: 20px;
    }

    .section ul li {
        font-size: 16px;
        padding: 10px 12px;
    }

    .section ul li span {
        font-size: 18px;
    }
}