/* ============================================
   MOBILE FIRST - STYLES DE BASE (MOBILE)
   ============================================ */

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

:root {
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --gold: #FFD700;
    --gold-light: #FFE44D;
    --red: #DC143C;
    --green: #25D366;
    --white: #FFFFFF;
    --text-light: #F5F5F5;
    --text-gray: #CCCCCC;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--darker-bg);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

/* ============================================
   HEADER - MOBILE
   ============================================ */
header {
    background: var(--dark-bg);
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.logo-section {
    text-align: left;
    width: auto;
    flex-shrink: 0;
}

.logo-image {
    max-width: 80px;
    height: auto;
    display: block;
    margin: 0;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--red), #B01030);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.5),
                0 0 15px rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    width: auto;
    max-width: none;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
    scroll-behavior: smooth;
    white-space: nowrap;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:active::before {
    left: 100%;
}

.cta-button:active {
    transform: scale(0.96);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.6);
}

.cta-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.cta-text {
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}



/* ============================================
   HERO - MOBILE
   ============================================ */
.hero {
    position: relative;
    padding: 35px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('images/20251113_165824.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content h2 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
                 2px 2px 6px rgba(0, 0, 0, 0.9);
    animation: fadeInUp 0.8s ease-out;
    line-height: 1.2;
}

.location {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.services {
    font-size: 0.85rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.badge {
    background: rgba(255, 215, 0, 0.25);
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 250px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.badge:active {
    background: rgba(255, 215, 0, 0.35);
    transform: scale(0.98);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   GALLERY - MOBILE
   ============================================ */
.gallery {
    padding: 40px 0;
    background: var(--dark-bg);
}

.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.gallery-item:active {
    transform: scale(0.98);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: 25px 20px 20px;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.gallery-overlay p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   CONTACT - MOBILE
   ============================================ */
.contact {
    padding: 30px 0;
    background: var(--darker-bg);
    scroll-margin-top: 100px;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.contact-card {
    background: var(--dark-bg);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.2);
    width: 100%;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.phone-link,
.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    color: var(--white);
    -webkit-tap-highlight-color: transparent;
}

.phone-link {
    background: var(--red);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.4);
}

.phone-link:active {
    background: #B01030;
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.6);
}

.whatsapp-link {
    background: var(--green);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-link:active {
    background: #1DA851;
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.6);
}

.phone-icon,
.whatsapp-icon {
    font-size: 1.5rem;
}

.phone-number {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.delivery-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 16px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 2px solid var(--gold);
    width: 100%;
}

.delivery-header-desktop {
    display: none;
}

.delivery-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 12px;
    background: rgba(255, 215, 0, 0.15);
    border: 1.5px solid var(--gold);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.delivery-toggle:active {
    background: rgba(255, 215, 0, 0.25);
    transform: scale(0.98);
}

.delivery-toggle .delivery-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.delivery-toggle h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    flex: 1;
    text-align: left;
}

.toggle-arrow {
    color: var(--gold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.delivery-toggle.active .toggle-arrow {
    transform: rotate(180deg);
}

.delivery-zones {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    animation: slideDown 0.3s ease;
}

.delivery-zones.active {
    display: flex;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delivery-zone {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.delivery-zone h5 {
    color: var(--gold);
    font-size: 0.95rem;
    margin: 0 0 8px 0;
    font-weight: 700;
    text-align: left;
}

.delivery-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.delivery-list li {
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 3px 0;
    text-align: left;
    line-height: 1.4;
}

.delivery-info p {
    color: var(--gold-light);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.delivery-minimum {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ============================================
   MENU - MOBILE
   ============================================ */
.menu {
    padding: 30px 0;
    background: var(--darker-bg);
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    padding: 0 10px;
}

.menu-quick-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
    padding: 0 10px;
}

.quick-nav-item {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(255, 215, 0, 0.1);
    border: 1.5px solid var(--gold);
    border-radius: 20px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

.quick-nav-item:active {
    background: rgba(255, 215, 0, 0.25);
    transform: scale(0.95);
    border-color: var(--gold-light);
}

.menu-category {
    margin-bottom: 20px;
    background: var(--dark-bg);
    border-radius: 10px;
    padding: 12px 10px;
    border: 1.5px solid var(--gold);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
    overflow: hidden;
    scroll-margin-top: 100px;
}

.category-title {
    font-size: 1.2rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    font-weight: 700;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.menu-item:active {
    transform: scale(0.98);
    border-color: var(--gold);
}

.menu-item-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Menu items sans images */
.menu-item:not(:has(.menu-item-image)) {
    min-height: auto;
}

.menu-item-content {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    gap: 10px;
}

.menu-item h4 {
    color: var(--gold);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
    flex: 1;
    line-height: 1.2;
}

.menu-item .price {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.menu-item p {
    color: var(--text-gray);
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 2px;
    flex: 1;
}

.supplement-note {
    color: var(--gold-light);
    font-size: 0.7rem;
    font-style: italic;
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark-bg);
    padding: 8px 14px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: auto;
    box-shadow: 0 3px 12px rgba(255, 215, 0, 0.4);
    align-self: flex-start;
}

/* ============================================
   FEATURES - MOBILE
   ============================================ */
.features {
    padding: 30px 0;
    background: var(--dark-bg);
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.feature-card {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:active {
    transform: scale(0.98);
    border-color: var(--gold);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
    filter: drop-shadow(0 0 12px var(--gold));
    animation: pulse 2s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon {
    animation-delay: 0.3s;
}

.feature-card:nth-child(3) .feature-icon {
    animation-delay: 0.6s;
}

.feature-card:nth-child(4) .feature-icon {
    animation-delay: 0.9s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.feature-card h3 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* ============================================
   INFO - MOBILE
   ============================================ */
.info {
    padding: 30px 0;
    background: var(--darker-bg);
}

.info-card {
    background: var(--dark-bg);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    width: 100%;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.2);
}

.info-card h3 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hours {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.hours p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 6px 0;
}

.hours strong {
    color: var(--gold);
}

.address h3 {
    margin-top: 18px;
}

.address p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 6px 0;
}

/* ============================================
   FOOTER - MOBILE
   ============================================ */
footer {
    background: var(--darker-bg);
    padding: 25px 0;
    text-align: center;
    border-top: 2px solid var(--gold);
    margin-top: 40px;
}

footer p {
    color: var(--text-gray);
    font-size: 0.85rem;
    padding: 0 16px;
}

/* ============================================
   TABLET - MIN-WIDTH: 768px
   ============================================ */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 24px;
    }

    header {
        padding: 25px 0;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
    }

    .logo-section {
        width: auto;
        text-align: left;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo-image {
        max-width: 250px;
        margin: 0;
    }

    .cta-button {
        width: auto;
        max-width: none;
        padding: 16px 32px;
        font-size: 1.05rem;
        white-space: nowrap;
    }

    .cta-icon {
        font-size: 1.4rem;
    }

    .logo-icons {
        gap: 18px;
    }

    .logo-icons .icon {
        font-size: 2.5rem;
    }


    .hero {
        padding: 50px 0;
        min-height: 60vh;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .location {
        font-size: 1.2rem;
    }

    .services {
        font-size: 1rem;
    }

    .hero-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .badge {
        width: auto;
        max-width: none;
        font-size: 0.9rem;
        padding: 12px 22px;
    }

    .gallery {
        padding: 60px 0;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .gallery-item {
        height: 320px;
    }

    .gallery-overlay h3 {
        font-size: 1.8rem;
    }

    .contact {
        padding: 60px 0;
        scroll-margin-top: 120px;
    }

    .contact-card {
        padding: 35px 30px;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-card h3 {
        font-size: 1.8rem;
    }

    .phone-link,
    .whatsapp-link {
        font-size: 1.3rem;
        padding: 20px 30px;
    }

    .phone-number {
        font-size: 1.4rem;
    }

    .contact-wrapper {
        flex-direction: row;
        align-items: stretch;
        gap: 20px;
    }

    .contact-card {
        flex: 0 0 auto;
        width: auto;
        min-width: 300px;
    }

    .delivery-info {
        flex: 1;
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 20px;
        min-width: 0;
    }

    .delivery-toggle {
        display: none;
    }

    .delivery-header-desktop {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        padding-bottom: 15px;
        border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    }

    .delivery-header-desktop .delivery-icon {
        font-size: 2.5rem;
        flex-shrink: 0;
    }

    .delivery-header-desktop h4 {
        color: var(--gold);
        font-size: 1.4rem;
        margin: 0;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        writing-mode: horizontal-tb;
    }

    .delivery-zones {
        display: flex !important;
        flex-direction: row;
        gap: 20px;
        width: 100%;
    }

    .delivery-zone {
        flex: 1;
        padding: 15px;
    }

    .delivery-zone h5 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .delivery-list li {
        font-size: 0.9rem;
        padding: 4px 0;
    }

    .menu {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .menu-quick-nav {
        gap: 12px;
        margin-bottom: 30px;
    }

    .quick-nav-item {
        padding: 10px 18px;
        font-size: 0.95rem;
    }

    .quick-nav-item:hover {
        background: rgba(255, 215, 0, 0.25);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    }

    .menu-category {
        padding: 15px 14px;
        margin-bottom: 15px;
        scroll-margin-top: 120px;
    }

    .category-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
        padding-bottom: 6px;
    }

    .menu-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .menu-item-image {
        height: 200px;
    }

    .features {
        padding: 60px 0;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .feature-icon {
        font-size: 3.5rem;
    }

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

    .info {
        padding: 60px 0;
    }

    .info-card {
        padding: 35px 30px;
        max-width: 600px;
        margin: 0 auto;
    }

    .info-card h3 {
        font-size: 1.6rem;
    }
}

/* ============================================
   DESKTOP - MIN-WIDTH: 1024px
   ============================================ */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        padding: 0 32px;
    }

    header {
        padding: 30px 0;
        border-bottom: 3px solid var(--gold);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    header.scrolled {
        padding: 15px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }

    .logo-section {
        width: auto;
        text-align: left;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo-image {
        max-width: 150px;
        margin: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    header.scrolled .logo-image {
        max-width: 100px;
    }

    .cta-button {
        width: auto;
        max-width: none;
        padding: 18px 40px;
        font-size: 1.2rem;
        white-space: nowrap;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    header.scrolled .cta-button {
        padding: 14px 32px;
        font-size: 1.1rem;
    }

    .cta-button:hover {
        background: linear-gradient(135deg, #B01030, var(--red));
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(220, 20, 60, 0.6),
                    0 0 25px rgba(220, 20, 60, 0.4);
    }

    .cta-icon {
        font-size: 1.6rem;
    }



     /* HERO DESKTOP - EFFETS PARALLAXE */
     .hero {
         padding: 80px 0;
         min-height: 70vh;
         background-attachment: fixed;
         background-size: cover;
     }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
        z-index: 1;
    }

     .hero-content h2 {
         font-size: 3rem;
         margin-bottom: 18px;
         text-shadow: 0 0 40px rgba(255, 215, 0, 0.8),
                      2px 2px 10px rgba(0, 0, 0, 0.9);
     }

     .location {
         font-size: 1.5rem;
         margin-bottom: 12px;
     }

     .services {
         font-size: 1.2rem;
         letter-spacing: 2px;
         margin-bottom: 25px;
     }

     .hero-badges {
         gap: 15px;
         margin-top: 25px;
     }

     .badge {
         font-size: 0.9rem;
         padding: 10px 20px;
         cursor: pointer;
     }

    .badge:hover {
        background: rgba(255, 215, 0, 0.35);
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    }

    /* GALLERY DESKTOP - GRID 3 COLONNES */
    .gallery {
        padding: 100px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .gallery-item {
        height: 450px;
        cursor: pointer;
    }

    .gallery-item:hover {
        transform: translateY(-12px) scale(1.03);
        box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3);
    }

    .gallery-item img {
        transition: transform 0.6s ease;
    }

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

    .gallery-overlay {
        padding: 50px 35px 35px;
        transform: translateY(30px);
        transition: all 0.5s ease;
    }

    .gallery-item:hover .gallery-overlay {
        transform: translateY(0);
    }

    .gallery-overlay h3 {
        font-size: 2.5rem;
    }

    .gallery-overlay p {
        font-size: 1.2rem;
    }

    /* CONTACT DESKTOP */
    .contact {
        padding: 100px 0;
        scroll-margin-top: 150px;
    }

    .contact-card {
        padding: 50px 45px;
        border: 3px solid var(--gold);
    }

    .contact-card h3 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .contact-info {
        flex-direction: row;
        gap: 25px;
        margin-bottom: 35px;
    }

    .phone-link,
    .whatsapp-link {
        flex: 1;
        font-size: 1.6rem;
        padding: 25px 35px;
        cursor: pointer;
    }

    .phone-link:hover {
        background: #B01030;
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(220, 20, 60, 0.6);
    }

    .whatsapp-link:hover {
        background: #1DA851;
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    }

    .phone-icon,
    .whatsapp-icon {
        font-size: 2.2rem;
    }

    .phone-number {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .delivery-info {
        padding: 25px;
        flex-direction: row;
    }

    .delivery-icon {
        font-size: 2.5rem;
    }

    .delivery-info p {
        font-size: 1.2rem;
    }

    .contact-wrapper {
        flex-direction: row;
        align-items: stretch;
        gap: 30px;
    }

    .contact-card {
        flex: 0 0 auto;
        width: auto;
        min-width: 350px;
    }

    .delivery-info {
        flex: 1;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 25px;
        min-width: 0;
    }

    .delivery-toggle {
        display: none;
    }

    .delivery-header-desktop {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 15px;
        width: 100%;
        padding-bottom: 20px;
        border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    }

    .delivery-header-desktop .delivery-icon {
        font-size: 3rem;
        flex-shrink: 0;
    }

    .delivery-header-desktop h4 {
        color: var(--gold);
        font-size: 1.6rem;
        margin: 0;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        writing-mode: horizontal-tb;
    }

    .delivery-zones {
        display: flex !important;
        flex-direction: row;
        gap: 30px;
        width: 100%;
    }

    .delivery-zone {
        flex: 1;
        padding: 20px;
    }

    .delivery-zone h5 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .delivery-list li {
        font-size: 0.95rem;
        padding: 5px 0;
    }

    /* MENU DESKTOP - GRID COMPLEXE */
    .menu {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
        letter-spacing: 2px;
    }

    .menu-quick-nav {
        gap: 15px;
        margin-bottom: 40px;
    }

    .quick-nav-item {
        padding: 12px 24px;
        font-size: 1rem;
        cursor: pointer;
    }

    .quick-nav-item:hover {
        background: rgba(255, 215, 0, 0.25);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    }

    .menu-category {
        margin-bottom: 20px;
        padding: 18px 20px;
        border: 1.5px solid var(--gold);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.15);
        scroll-margin-top: 150px;
    }

    .category-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
        padding-bottom: 8px;
        letter-spacing: 1.5px;
    }

    .menu-items {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .menu-item {
        border-radius: 18px;
        cursor: pointer;
    }

    .menu-item:hover {
        background: rgba(255, 215, 0, 0.12);
        border-color: var(--gold);
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.35);
    }

    .menu-item-image {
        height: 220px;
    }

    .menu-item-image img {
        transition: transform 0.6s ease;
    }

    .menu-item:hover .menu-item-image img {
        transform: scale(1.2);
    }

    .menu-item-content {
        padding: 15px;
    }

    .menu-item-header {
        margin-bottom: 8px;
        gap: 15px;
    }

    .menu-item h4 {
        font-size: 1.2rem;
        margin: 0;
    }

    .menu-item .price {
        font-size: 1.2rem;
    }

    .menu-item p {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .supplement-note {
        font-size: 0.85rem;
        margin-top: 6px;
        padding-top: 6px;
    }

    .price-badge {
        padding: 10px 20px;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

    .menu-item:hover .price-badge {
        transform: scale(1.08);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    }

    /* FEATURES DESKTOP - GRID 4 COLONNES */
    .features {
        padding: 100px 0;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 35px;
    }

    .feature-card {
        padding: 50px 35px;
        border-radius: 25px;
        cursor: pointer;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .feature-card:hover::before {
        opacity: 1;
    }

    .feature-card:hover {
        border-color: var(--gold);
        transform: translateY(-12px);
        box-shadow: 0 20px 50px rgba(255, 215, 0, 0.35);
        background: rgba(255, 215, 0, 0.12);
    }

    .feature-icon {
        font-size: 5rem;
        margin-bottom: 25px;
    }

    .feature-card h3 {
        font-size: 1.7rem;
        margin-bottom: 18px;
    }

    .feature-card p {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    /* INFO DESKTOP */
    .info {
        padding: 100px 0;
    }

    .info-card {
        padding: 50px 45px;
        border: 3px solid var(--gold);
        box-shadow: 0 15px 50px rgba(255, 215, 0, 0.25);
    }

    .info-card h3 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .hours {
        margin-bottom: 35px;
        padding-bottom: 35px;
    }

    .hours p {
        font-size: 1.4rem;
        margin: 12px 0;
    }

    .address p {
        font-size: 1.2rem;
        margin: 10px 0;
    }

    /* FOOTER DESKTOP */
    footer {
        padding: 40px 0;
        margin-top: 60px;
    }

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

/* ============================================
   LARGE DESKTOP - MIN-WIDTH: 1440px
   ============================================ */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .hero-content h2 {
        font-size: 4.5rem;
    }

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

    .menu-items {
        grid-template-columns: repeat(4, 1fr);
    }
}
