/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --primary: #C41E3A;
    --secondary: #8B1538;
    --tertiary: #E63946;
    --dark: #1a1a1a;
    --cream: #F5F5F5;
    --text-dark: #2B2D42;
    --white: #FFFFFF;

    /* Colores Específicos Delivery */
    --uber: #06C167;
    --glovo: #FFC244;
    --justeat: #D60E18;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}

/* =========================================
   2. HEADER & HERO (Fiel al original)
   ========================================= */
header {
    position: relative;
    height: 60vh;
    min-height: 500px;
    margin-top: 80px;
    /* Espacio para el menú fijo */

    /* FONDO ORIGINAL EXACTO (Lunares + Gradiente + Imagen) */
    background:
        radial-gradient(circle, rgba(0, 0, 0, 0.15) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(0, 0, 0, 0.15) 1.5px, transparent 1.5px),
        linear-gradient(135deg, rgba(196, 30, 58, 0.85) 0%, rgba(139, 21, 56, 0.9) 100%),
        url('https://media.istockphoto.com/id/1005974960/es/foto/américa-latina-desayuno-arepas-con-varios-ingredientes.jpg?s=612x612&w=0&k=20&c=vbbEj8-LHxgtYNEE4k3IlGV8bwGb569w2LKd9ydhos4=') center/cover;
    background-size: 50px 50px, 50px 50px, cover, cover;
    background-position: 0 0, 25px 25px, center, center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Efecto viñeta sutil original */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-logo-container {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
    animation: slideDown 1s ease-out;
}

.hero-logo {
    max-width: 400px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}

.tagline {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeIn 1s ease-out 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

/* =========================================
   3. NAVEGACIÓN SUPERIOR (Fiel al original)
   ========================================= */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* Fondo con lunares sutiles en rojo para el menú */
    background:
        radial-gradient(circle, rgba(196, 30, 58, 0.12) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(196, 30, 58, 0.12) 1.5px, transparent 1.5px),
        var(--white);
    background-size: 30px 30px, 30px 30px, cover;
    background-position: 0 0, 15px 15px, center;
    padding: 0.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.main-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-family: 'Pathway Gothic One', sans-serif;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary);
}

nav a:hover::after {
    width: 100%;
}

/* =========================================
   4. ESTILOS GENERALES Y BOTONES
   ========================================= */
section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 8vw, 4.5rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.title-icon-left {
    height: 60px;
    vertical-align: middle;
    margin-right: 15px;
}

.title-icon-right {
    height: 60px;
    vertical-align: middle;
    margin-left: 15px;
}

.light {
    color: white;
}

/* Botones Genéricos */
.btn {
    padding: 1rem 2.5rem;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--primary);
    color: white;
    transform: skew(-5deg);
}

.btn-primary:hover {
    background: var(--tertiary);
    transform: skew(-5deg) translateY(-3px);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    transform: skew(-5deg);
}

.btn-secondary:hover {
    background: var(--cream);
    transform: skew(-5deg) translateY(-3px);
}

/* =========================================
   5. SECCIÓN NOSOTROS
   ========================================= */
#nosotros {
    background: white;
    position: relative;
}

/* Barra de color superior */
#nosotros::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--tertiary) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 2rem;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    font-size: 1.5rem;
    color: white;
    background: var(--primary);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-text {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 20px 20px 0 var(--primary);
}

.btn-margin {
    margin-top: 2rem;
}

/* =========================================
   6. MENÚ DE COMIDA
   ========================================= */
#menu {
    background: var(--dark);
    color: white;
    max-width: 100%;
}

.menu-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.menu-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-left: 4px solid var(--primary);
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.menu-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.menu-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.menu-card h3 {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.menu-cta {
    text-align: center;
}

#pedidos {
    background: var(--cream);
    display: flex;
    justify-content: center;
    padding: 4rem 2rem;
}

.order-card-split {
    width: 100%;
    max-width: 1100px;
    background: var(--dark);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.order-half {
    flex: 1;
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
}

.order-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pickup-half {
    background: radial-gradient(circle at 20% 30%, rgba(196, 30, 58, 0.15) 0%, transparent 50%), var(--dark);
}

.delivery-half {
    background: radial-gradient(circle at 80% 70%, rgba(6, 193, 103, 0.15) 0%, transparent 50%), var(--dark);
}

.order-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.pickup-half .order-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.delivery-half .order-icon {
    background: linear-gradient(135deg, #06C167, #05a557);
    color: white;
}

.order-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: 1px;
}

.order-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 320px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.divider-line {
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
    position: relative;
    z-index: 10;
}

.divider-line::after {
    content: 'O';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark);
    color: rgba(255, 255, 255, 0.4);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
}

