/* ==================
   LOS AMIGOS - ALTERNATIVE DESIGN
   Dark & Vibrant Style
   ================== */

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

:root {
    /* Brand Colors - Vibrant */
    --red: #E63946;
    --red-dark: #c62f3a;
    --green: #2A9D8F;
    --green-dark: #1f7a6e;
    --yellow: #F4A261;
    --yellow-dark: #e08a42;

    /* Base Colors */
    --black: #0a0a0a;
    --gray-900: #1a1a1a;
    --gray-800: #2a2a2a;
    --gray-700: #3a3a3a;
    --gray-600: #6a6a6a;
    --gray-400: #9a9a9a;
    --gray-200: #d0d0d0;
    --white: #ffffff;

    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Effects */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.7);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Explicit heading sizes to prevent H1UserAgentFontSizeInSection deprecation */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

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

/* ==================
   ACCESSIBILITY - SKIP TO CONTENT
   ================== */

.skip-to-content {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10001;
    background: var(--red);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.6);
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* ==================
   SITE LOADER
   ================== */

.site-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.site-loader.loaded {
    opacity: 0;
    transform: scale(1.1);
}

.loader-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.loader-logo {
    margin-bottom: 2rem;
}

.loader-3d-container {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    filter: drop-shadow(0 8px 24px rgba(230, 57, 70, 0.8));
    background: transparent;
}

.loader-3d-container canvas {
    width: 100%;
    height: 100%;
    background: transparent !important;
}

.loader-logo-img {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 8px 24px rgba(230, 57, 70, 0.8));
    animation: rotateY 2s ease-in-out infinite;
}

@keyframes rotateY {
    0%, 100% { transform: rotateY(0deg) scale(1); }
    50% { transform: rotateY(180deg) scale(1.1); }
}

.loader-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--red) 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.loader-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--red) 0%, var(--yellow) 50%, var(--green) 100%);
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
}

.loader-text {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: var(--gray-300);
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: fadeInUp 1.5s ease-out 0.5s backwards, pulse 2s ease-in-out 1.5s infinite;
}

/* ==================
   NAVIGATION
   ================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(230, 57, 70, 0.2);
    transition: var(--transition);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.navbar-logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(230, 57, 70, 0.5));
    transition: var(--transition);
    background: transparent;
    mix-blend-mode: screen;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(230, 57, 70, 0.7));
}

.navbar-brand-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--red) 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.navbar-link {
    color: var(--gray-200);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: var(--transition);
}

.navbar-link:hover {
    color: var(--white);
}

.navbar-link:hover::after {
    width: 100%;
}

.navbar-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.4);
    transition: var(--transition);
}

.navbar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.6);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==================
   HERO SECTION
   ================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(230, 57, 70, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(42, 157, 143, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(244, 162, 97, 0.1) 0%, transparent 60%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, var(--black) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(230, 57, 70, 0.2);
    border: 1px solid var(--red);
    color: var(--red);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

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

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-title-line {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 8rem);
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease-out backwards;
}

.hero-title-line:nth-child(1) { animation-delay: 0.1s; }

.hero-title-with-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-logo {
    width: clamp(100px, 20vw, 180px);
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(230, 57, 70, 0.6));
    animation: fadeInUp 1s ease-out 0.1s backwards;
}

.hero-logo-3d {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.1s backwards;
    background: transparent;
}

.hero-logo-3d canvas {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(230, 57, 70, 0.6));
    background: transparent !important;
}

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

.hero-title-accent {
    background: linear-gradient(135deg, var(--red) 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-3d {
    transform-style: preserve-3d;
    animation: rotate3d 8s ease-in-out infinite;
    text-shadow:
        2px 2px 0px rgba(230, 57, 70, 0.3),
        4px 4px 0px rgba(230, 57, 70, 0.2),
        6px 6px 0px rgba(230, 57, 70, 0.1),
        8px 8px 20px rgba(0, 0, 0, 0.5);
}

@keyframes rotate3d {
    0%, 100% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: perspective(1000px) rotateX(5deg) rotateY(-10deg);
    }
    50% {
        transform: perspective(1000px) rotateX(0deg) rotateY(10deg);
    }
    75% {
        transform: perspective(1000px) rotateX(-5deg) rotateY(-10deg);
    }
}

.hero-text {
    font-size: 1.25rem;
    color: var(--gray-200);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.7);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--red) 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: inline-block;
    padding: 0.2rem 0;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--red) 0%, transparent 100%);
}

/* ==================
   SECTION HEADERS
   ================== */

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: rgba(230, 57, 70, 0.2);
    border: 1px solid var(--red);
    color: var(--red);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

/* ==================
   MENU SECTION
   ================== */

.menu-section {
    padding: 6rem 0;
    background: var(--gray-900);
    position: relative;
}

.menu-filter {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 4rem;
}

.menu-filter-btn {
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-200);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.menu-filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--red);
    color: var(--white);
}

.menu-filter-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.4);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-card {
    background: var(--gray-800);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red) 0%, var(--yellow) 50%, var(--green) 100%);
    opacity: 0;
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-8px);
    border-color: var(--red);
    box-shadow: 0 12px 40px rgba(230, 57, 70, 0.3);
}

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

