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

body {
    font-family: 'Caveat', cursive;
    background-color: #F5EBE0;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F5EBE0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 0.5s ease-in-out 2s forwards;
}

.loader-icon {
    width: 150px;
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.container {
    background-color: #F5EBE0;
    width: 100%;
    min-height: 100vh;
    border: 15px solid #A94438;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 4px solid #A94438;
    margin-bottom: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-direction: row-reverse;
}

.nav-icon {
    width: 60px;
    height: auto;
}

.nav-brand {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3D3D3D;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #A94438;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    transition: transform 0.2s;
}

.nav-link:hover {
    transform: scale(1.1);
}

/* Main Content */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
}

/* Card Styles */
.card {
    background-color: #FFFFFF;
    border: 8px solid #A94438;
    border-radius: 20px;
    padding: 40px;
}

.menu-card {
    width: 100%;
}

.hours-card {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.card-title {
    font-size: 3rem;
    color: #A94438;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.divider {
    width: 60%;
    height: 4px;
    background-color: #A94438;
    margin: 0 auto 30px;
}

/* Hours Section */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day {
    font-size: 2rem;
    font-weight: 700;
    color: #3D3D3D;
}

.time {
    font-size: 1.8rem;
    color: #A94438;
    font-weight: 600;
}

/* Menu Section */
.menu-section {
    margin-bottom: 35px;
}

.menu-section:last-of-type {
    margin-bottom: 0;
}

.menu-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3D3D3D;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #A94438;
}

.menu-description {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 10px;
    font-style: italic;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E5D5C5;
}

.item-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3D3D3D;
    flex: 1;
    line-height: 1.4;
}

.item-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #A94438;
    white-space: nowrap;
}

/* Note */
.note {
    font-size: 1.3rem;
    color: #666;
    text-align: center;
    font-style: italic;
}

/* Ubicacion Section */
.ubicacion-section {
    padding: 40px 20px;
    margin-top: 20px;
}

.section-title {
    font-size: 3.5rem;
    color: #A94438;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    max-width: 900px;
    margin: 0 auto 30px;
    border: 8px solid #A94438;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

.address-info {
    text-align: center;
    margin-top: 20px;
}

.address-text {
    font-size: 1.8rem;
    color: #3D3D3D;
    font-weight: 600;
    margin: 10px 0;
}

/* Contacto Section */
.contacto-section {
    padding: 40px 20px 60px;
    margin-top: 20px;
    text-align: center;
}

.contact-simple {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.contact-phone {
    font-size: 2.5rem;
    color: #3D3D3D;
    font-weight: 700;
    font-style: italic;
}

.whatsapp-btn {
    display: inline-block;
    font-size: 2rem;
    color: #FFFFFF;
    background-color: #25D366;
    padding: 18px 50px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s, background-color 0.2s;
}

.whatsapp-btn:hover {
    background-color: #20BA5A;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .nav-brand {
        font-size: 1.8rem;
    }

    .nav-icon {
        width: 50px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .card {
        padding: 30px;
    }

    .card-title {
        font-size: 2.5rem;
    }

    .day, .time {
        font-size: 1.5rem;
    }

    .menu-section-title {
        font-size: 1.8rem;
    }

    .menu-description {
        font-size: 1.2rem;
    }

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

    .item-price {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .address-text {
        font-size: 1.5rem;
    }

    .contact-phone {
        font-size: 2rem;
    }

    .whatsapp-btn {
        font-size: 1.6rem;
        padding: 15px 40px;
    }
}

@media (max-width: 480px) {
    .container {
        border-width: 10px;
        padding: 15px;
    }

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-brand {
        font-size: 1.5rem;
    }

    .nav-icon {
        width: 40px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .content {
        padding: 10px;
    }

    .card {
        padding: 20px;
    }

    .card-title {
        font-size: 2rem;
    }

    .day, .time {
        font-size: 1.3rem;
    }

    .menu-section-title {
        font-size: 1.5rem;
    }

    .menu-description {
        font-size: 1.1rem;
    }

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

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

    .note {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .address-text {
        font-size: 1.3rem;
    }

    .map-container {
        border-width: 5px;
    }

    .contact-phone {
        font-size: 1.6rem;
    }

    .whatsapp-btn {
        font-size: 1.4rem;
        padding: 12px 30px;
    }
}
