:root {
    --primary-color: #d4a373;
    --primary-dark: #b08968;
    --secondary-color: #faedcd;
    --text-light: #fefae0;
    --text-dark: #333333;
    --bg-dark: #1a120b;
    --bg-darker: #130c07;
    --bg-overlay: rgba(0, 0, 0, 0.7);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    overflow-x: hidden;
    width: 100vw;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    width: 100%;
}

/* --- Typography --- */
h1,
h2,
h3,
h5,
.nav-brand {
    font-family: var(--font-heading);
}

.subtitle-center {
    color: var(--primary-color);
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 600;
}

.section-title-dark {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.divider-center {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 20px auto;
}

/* --- General Utilities --- */
.text-white {
    color: white !important;
}

.text-light-grey {
    color: #ccc !important;
}

.text-grey {
    color: #b5b5b5 !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.coming-soon-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 20px;
    max-width: 600px;
    margin: 40px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.coming-soon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.coming-soon-card h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.coming-soon-card p {
    color: #cecece;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.coming-soon-card.dark-variant {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.coming-soon-card.dark-variant p {
    color: #555;
}

/* --- Countdown Timer --- */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.time-box {
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 90px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.15);
    animation: pulseTimer 2s infinite alternate;
}

@keyframes pulseTimer {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 10px rgba(212, 163, 115, 0.1);
    }

    100% {
        transform: scale(1.02);
        box-shadow: 0 8px 20px rgba(212, 163, 115, 0.25);
    }
}

.time-box span {
    display: block;
    color: var(--bg-darker);
    font-size: 2.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4);
}