.menu-card.hidden {
    display: none;
}

.menu-card-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(230, 57, 70, 0.2);
    border: 1px solid var(--red);
    color: var(--red);
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    max-width: 45%;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 10;
}

.badge-veggie {
    background: rgba(42, 157, 143, 0.2);
    border-color: var(--green);
    color: var(--green);
}

.badge-special {
    background: rgba(244, 162, 97, 0.2);
    border-color: var(--yellow);
    color: var(--yellow);
}

.badge-popular {
    background: rgba(230, 57, 70, 0.3);
    border-color: var(--red);
    color: var(--red);
    animation: pulse-badge 2s ease-in-out infinite;
}

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

.badge-xl {
    background: rgba(138, 43, 226, 0.2);
    border-color: #8a2be2;
    color: #bb86fc;
}

.menu-card-featured {
    border-color: var(--red);
}

.menu-card-veggie {
    border-color: var(--green);
}

.menu-card-xl {
    border-color: #8a2be2;
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
    padding-right: 50%;
}

.menu-card-desc {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.menu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-card-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.menu-card-price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--red);
}

.menu-card-menu-option {
    font-size: 0.8rem;
    color: var(--yellow);
    font-weight: 600;
    background: rgba(244, 162, 97, 0.15);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(244, 162, 97, 0.3);
    width: fit-content;
}

.menu-card-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
}

.menu-card-btn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
}

.menu-note {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: 16px;
    text-align: center;
}

.menu-note p {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.menu-note .small {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* ==================
   SAUCE MODAL
   ================== */

.sauce-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.sauce-modal.active {
    display: flex;
}

.sauce-modal-content {
    background: var(--gray-900);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease-out;
    box-shadow: 0 20px 60px rgba(230, 57, 70, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.sauce-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--gray-300);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.sauce-modal-close:hover {
    background: rgba(230, 57, 70, 0.2);
    color: var(--red);
    transform: rotate(90deg);
}

.sauce-modal-title {
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--red) 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-section {
    margin-bottom: 2.5rem;
}

.modal-section:last-of-type {
    margin-bottom: 2rem;
}

.modal-section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--red);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(230, 57, 70, 0.3);
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0.875rem;
}

.option-item {
    background: var(--black);
    border: 2px solid rgba(230, 57, 70, 0.2);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.option-item:hover {
    border-color: var(--red);
    background: rgba(230, 57, 70, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.option-item.selected {
    border-color: var(--red);
    background: rgba(230, 57, 70, 0.2);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.4);
}

.option-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.option-emoji {
    font-size: 2rem;
}

.option-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-200);
}

.option-price {
    font-size: 0.75rem;
    color: var(--yellow);
    font-weight: 700;
}

.sauce-modal-confirm {
    width: 100%;
    margin-top: 1rem;
}

/* ==================
   ABOUT SECTION
   ================== */

.about-section {
    padding: 6rem 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 12px 32px rgba(230, 57, 70, 0.4));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.about-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--red);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.5);
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.about-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.about-feature-icon {
    font-size: 3rem;
    line-height: 1;
}

.about-feature h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.about-feature p {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ==================
   CONTACT SECTION
   ================== */

.contact-section {
    padding: 6rem 0;
    background: var(--gray-900);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.contact-card {
    background: var(--gray-800);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--red);
    box-shadow: 0 12px 40px rgba(230, 57, 70, 0.3);
}

.contact-card-highlight {
    border-color: var(--red);
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, var(--gray-800) 100%);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.2);
    border-radius: 50%;
    color: var(--red);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.contact-info .closed {
    color: var(--gray-500);
    opacity: 0.6;
}

.contact-link {
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--yellow);
}

.contact-sub {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.highlight-text {
    color: var(--red);
    font-weight: 700;
    font-size: 1.25rem;
}

/* ==================
   FOOTER
   ================== */

.footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(230, 57, 70, 0.4));
}

.footer-brand p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social-link:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.footer-legal {
    text-align: right;
}

.footer-legal p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* ==================
   RESPONSIVE
   ================== */

@media (max-width: 1024px) {
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: var(--gray-900);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transition: var(--transition);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-toggle {
        display: flex;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image img {
        margin: 0 auto;
    }

    .about-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .menu-filter {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 1rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================
   IMAGE MODAL
   ================== */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: scaleIn 0.3s ease-out;
}

.image-modal-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--red);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-close:hover {
    background: var(--red-dark);
    transform: rotate(90deg);
}

/* Menu Card with Image */
.menu-card-with-image {
    position: relative;
}

.menu-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-card-image:hover {
    transform: scale(1.02);
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.menu-card-image:hover img {
    transform: scale(1.1);
}

.menu-card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-card-image:hover .menu-card-image-overlay {
    opacity: 1;
}

.menu-card-image-overlay svg {
    color: var(--yellow);
}

/* Recadrage spécifique pour l'image des glaces */
.menu-card-image-glaces img {
    object-position: center 30% !important;
    transform: scale(1.15);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