.delivery-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
}

.order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    height: 60px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: white;
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pickup-btn {
    background: var(--primary);
    color: white;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    gap: 10px;
}

.btn-uber {
    background: var(--uber);
}

.btn-glovo {
    background: var(--glovo);
}

.btn-justeat {
    background: var(--justeat);
}

.delivery-logo-img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.filter-white {
    filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
    .order-card-split {
        flex-direction: column;
    }

    .divider-line {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
        margin: 0;
    }

    .divider-line::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }
}

/* =========================================
   8. GALERÍA
   ========================================= */
#galeria {
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: white;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

/* =========================================
   9. CONTACTO & FOOTER
   ========================================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: white;
    background: var(--primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details h3 {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.map-container {
    height: 100%;
    min-height: 400px;
    background: #ddd;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-social h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-love {
    color: var(--primary);
    animation: pulse 1.5s infinite;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 1rem;
    text-align: center;
    border-top: 3px solid var(--primary);
    z-index: 9999;
    display: none;
}

.btn-cookie {
    background: var(--primary);
    color: white;
    border: none;
    padding: 5px 15px;
    margin-left: 10px;
    cursor: pointer;
}

/* =========================================
   10. ANIMACIONES & RESPONSIVE
   ========================================= */
@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@media (max-width: 900px) {
    .order-card-split {
        flex-direction: column;
    }

    .divider-line {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 300px;
    }

    /* Menú móvil simplificado */
    .top-nav {
        flex-direction: column;
        height: auto;
        padding: 1rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 1rem;
    }

    header {
        margin-top: 140px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2.5rem;
    }

    .hero-logo {
        max-width: 280px;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
}

/**/


/* =========================================
   CARTA.HTML - PÁGINA DE MENÚ COMPLETO
   ========================================= */

.page-header {
    background:
        radial-gradient(circle, rgba(196, 30, 58, 0.12) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(196, 30, 58, 0.12) 1.5px, transparent 1.5px),
        var(--white);
    background-size: 30px 30px, 30px 30px;
    background-position: 0 0, 15px 15px;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

.logo-container img {
    height: 50px;
    width: auto;
}

.back-button {
    padding: 0.8rem 1.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

.hero-section {
    background:
        radial-gradient(circle, rgba(0, 0, 0, 0.1) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(0, 0, 0, 0.1) 1.5px, transparent 1.5px),
        linear-gradient(135deg, rgba(196, 30, 58, 0.9) 0%, rgba(139, 21, 56, 0.95) 100%);
    background-size: 50px 50px, 50px 50px, cover;
    background-position: 0 0, 25px 25px, center;
    padding: 3rem 2rem 2rem;
    text-align: center;
    color: white;
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 0 var(--dark);
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}

.order-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1.5rem 2rem;
    background: var(--dark);
}

.order-btn-carta {
    padding: 1rem 2rem;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: white;
}

.btn-pickup {
    background: var(--primary);
}

.btn-pickup:hover {
    background: var(--tertiary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(196, 30, 58, 0.4);
}

.btn-delivery-carta {
    background: #06C167;
}

.btn-delivery-carta:hover {
    background: #05a557;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(6, 193, 103, 0.4);
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.category-section {
    background: white;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.category-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 1.5rem 2rem;
    position: relative;
}

.category-header h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.category-description {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.1rem;
    opacity: 0.95;
    letter-spacing: 0.05em;
}

.category-price {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

.items-grid {
    padding: 2rem;
}

.menu-item {
    padding: 1.5rem 0;
    border-bottom: 2px dotted #e0e0e0;
    transition: all 0.3s ease;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background: rgba(196, 30, 58, 0.02);
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0 -1rem;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    gap: 1rem;
}

.item-name {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.5rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex: 1;
}

.item-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--primary);
    white-space: nowrap;
}

.item-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-top: 0.5rem;
}

.item-note {
    font-size: 1rem;
    color: var(--secondary);
    margin-top: 0.5rem;
    font-style: italic;
}

.item-options {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.item-options li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
    list-style-type: circle;
}

.category-note {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(139, 21, 56, 0.05) 100%);
    padding: 1.5rem 2rem;
    border-top: 3px solid var(--primary);
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.category-note i {
    margin-right: 0.5rem;
}

.promos-section {
    background: var(--dark);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.promos-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.promo-card h3 {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.promo-card p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.promo-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: white;
}

/* Sección Delivery en Carta */
.carta-delivery-section {
    background: var(--cream);
    padding: 4rem 2rem;
    margin-top: 3rem;
}

.carta-delivery-card {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--dark);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.carta-delivery-half {
    flex: 1;
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
}

.carta-delivery-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.carta-pickup-half {
    background: radial-gradient(circle at 20% 30%, rgba(196, 30, 58, 0.15) 0%, transparent 50%), var(--dark);
}

.carta-delivery-half-bg {
    background: radial-gradient(circle at 80% 70%, rgba(6, 193, 103, 0.15) 0%, transparent 50%), var(--dark);
}

.carta-delivery-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.carta-pickup-half .carta-delivery-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.carta-delivery-half-bg .carta-delivery-icon {
    background: linear-gradient(135deg, #06C167, #05a557);
    color: white;
}

.carta-delivery-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: 1px;
}

.carta-delivery-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 320px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.carta-divider-line {
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
    position: relative;
    z-index: 10;
}

.carta-divider-line::after {
    content: 'O';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark);
    color: rgba(255, 255, 255, 0.4);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
}

.carta-delivery-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
}

.carta-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    height: 60px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: white;
}

