/* ===================================
   CSS Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fefefe;
    overflow-x: hidden;
}

/* ===================================
   Color Variables (Vietnamese-inspired)
   =================================== */
:root {
    --primary-red: #DA2032;
    --primary-yellow: #FFD700;
    --secondary-red: #B71C1C;
    --secondary-yellow: #FFC107;
    --accent-green: #4CAF50;
    --warm-white: #FFF8E1;
    --earth-brown: #8D6E63;
    --dark-text: #2c3e50;
    --light-text: #5a6368;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0,0,0,0.1);
    --shadow-medium: rgba(0,0,0,0.15);
    --shadow-heavy: rgba(0,0,0,0.25);
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--dark-text);
}

a {
    text-decoration: none;
    color: var(--primary-red);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-red);
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    box-shadow: 0 2px 20px var(--shadow-medium);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem;
    position: relative;
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    padding: 0.5rem;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 10;
    border: 3px solid rgba(255,255,255,0.3);
}

.logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.95);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.nav-logo:hover {
    background: rgba(255,255,255,0.25);
    transform: translateX(-50%) translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    border-color: rgba(255,215,0,0.7);
}

.nav-logo:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
    border-color: rgba(255,215,0,0.9);
    background: rgba(255,255,255,1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-menu:hover {
    opacity: 1;
}

.nav-link {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.language-selector {
    position: relative;
}

.lang-dropdown {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-dropdown:hover {
    background: rgba(255,255,255,0.2);
}

.lang-dropdown option {
    background: var(--dark-text);
    color: white;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    background: none;
    border: none;
    padding: 0.5rem;
    -webkit-tap-highlight-color: transparent;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 2px;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(218, 32, 50, 0.8) 30%,
        rgba(183, 28, 28, 0.9) 70%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 10;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow:
        4px 4px 12px rgba(0,0,0,1),
        0 0 30px rgba(0,0,0,0.9),
        2px 2px 6px rgba(0,0,0,1),
        -2px -2px 6px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease-out;
    font-weight: 900;
}

.hero-tagline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: white;
    text-shadow: 
        3px 3px 8px rgba(0,0,0,1),
        0 0 20px rgba(0,0,0,0.9),
        1px 1px 4px rgba(0,0,0,1),
        -1px -1px 4px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
    color: var(--dark-text);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* ===================================
   Main Content Layout
   =================================== */
.main-content {
    min-height: calc(100vh - 200px);
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--dark-text);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    border-radius: 2px;
}

/* ===================================
   Restaurant Cards & Rankings
   =================================== */
.rankings-section {
    margin-bottom: 4rem;
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.restaurant-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.rank-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rank-number {
    background: var(--dark-text);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.medal {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.medal.gold {
    background: linear-gradient(45deg, #FFD700, #FFA000);
}

.medal.silver {
    background: linear-gradient(45deg, #C0C0C0, #808080);
}

.medal.bronze {
    background: linear-gradient(45deg, #CD7F32, #8B4513);
}

.restaurant-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.rest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.feature-image,
.hero-image {
    max-width: 100%;
    height: auto;
}

.restaurant-card:hover .rest-img {
    transform: scale(1.05);
}

.restaurant-info {
    padding: 1.5rem;
}

.restaurant-name {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.restaurant-description {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.restaurant-address {
    color: var(--earth-brown);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.restaurant-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    font-size: 1rem;
}

.rating-text {
    font-weight: 600;
    color: var(--dark-text);
}

/* ===================================
   Map Markers & Popups
   =================================== */
.custom-div-icon {
    background: transparent;
    border: none;
}

.custom-marker {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.custom-marker.gold {
    background: linear-gradient(45deg, #FFD700, #FFA000);
}

.custom-marker.silver {
    background: linear-gradient(45deg, #C0C0C0, #808080);
}

.custom-marker.bronze {
    background: linear-gradient(45deg, #CD7F32, #8B4513);
}

.custom-marker.default {
    background: linear-gradient(45deg, var(--primary-red), var(--secondary-red));
}

.map-popup h3 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-red);
}

.map-popup p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

/* ===================================
   Interactive Map
   =================================== */
.map-section {
    margin-bottom: 3rem;
}

.interactive-map {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    margin-bottom: 1rem;
}

.map-instructions {
    text-align: center;
    color: var(--light-text);
    font-style: italic;
}

/* ===================================
   Page Headers (About & Contact)
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* ===================================
   About Page Styles
   =================================== */
.about-content {
    padding: 3rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.about-text h2 {
    color: var(--primary-red);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-image {
    position: sticky;
    top: 120px;
}

.feature-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow-light);
    margin-bottom: 1rem;
}

.image-caption {
    font-size: 0.9rem;
    color: var(--light-text);
    font-style: italic;
    text-align: center;
}

.values-section {
    margin: 4rem 0;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.about-cta {
    background: linear-gradient(135deg, var(--warm-white) 0%, #fff 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.about-cta h2 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* ===================================
   Contact Page Styles
   =================================== */
.contact-content {
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(218, 32, 50, 0.3);
}

.form-success {
    background: var(--accent-green);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
}

/* Contact Info */
.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
}

.contact-details h3 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--light-text);
    margin: 0;
}

.faq-section,
.partnership-section {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--warm-white);
    border-radius: 15px;
}

.faq-section h3,
.partnership-section h3 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--light-text);
    margin: 0;
}

.text-link {
    color: var(--primary-red);
    font-weight: 600;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(135deg, var(--dark-text) 0%, #34495e 100%);
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 2rem;
    text-align: center;
}

.footer-section p {
    margin: 0;
    color: rgba(255,255,255,0.8);
}

/* Liens sociaux modernes avec icônes SVG */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-icon {
    width: 20px;
    height: 20px;
    color: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.4);
}

.social-link:hover .social-icon {
    color: white;
    transform: scale(1.1);
}

/* Couleurs spécifiques aux réseaux sociaux */
.social-link.facebook:hover {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    border-color: #1877f2;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045);
    border-color: #e1306c;
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.social-link.twitter:hover {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border-color: #333333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

/* Animation de pulsation pour attirer l'attention */
@keyframes socialPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.social-link:focus-visible {
    outline: 2px solid var(--primary-yellow);
    outline-offset: 3px;
    animation: socialPulse 1s infinite;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-icon {
        width: 18px;
        height: 18px;
    }
}

.sponsor-logo {
    max-width: 100px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.sponsor-logo:hover {
    opacity: 1;
}

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

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */

/* --- Tablet landscape / small desktop (max 1024px) --- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }

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

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

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

/* --- Tablet portrait / large mobile (max 768px) --- */
@media (max-width: 768px) {
    /* Navigation mobile */
    .nav-container {
        padding: 0.75rem 1rem;
        min-height: 60px;
    }

    .nav-logo {
        width: 70px;
        height: 70px;
        padding: 0.25rem;
        border-width: 2px;
    }

    .logo-img {
        width: 56px;
        height: 56px;
    }

    .nav-logo:hover {
        transform: translateX(-50%) translateY(-2px) scale(1.03);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--primary-red);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.15);
        padding: 1.5rem 0;
        z-index: 999;
        opacity: 1;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-item {
        margin: 0.25rem 0;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1.5rem;
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .language-selector {
        z-index: 1001;
    }

    .lang-dropdown {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }

    /* Hero */
    .hero {
        height: 55vh;
        min-height: 350px;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

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

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    /* Content */
    .content-container {
        padding: 2rem 1rem;
    }

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

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

    .restaurant-card {
        border-radius: 12px;
    }

    /* Map */
    .interactive-map {
        height: 300px;
        border-radius: 12px;
    }

    /* About page */
    .page-header {
        padding: 3rem 0;
    }

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

    .page-subtitle {
        font-size: 1rem;
    }

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

    .value-card {
        padding: 1.5rem;
    }

    .value-icon {
        font-size: 2.2rem;
    }

    .about-cta {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }

    /* Contact page */
    .contact-method {
        padding: 1rem;
    }

    .faq-section,
    .partnership-section {
        padding: 1.5rem;
    }

    /* Footer */
    .footer {
        margin-top: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1.5rem;
    }
}

/* --- Mobile standard (max 480px) --- */
@media (max-width: 480px) {
    /* Navigation */
    .nav-container {
        padding: 0.5rem 0.75rem;
        min-height: 50px;
    }

    .nav-logo {
        width: 55px;
        height: 55px;
    }

    .logo-img {
        width: 44px;
        height: 44px;
    }

    .nav-menu {
        top: 50px;
    }

    .lang-dropdown {
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
    }

    /* Hero */
    .hero {
        height: 50vh;
        min-height: 300px;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        border-radius: 25px;
    }

    /* Content */
    .content-container {
        padding: 1.5rem 0.75rem;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .restaurants-grid {
        gap: 1rem;
    }

    .restaurant-card {
        border-radius: 10px;
    }

    .restaurant-image {
        height: 170px;
    }

    .restaurant-info {
        padding: 1rem;
    }

    .restaurant-name {
        font-size: 1.15rem;
    }

    .restaurant-description {
        font-size: 0.85rem;
    }

    .restaurant-address {
        font-size: 0.8rem;
    }

    /* Map */
    .interactive-map {
        height: 250px;
        border-radius: 10px;
    }

    .map-instructions {
        font-size: 0.85rem;
    }

    /* About page */
    .page-header {
        padding: 2rem 0;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .page-subtitle {
        font-size: 0.9rem;
    }

    .about-text h2 {
        font-size: 1.3rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

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

    .value-card {
        padding: 1.25rem;
    }

    .value-icon {
        font-size: 2rem;
    }

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

    .about-cta {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .about-cta h2 {
        font-size: 1.3rem;
    }

    /* Contact page */
    .contact-form-section h2,
    .contact-info-section h2 {
        font-size: 1.3rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .submit-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .contact-method {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .contact-icon {
        font-size: 1.5rem;
        min-width: 35px;
    }

    .contact-details h3 {
        font-size: 1.1rem;
    }

    .faq-section,
    .partnership-section {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .faq-item h4 {
        font-size: 1rem;
    }

    .faq-item p {
        font-size: 0.85rem;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 0;
    }

    .footer-content {
        padding: 0 1rem;
        gap: 0.75rem;
    }

    .footer-section p {
        font-size: 0.85rem;
    }
}

/* --- Tres petit ecran (max 360px) --- */
@media (max-width: 360px) {
    .nav-container {
        padding: 0.4rem 0.5rem;
    }

    .nav-logo {
        width: 45px;
        height: 45px;
    }

    .logo-img {
        width: 36px;
        height: 36px;
    }

    .nav-menu {
        top: 45px;
    }

    .hero {
        height: 45vh;
        min-height: 260px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-tagline {
        font-size: 0.8rem;
    }

    .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .content-container {
        padding: 1rem 0.5rem;
    }

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

    .restaurant-image {
        height: 150px;
    }

    .restaurant-info {
        padding: 0.75rem;
    }

    .interactive-map {
        height: 200px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .page-header {
        padding: 1.5rem 0;
    }

    .value-card {
        padding: 1rem;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .header,
    .footer,
    .cta-button,
    .interactive-map {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 2rem;
    }
    
    .hero-background {
        display: none;
    }
    
    .hero-content {
        color: var(--dark-text);
    }
} 