.time-box .time-label {
    color: var(--bg-darker);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* Promo Highlights */
.promo-highlight-title {
    font-size: 2.8rem !important;
    color: var(--primary-color) !important;
    text-shadow: 0 0 8px rgba(212, 163, 115, 0.2);
    margin-bottom: 20px !important;
}

.promo-highlight-desc {
    font-size: 1.25rem !important;
    color: #fff !important;
    font-weight: 500;
    margin-bottom: 30px !important;
}

/* --- Header & Nav --- */
.main-header {
    background-color: rgba(26, 18, 11, 0.95);
    padding: 0 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 120px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.navbar-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav_logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav_logo img {
    height: 140px;
    /* Adjusted for mobile */
    width: auto;
}

.nav-brand {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-menu-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu-list a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-menu-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu-list a:hover {
    color: var(--primary-color);
}

.nav-menu-list a:hover::after {
    width: 100%;
}

.hamburger-menu {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    background: url('../img/coffeebackgound.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            #000000 0%,
            var(--bg-darker) 50%,
            rgba(26, 18, 11, 0.4) 100%);
    z-index: 1;
}

.hero-container-flex {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 5%;
}

.hero-text-side {
    flex: 1;
    max-width: 650px;
    margin-left: -70px;
}

.hero-text-side h1 {
    font-size: 4.5rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text-side h1 span {
    color: var(--primary-color);
    font-style: italic;
}

.hero-text-side h5 {
    color: white;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-text-side p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-hero-primary,
.btn-hero-secondary,
.btn-form {
    padding: 15px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    /* Modern pill shape */
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-hero-primary {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border: none;
}

.btn-hero-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
    background-color: transparent;
    color: rgb(255, 255, 255);
    border: 2px solid var(--primary-color);
}

.btn-hero-secondary:hover {
    background-color: white;
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.hero-image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
    margin-right: -150px;
}

.floating-img {
    max-width: 450px;
    width: 100%;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.promo-hero-img {
    max-width: 350px;
    width: 100%;
    border: 3px solid white;
    border-radius: 12px;
    outline: 8px solid white;
    outline-offset: 6px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* --- Quienes Somos --- */
.quienes-somos {
    padding: 100px 5%;
    background-color: #ffffff;
    color: var(--text-dark);
    text-align: center;
}

.container-qs {
    max-width: 800px;
    margin: 0 auto;
}

.qs-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.qs-info p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

/* --- Menu / Gallery --- */
.carrusel {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.gallery-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-dark);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 18, 11, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 15px;
}

/* --- Location Section --- */
.location-section {
    padding: 100px 5%;
    background-color: var(--bg-dark);
}

.location-container-full {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.location-info {
    flex: 1;
}

.location-info .title {
    font-size: 3rem;
    margin-bottom: 30px;
    color: white;
}

.address-text {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 10px;
}

.address-text span {
    color: white;
    font-weight: 600;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 40px;
}

/* Hours & Social Container */
.hours-social-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #2b2b2b;
    padding: 30px 40px;
    border-radius: 20px;
    margin-top: 30px;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    gap: 20px;
    flex-wrap: wrap;
}

.hours-column {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.hours-column h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.simple-list {
    list-style: none;
    padding: 0;
}

.simple-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #cecece;
}

.simple-list li.time {
    color: white;
    font-weight: 500;
}

.simple-list li.time.closed {
    color: #ff6b6b;
}

/* Social Icons in Hours Section */
.social-links-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links-row a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links-row a:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.location-map {
    flex: 1;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    /* Removed background color/flex as it's just the map now */
}

.map-wrapper iframe {
    width: 100%;
    min-height: 400px;
    filter: grayscale(20%) contrast(1.1);
    display: block;
}

/* --- Contact Section --- */
.contact-section {
    padding: 80px 5%;
    background-color: var(--bg-darker);
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin-bottom: 80px;
    opacity: 0.3;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    border-radius: 5px;
    border-color: var(--primary-color);
}

.contact-info {
    flex: 1;
}

.contact-info .subtitle {
    color: var(--primary-color);
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.contact-info .title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.contact-form-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-row {
    margin-bottom: 20px;
}

.house-form input,
.house-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.house-form input:focus,
.house-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.btn-form {
    width: 150px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    margin-top: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.btn-form:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--bg-darker);
    color: white;
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-body);
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0 5%;
    gap: 60px;
}

.footer-column {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin: 0;
    font-size: 1.8rem;
}

.footer-column p {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #d0d0d0;
    font-size: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .container-footer {
        flex-direction: column;
        gap: 40px;
    }

    .footer-column {
        width: 100%;
    }
}

/* --- Promociones --- */
.promociones-section {
    padding: 80px 5%;
    background-color: var(--bg-dark);
}

.promo-desc {
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 50px;
}

.promo-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.promo-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    width: 350px;
    text-align: left;
    transition: var(--transition);
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

.promo-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.promo-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promo-card:hover .promo-img-box img {
    transform: scale(1.1);
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.promo-info {
    padding: 25px;
}

.promo-info h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.promo-info p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 45px;
}

.promo-price {
    display: flex;
    align-items: center;
    gap: 15px;
}

.old-price {
    color: #888;
    text-decoration: line-through;
    font-size: 1rem;
}

.new-price {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

/* --- Menu / Carta --- */
.menu-section {
    padding: 100px 5%;
    background-color: #fcfbf8;
    /* Slightly warm off-white */
    color: var(--text-dark);
}

.menu-grid-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.menu-category {
    width: 100%;
}

.menu-category-title {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 163, 115, 0.4);
    /* Subtle line in primary color */
    background-color: transparent;
    /* No solid background block */
    box-shadow: none;
    /* Removed shadow */
}

.menu-items-list {
    list-style: none;
    padding: 0;
}

.menu-items-list li {
    margin-bottom: 30px;
    position: relative;
    transition: var(--transition);
}

.menu-items-list li:hover {
    transform: translateX(5px);
}

.menu-item-hdr {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.menu-item-hdr h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--bg-darker);
    position: relative;
    padding-right: 15px;
    background: #fcfbf8;
    z-index: 1;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-price {
    font-weight: 700;
    color: var(--bg-darker);
    font-size: 1.35rem;
    background: #fcfbf8;
    padding-left: 10px;
    z-index: 1;
}

.menu-item-hdr::after {
    content: "";
    flex-grow: 1;
    border-bottom: 2px dotted #ccc;
    margin: 0 10px;
    position: relative;
    top: -5px;
    z-index: 0;
}

.menu-item-desc {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Badges */
.menu-badge {
    font-family: var(--font-body);
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-left: 8px;
}

.badge-recommended {
    background-color: var(--primary-color);
    color: white;
}

.badge-new {
    background-color: var(--bg-darker);
    color: var(--primary-color);
}

/* Extras Section */
.menu-extras {
    margin-top: 60px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
}

.extras-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--bg-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.extras-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.extras-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.extras-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.extras-price {
    font-weight: 600;
    color: var(--primary-dark);
}



/* --- RESPONSIVENESS (Mobile First Fixes) --- */
@media (max-width: 768px) {

    /* Navbar */
    .hamburger-menu {
        display: block;
        z-index: 1000;
    }

    .nav-menu-list {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        /* Fill rest of screen */
        background-color: rgba(26, 18, 11, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: 0.4s ease-in-out;
        z-index: 999;
    }

    .nav-menu-list.active {
        left: 0;
    }

    .nav-menu-list a {
        font-size: 1.5rem;
        /* Larger touch targets for mobile menu */
    }

    /* Hero */
    .hero-container-flex {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 100px;
    }

    .hero-text-side {
        margin-left: 0;
    }

    .hero-image-side {
        margin-bottom: 20px;
        margin-right: 0;
    }

    .floating-img {
        max-width: 250px;
    }

    .hero-text-side h1 {
        font-size: 3rem;
        margin-left: 10px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        /* Full width buttons on mobile */
    }

    .navbar-custom .btn-hero-primary {
        width: auto;
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    /* Sections */
    .location-container-full,
    .contact-container {
        flex-direction: column;
    }

    .qs-title,
    .location-info .title,
    .contact-info .title {
        font-size: 2.2rem;
    }

    .map-wrapper iframe,
    .carousel-item img {
        height: 300px;
    }

    .hero-section {
        height: auto;
        padding-bottom: 80px;
    }

    .menu-grid-container {
        gap: 40px;
    }

    .promo-cards-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .promo-card {
        width: 100%;
        max-width: 400px;
    }

    .hours-social-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .btn-form {
        margin-left: 0;
        width: 100%;
    }

    /* --- Nuevos Ajustes Móviles --- */
    .quienes-somos,
    .menu-section,
    .carrusel,
    .location-section,
    .contact-section {
        padding: 50px 5%;
    }

    .promo-highlight-title {
        font-size: 2rem !important;
    }

    .menu-nav-links {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 15px 5%;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        gap: 12px;
        background: transparent;
        box-shadow: none;
    }
    
    .menu-nav-links a {
        background: white;
        white-space: nowrap;
        flex-shrink: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        border-radius: 30px;
        padding: 12px 20px;
    }

    .menu-item-hdr::after {
        display: none;
    }

    .menu-item-hdr {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .menu-price {
        padding-left: 0;
        align-self: flex-start;
    }

    .time-box {
        padding: 10px;
        min-width: 60px;
    }

    .time-box span {
        font-size: 1.8rem;
    }
    
    .time-box .time-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .nav_logo img {
        height: 65px;
    }

    .gallery-grid-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    .main-header {
        height: 80px;
    }

    .hero-text-side h1 {
        font-size: 2.2rem;
    }

    .hero-text-side p {
        font-size: 1rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .hours-box {
        padding: 20px;
    }

    .section-title-dark {
        font-size: 2rem;
    }

    .menu-category-title {
        font-size: 1.5rem;
    }

    .menu-nav-links {
        padding: 10px 5%;
        gap: 10px;
    }

    .menu-nav-links a {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}

/* --- Menu Nav Links (Sticky) --- */
.menu-nav-links {
    margin-top: 25px;
    display: inline-flex;
    gap: 15px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
    z-index: 100;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-nav-links a:hover,
.menu-nav-links a.active {
    background-color: var(--primary-color);
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Specialized Menu Footer --- */
.menu-footer {
    background-color: var(--bg-darker);
    padding: 30px 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-footer-content p {
    color: #bbb;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.menu-footer-content strong {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-social-small {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social-small a {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social-small a:hover {
    background: var(--primary-color);
    color: var(--bg-darker);
    transform: translateY(-3px);
}

@media print {

    .main-header,
    .menu-nav-links,
    .menu-footer,
    .no-print {
        display: none !important;
    }

    body,
    .menu-section {
        background-color: white !important;
        color: black !important;
    }

    .menu-grid-container {
        display: block;
    }

    .menu-category {
        page-break-inside: avoid;
        margin-bottom: 30px;
    }

    .menu-item-hdr h4,
    .menu-price {
        background: transparent !important;
    }

    * {
        box-shadow: none !important;
    }
}

/* Modal Backdrop Override */
.modal-backdrop.show {
    opacity: 0.85 !important;
    background-color: #000 !important;
}