.carta-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.carta-pickup-btn {
    background: var(--primary);
    color: white;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    gap: 10px;
}

.carta-btn-uber {
    background: var(--uber);
}

.carta-btn-glovo {
    background: var(--glovo);
}

.carta-btn-justeat {
    background: var(--justeat);
}

/* Responsive Carta */
@media (max-width: 900px) {
    .carta-delivery-card {
        flex-direction: column;
    }

    .carta-divider-line {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
        margin: 0;
    }

    .carta-divider-line::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    /* Ajuste para evitar que el header se coma el título en móviles */
    .hero-section {
        margin-top: 140px;
    }
}

@media (max-width: 768px) {
    .page-header {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .header-content {
        justify-content: center;
    }

    .order-buttons {
        flex-direction: column;
        padding: 1rem;
    }

    .order-btn-carta {
        width: 100%;
        justify-content: center;
    }

    .menu-container {
        padding: 2rem 1rem;
    }

    .category-header {
        padding: 1rem 1.5rem;
    }

    /* Ajuste adicional para tablets y móviles grandes */
    .hero-section {
        margin-top: 160px;
    }

    .items-grid {
        padding: 1.5rem 1rem;
    }

    .item-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .item-name {
        font-size: 1.3rem;
    }

    .item-price {
        font-size: 1.8rem;
        align-self: flex-start;
    }
}

.hero-section {
    margin-top: 80px;
    max-width: 100% !important;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* =========================================
   NUESTRAHISTORIA.HTML - PÁGINA DE HISTORIA
   ========================================= */

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.story-content {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    position: relative;
}

.story-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--tertiary) 100%);
    border-radius: 10px 10px 0 0;
}

.story-intro {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary);
}

.story-text {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-text:first-of-type:first-letter {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary);
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(139, 21, 56, 0.05) 100%);
    padding: 2rem;
    border-left: 5px solid var(--primary);
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box h3 {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.highlight-box p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.family-section {
    margin-top: 4rem;
}

.family-image-container {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
    box-shadow: 20px 20px 0 var(--primary);
    border-radius: 10px;
    overflow: hidden;
}

.family-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.family-image-container:hover img {
    transform: scale(1.05);
}

.image-caption {
    text-align: center;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.values-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.2);
}

.value-card i {
    font-size: 3rem;
    color: white;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.value-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

/* Carrusel de Galería */
.carousel-section {
    margin-top: 5rem;
    background: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 0;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 10px;
    min-height: 500px;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: var(--tertiary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--primary);
    transform: scale(1.3);
    border-color: var(--primary);
}

.indicator:hover {
    background: var(--secondary);
}

.carousel-counter {
    text-align: center;
    margin-top: 1rem;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    letter-spacing: 0.1em;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .content-section {
        padding: 3rem 1.5rem;
    }

    .story-content {
        padding: 2.5rem 2rem;
    }

    .carousel-slide {
        min-height: 450px;
    }

    .carousel-slide img {
        max-height: 550px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .content-section {
        padding: 2rem 1rem;
    }

    .story-content {
        padding: 2rem 1.5rem;
    }

    .story-intro {
        font-size: 1.3rem;
        padding-left: 0.75rem;
    }

    .story-text {
        font-size: 1.1rem;
        text-align: left;
        line-height: 1.8;
    }

    .story-text:first-of-type:first-letter {
        font-size: 2.5rem;
    }

    .highlight-box {
        padding: 1.5rem;
    }

    .highlight-box h3 {
        font-size: 1.6rem;
    }

    .highlight-box p {
        font-size: 1.1rem;
    }

    .family-image-container {
        box-shadow: 10px 10px 0 var(--primary);
        margin: 2rem auto;
    }

    .image-caption {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .values-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-card i {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .value-card h3 {
        font-size: 1.5rem;
    }

    .carousel-section {
        padding: 2rem 1rem;
        margin-top: 3rem;
    }

    .carousel-wrapper {
        margin-top: 2rem;
    }

    .carousel-slide {
        min-height: 400px;
    }

    .carousel-slide img {
        max-height: 500px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-btn.prev {
        left: 5px;
    }

    .carousel-btn.next {
        right: 5px;
    }

    .carousel-indicators {
        gap: 8px;
        margin-top: 1.5rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .carousel-counter {
        font-size: 1rem;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .content-section {
        padding: 1.5rem 0.75rem;
    }

    .story-content {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }

    .story-intro {
        font-size: 1.2rem;
    }

    .story-text {
        font-size: 1rem;
    }

    .highlight-box {
        padding: 1rem;
    }

    .highlight-box h3 {
        font-size: 1.4rem;
    }

    .highlight-box p {
        font-size: 1rem;
    }

    .family-image-container {
        box-shadow: 8px 8px 0 var(--primary);
    }

    .carousel-slide {
        min-height: 350px;
    }

    .carousel-slide img {
        max-height: 450px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .value-card h3 {
        font-size: 1.3rem;
    }

    .value-card p {
        font-size: 1rem;
    }
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
    .carousel-container {
        transition: none;
    }

    .carousel-slide img,
    .family-image-container img,
    .value-card {
        transition: none;
    }
}

/* Optimización para pantallas pequeñas en landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .carousel-slide {
        min-height: 300px;
    }

    .carousel-slide img {
        max-height: 350px;
    }
}

footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info {
    text-align: center;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.footer-social,
.footer-contact {
    text-align: center;
}

.footer-social h3,
.footer-contact h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    color: #C41E3A;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #C41E3A;
    transform: translateY(-5px) rotate(15deg);
    box-shadow: 0 10px 25px rgba(196, 30, 58, 0.4);
}

.footer-contact p {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-contact p a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact p a:hover {
    color: #C41E3A;
}

.footer-contact i {
    color: #C41E3A;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-love {
    color: #C41E3A;
    font-size: 1.2rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-social h3,
    .footer-contact h3 {
        font-size: 1.5rem;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .footer-contact p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-tagline {
        font-size: 1rem;
    }

    .social-icons {
        gap: 0.8rem;
    }

    .footer-bottom {
        font-size: 0.9rem;
    }

    .footer-love {
        font-size: 1rem;
    }

    /* Ajuste para móviles pequeños donde el header es más alto */
    .hero-section {
        margin-top: 180px;
    }
}

/* =========================================
   PDF VIEWER & COLLAPSIBLE MENU SECTION
   ========================================= */

.pdf-viewer-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.pdf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary);
    flex-wrap: wrap;
    gap: 1rem;
}

.pdf-header h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--dark);
    letter-spacing: 0.05em;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pdf-header h2 i {
    color: var(--primary);
}

.download-btn {
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

.download-btn:hover {
    background: linear-gradient(135deg, var(--tertiary) 0%, var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

.download-btn i {
    font-size: 1.2rem;
}

.pdf-container {
    width: 100%;
    height: 800px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
}

.pdf-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.collapsible-menu-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.menu-toggle-btn {
    width: 100%;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.3);
    margin-bottom: 1.5rem;
}

.menu-toggle-btn:hover {
    background: linear-gradient(135deg, var(--tertiary) 0%, var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

.menu-toggle-btn:active {
    transform: translateY(-1px);
}

.toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.menu-container {
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Responsive adjustments for PDF viewer */
@media (max-width: 768px) {
    .pdf-viewer-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .pdf-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .pdf-header h2 {
        font-size: 1.5rem;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .pdf-container {
        height: 600px;
    }

    .collapsible-menu-section {
        padding: 0 1rem 1.5rem;
    }

    .menu-toggle-btn {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .pdf-header h2 {
        font-size: 1.3rem;
    }

    .download-btn {
        font-size: 1rem;
        padding: 0.9rem;
    }

    .pdf-container {
        height: 500px;
    }

    .menu-toggle-btn {
        padding: 1rem;
        font-size: 1rem;
    }

    .toggle-text {
        font-size: 0.95rem;
    }
}