/* =====================================================
   A CASA ITALIANA - STYLES RESPONSIVE
   Approche Mobile-First
   ===================================================== */

/* ===== Variables CSS ===== */
:root {
    /* Couleurs */
    --beige-clair: #2a2a2a;
    --vert-olive: #e1c791;
    --marron-doux: #CD853F;
    --bordeaux: #DC143C;
    --blanc: #1a1a1a;
    --noir: #f0f0f0;
    --gris-clair: #333333;
    --ombre: rgba(255, 255, 255, 0.1);

    /* Espacements Responsive */
    --spacing-xs: clamp(0.5rem, 2vw, 0.75rem);
    --spacing-sm: clamp(0.75rem, 2.5vw, 1rem);
    --spacing-md: clamp(1rem, 3vw, 1.5rem);
    --spacing-lg: clamp(1.5rem, 4vw, 2.5rem);
    --spacing-xl: clamp(2rem, 5vw, 3.5rem);
    --spacing-xxl: clamp(3rem, 6vw, 5rem);

    /* Typographie Fluide */
    --font-xs: clamp(0.75rem, 2vw, 0.85rem);
    --font-sm: clamp(0.85rem, 2.2vw, 0.95rem);
    --font-base: clamp(0.95rem, 2.5vw, 1.1rem);
    --font-md: clamp(1.1rem, 3vw, 1.3rem);
    --font-lg: clamp(1.3rem, 3.5vw, 1.8rem);
    --font-xl: clamp(1.6rem, 4vw, 2.5rem);
    --font-xxl: clamp(2rem, 5vw, 3.5rem);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Navbar Height */
    --navbar-height: 60px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--noir);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

/* Background fixe pour mobile - Solution alternative */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/pizza-hero-tel.webp') no-repeat center center;
    background-size: cover;
    z-index: -1;
    /* Empêche le zoom sur mobile */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Dark overlay for pages other than index */
.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== Navigation Mobile First ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.98);
    z-index: 1000;
    transition: all var(--transition-base);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    height: var(--navbar-height);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
    gap: var(--spacing-xs);
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-left: auto;
}

.nav-right {
    display: none;
    /* Caché sur mobile */
    align-items: center;
    gap: var(--spacing-sm);
}

.logo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--vert-olive);
    font-size: clamp(1.1rem, 4vw, 1.8rem);
    cursor: pointer;
    white-space: nowrap;
    margin: 0 0 0 25px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--vert-olive);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Menu Mobile */
.nav-right-group {
    display: flex;
    align-items: center;
}

.nav-menu {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--navbar-height));
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: var(--spacing-lg) var(--spacing-md);
    gap: var(--spacing-sm);
    list-style: none;
    transform: translateX(-100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
    z-index: 999;
}

.nav-menu.active {
    transform: translateX(0);
}

.nav-menu li {
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    width: 100%;
    max-width: 300px;
    padding: var(--spacing-sm) var(--spacing-md);
    text-decoration: none;
    color: var(--noir);
    font-weight: 500;
    font-size: var(--font-base);
    background-color: var(--blanc);
    border: 2px solid var(--vert-olive);
    white-space: nowrap;
    /* Prevent line break on desktop */
    border-radius: 25px;
    transition: all var(--transition-base);
    cursor: pointer;
    min-height: 44px;
    /* Touch target */
}

.nav-link i {
    font-size: 1em;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--vert-olive);
    color: var(--blanc);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 199, 145, 0.3);
}

.nav-link:active {
    transform: translateY(0);
}

.order-btn {
    display: none;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 2px solid var(--vert-olive);
    color: var(--blanc);
    background: var(--vert-olive);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
    cursor: pointer;
}

.order-btn i {
    font-size: 0.9em;
}

.order-btn:hover,
.order-btn:focus {
    background: var(--blanc);
    color: var(--vert-olive);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(225, 199, 145, 0.25);
}

.order-btn.visible {
    display: inline-flex;
}

.order-btn:active {
    transform: translateY(0);
}

/* Bouton Commander en ligne pour mobile dans le menu */
.nav-menu .order-btn {
    width: 100%;
    max-width: 300px;
    padding: var(--spacing-sm) var(--spacing-md);
    min-height: 44px;
    border-radius: 25px;
    font-size: var(--font-base);
    display: flex;
    /* Override existing display */
    margin-top: var(--spacing-xs);
}

.order-btn-mobile-container {
    width: 100%;
    max-width: 300px;
    margin-top: var(--spacing-xs);
    list-style: none;
    display: block;
    /* Visible par défaut sur mobile */
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

.order-btn-mobile {
    display: none;
    /* Masqué par défaut, affiché via JS si URL configurée */
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    text-decoration: none;
    color: var(--blanc);
    font-weight: 600;
    font-size: var(--font-base);
    background-color: var(--vert-olive);
    border: 2px solid var(--vert-olive);
    border-radius: 25px;
    transition: all var(--transition-base);
    cursor: pointer;
    min-height: 44px;
    /* Touch target */
}

.order-btn-mobile i {
    font-size: 1em;
}

.order-btn-mobile:hover,
.order-btn-mobile:focus {
    background-color: var(--blanc);
    color: var(--vert-olive);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 199, 145, 0.3);
}

.order-btn-mobile:active {
    transform: translateY(0);
}

/* Italian Flag Line */
.flag-line {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #009246 33%, #F1F2F1 33% 66%, #CE2B37 66%);
    z-index: 999;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 60vh;
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: calc(var(--navbar-height) + 3px);
    width: 100%;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--blanc);
    animation: fadeInUp 1s ease;
    max-width: 90%;
    padding: var(--spacing-md);
}

.hero-logo {
    width: 100%;
    max-width: min(600px, 95vw);
    height: auto;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.8));
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: var(--vert-olive);
    margin: var(--spacing-md) auto;
}

.hero-description {
    font-size: var(--font-base);
    font-weight: 300;
    font-style: italic;
    color: var(--vert-olive);
    letter-spacing: 0.5px;
}

/* Mobile Order Button in Hero */
.hero-content .order-btn {
    margin-top: var(--spacing-sm);
    padding: 0.8rem 2rem;
    font-size: var(--font-base);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    display: inline-flex;
    /* Ensure visibility if moved */
}

/* ===== Section Title ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: var(--font-xl);
    text-align: center;
    color: var(--vert-olive);
    margin-bottom: var(--spacing-md);
    position: relative;
}

/* Title Divider - Style unifié */
.title-divider {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--vert-olive), transparent);
    margin: 0 auto var(--spacing-xl);
    position: relative;
}

.title-divider::before,
.title-divider::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--vert-olive);
    font-size: 0.8rem;
}

.title-divider::before {
    left: -20px;
}

.title-divider::after {
    right: -20px;
}

/* ===== About Section ===== */
.about {
    padding: var(--spacing-lg) 0;
    background-color: rgba(0, 0, 0, 0.85);
    width: 100%;
}

.about .section-title {
    color: #a1982f;
}

.about .title-divider {
    background: linear-gradient(90deg, transparent, #a1982f, transparent);
}

.about .title-divider::before,
.about .title-divider::after {
    color: #a1982f;
}

.about-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    gap: var(--spacing-sm);
}

.about-image-wrapper {
    width: 100%;
    order: 1;
    overflow: visible;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: transparent;
    border: 1px solid var(--vert-olive);
    border-radius: 50%;
    top: 52%;
    right: 40px;
    transform: translateY(-50%);
    z-index: 0;
}

.about-image {
    width: auto;
    height: auto;
    max-width: 80%;
    display: block;
    margin: 0;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    clip-path: polygon(0% 0%, 2% 0%, 2% 0%, 6% 0%, 6% 0%,
            10% 0%, 10% 0%, 14% 0%, 14% 0%, 18% 0%,
            18% 0%, 22% 0%, 22% 0%, 26% 0%, 26% 0%,
            30% 0%, 30% 0%, 34% 0%, 34% 0%, 38% 0%,
            38% 0%, 42% 0%, 42% 0%, 46% 0%, 46% 0%,
            50% 0%, 50% 0%, 54% 0%, 54% 0%, 58% 0%,
            58% 0%, 62% 0%, 62% 0%, 66% 0%, 66% 0%,
            70% 0%, 70% 0%, 74% 0%, 74% 0%, 78% 0%,
            78% 0%, 82% 0%, 82% 0%, 86% 0%, 86% 0%,
            90% 0%, 90% 0%, 94% 0%, 94% 0%, 98% 0%,
            98% 0%, 100% 0%,
            100% 2%, 100% 2%, 100% 6%, 100% 6%, 100% 10%,
            100% 10%, 100% 14%, 100% 14%, 100% 18%,
            100% 18%, 100% 22%, 100% 22%, 100% 26%,
            100% 26%, 100% 30%, 100% 30%, 100% 34%,
            100% 34%, 100% 38%, 100% 38%, 100% 42%,
            100% 42%, 100% 46%, 100% 46%, 100% 50%,
            100% 50%, 100% 54%, 100% 54%, 100% 58%,
            100% 58%, 100% 62%, 100% 62%, 100% 66%,
            100% 66%, 100% 70%, 100% 70%, 100% 74%,
            100% 74%, 100% 78%, 100% 78%, 100% 82%,
            100% 82%, 100% 86%, 100% 86%, 100% 90%,
            100% 90%, 100% 94%, 100% 94%, 100% 98%,
            100% 98%, 100% 100%,
            98% 100%, 98% 100%, 94% 100%, 94% 100%,
            90% 100%, 90% 100%, 86% 100%, 86% 100%,
            82% 100%, 82% 100%, 78% 100%, 78% 100%,
            74% 100%, 74% 100%, 70% 100%, 70% 100%,
            66% 100%, 66% 100%, 62% 100%, 62% 100%,
            58% 100%, 58% 100%, 54% 100%, 54% 100%,
            50% 100%, 50% 100%, 46% 100%, 46% 100%,
            42% 100%, 42% 100%, 38% 100%, 38% 100%,
            34% 100%, 34% 100%, 30% 100%, 30% 100%,
            26% 100%, 26% 100%, 22% 100%, 22% 100%,
            18% 100%, 18% 100%, 14% 100%, 14% 100%,
            10% 100%, 10% 100%, 6% 100%, 6% 100%,
            2% 100%, 2% 100%, 0% 100%,
            0% 98%, 0% 98%, 0% 94%, 0% 94%, 0% 90%,
            0% 90%, 0% 86%, 0% 86%, 0% 82%, 0% 82%,
            0% 78%, 0% 78%, 0% 74%, 0% 74%, 0% 70%,
            0% 70%, 0% 66%, 0% 66%, 0% 62%, 0% 62%,
            0% 58%, 0% 58%, 0% 54%, 0% 54%, 0% 50%,
            0% 50%, 0% 46%, 0% 46%, 0% 42%, 0% 42%,
            0% 38%, 0% 38%, 0% 34%, 0% 34%, 0% 30%,
            0% 30%, 0% 26%, 0% 26%, 0% 22%, 0% 22%,
            0% 18%, 0% 18%, 0% 14%, 0% 14%, 0% 10%,
            0% 10%, 0% 6%, 0% 6%, 0% 2%, 0% 2%, 0% 0%);
    -webkit-clip-path: polygon(0% 0%, 2% 0%, 2% 0%, 6% 0%, 6% 0%,
            10% 0%, 10% 0%, 14% 0%, 14% 0%, 18% 0%,
            18% 0%, 22% 0%, 22% 0%, 26% 0%, 26% 0%,
            30% 0%, 30% 0%, 34% 0%, 34% 0%, 38% 0%,
            38% 0%, 42% 0%, 42% 0%, 46% 0%, 46% 0%,
            50% 0%, 50% 0%, 54% 0%, 54% 0%, 58% 0%,
            58% 0%, 62% 0%, 62% 0%, 66% 0%, 66% 0%,
            70% 0%, 70% 0%, 74% 0%, 74% 0%, 78% 0%,
            78% 0%, 82% 0%, 82% 0%, 86% 0%, 86% 0%,
            90% 0%, 90% 0%, 94% 0%, 94% 0%, 98% 0%,
            98% 0%, 100% 0%,
            100% 2%, 100% 2%, 100% 6%, 100% 6%, 100% 10%,
            100% 10%, 100% 14%, 100% 14%, 100% 18%,
            100% 18%, 100% 22%, 100% 22%, 100% 26%,
            100% 26%, 100% 30%, 100% 30%, 100% 34%,
            100% 34%, 100% 38%, 100% 38%, 100% 42%,
            100% 42%, 100% 46%, 100% 46%, 100% 50%,
            100% 50%, 100% 54%, 100% 54%, 100% 58%,
            100% 58%, 100% 62%, 100% 62%, 100% 66%,
            100% 66%, 100% 70%, 100% 70%, 100% 74%,
            100% 74%, 100% 78%, 100% 78%, 100% 82%,
            100% 82%, 100% 86%, 100% 86%, 100% 90%,
            100% 90%, 100% 94%, 100% 94%, 100% 98%,
            100% 98%, 100% 100%,
            98% 100%, 98% 100%, 94% 100%, 94% 100%,
            90% 100%, 90% 100%, 86% 100%, 86% 100%,
            82% 100%, 82% 100%, 78% 100%, 78% 100%,
            74% 100%, 74% 100%, 70% 100%, 70% 100%,
            66% 100%, 66% 100%, 62% 100%, 62% 100%,
            58% 100%, 58% 100%, 54% 100%, 54% 100%,
            50% 100%, 50% 100%, 46% 100%, 46% 100%,
            42% 100%, 42% 100%, 38% 100%, 38% 100%,
            34% 100%, 34% 100%, 30% 100%, 30% 100%,
            26% 100%, 26% 100%, 22% 100%, 22% 100%,
            18% 100%, 18% 100%, 14% 100%, 14% 100%,
            10% 100%, 10% 100%, 6% 100%, 6% 100%,
            2% 100%, 2% 100%, 0% 100%,
            0% 98%, 0% 98%, 0% 94%, 0% 94%, 0% 90%,
            0% 90%, 0% 86%, 0% 86%, 0% 82%, 0% 82%,
            0% 78%, 0% 78%, 0% 74%, 0% 74%, 0% 70%,
            0% 70%, 0% 66%, 0% 66%, 0% 62%, 0% 62%,
            0% 58%, 0% 58%, 0% 54%, 0% 54%, 0% 50%,
            0% 50%, 0% 46%, 0% 46%, 0% 42%, 0% 42%,
            0% 38%, 0% 38%, 0% 34%, 0% 34%, 0% 30%,
            0% 30%, 0% 26%, 0% 26%, 0% 22%, 0% 22%,
            0% 18%, 0% 18%, 0% 14%, 0% 14%, 0% 10%,
            0% 10%, 0% 6%, 0% 6%, 0% 2%, 0% 2%, 0% 0%);
}

.about-text-wrapper {
    width: 100%;
    order: 2;
}

.about-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: var(--font-sm);
    color: var(--vert-olive);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.about-info-block {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.about-info-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.about-icon {
    font-size: var(--font-md);
    color: var(--vert-olive);
    margin-top: var(--spacing-xs);
    flex-shrink: 0;
}

.about-info-content {
    flex: 1;
}

.about-info-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-sm);
    color: #a1982f;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.about-info-text {
    font-size: var(--font-sm);
    color: var(--vert-olive);
    line-height: 1.6;
    text-align: left;
}

.about-cta-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: var(--font-sm);
    color: var(--vert-olive);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.about-cta-button {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-lg);
    background-color: var(--vert-olive);
    color: var(--blanc);
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: var(--font-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-base);
    border: 2px solid var(--vert-olive);
    box-shadow: 0 4px 15px rgba(225, 199, 145, 0.3);
}

.about-cta-button:hover {
    background-color: var(--blanc);
    color: var(--vert-olive);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 199, 145, 0.4);
}

/* ===== Privacy Policy Section ===== */
.privacy-policy {
    padding: var(--spacing-xxl) 0;
    background-color: rgba(0, 0, 0, 0.85);
    width: 100%;
}

.privacy-policy .section-title {
    color: #a1982f;
}

.privacy-policy .title-divider {
    background: linear-gradient(90deg, transparent, #a1982f, transparent);
}

.privacy-policy .title-divider::before,
.privacy-policy .title-divider::after {
    color: #a1982f;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(225, 199, 145, 0.05) 0%, rgba(225, 199, 145, 0.02) 100%);
    border-radius: 15px;
    border: 1px solid rgba(225, 199, 145, 0.1);
}

.privacy-content p {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-base);
    line-height: 1.7;
    text-align: left;
    color: var(--vert-olive);
}

.privacy-content h3 {
    color: #a1982f;
    font-size: var(--font-lg);
    font-weight: 600;
    margin: var(--spacing-xl) 0 var(--spacing-md) 0;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.privacy-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #a1982f, transparent);
}

.privacy-content ul {
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.privacy-content li {
    margin-bottom: var(--spacing-xs);
    color: var(--vert-olive);
    line-height: 1.6;
}

.privacy-content strong {
    color: #a1982f;
    font-weight: 600;
}

/* ===== Terms of Use Section ===== */
.terms-of-use {
    padding: var(--spacing-xxl) 0;
    background-color: rgba(0, 0, 0, 0.85);
    width: 100%;
}

.terms-of-use .section-title {
    color: #a1982f;
}

.terms-of-use .title-divider {
    background: linear-gradient(90deg, transparent, #a1982f, transparent);
}

.terms-of-use .title-divider::before,
.terms-of-use .title-divider::after {
    color: #a1982f;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(225, 199, 145, 0.05) 0%, rgba(225, 199, 145, 0.02) 100%);
    border-radius: 15px;
    border: 1px solid rgba(225, 199, 145, 0.1);
}

.terms-content p {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-base);
    line-height: 1.7;
    text-align: left;
    color: var(--vert-olive);
}

.terms-content h3 {
    color: #a1982f;
    font-size: var(--font-lg);
    font-weight: 600;
    margin: var(--spacing-xl) 0 var(--spacing-md) 0;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.terms-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #a1982f, transparent);
}

.terms-content ul {
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.terms-content li {
    margin-bottom: var(--spacing-xs);
    color: var(--vert-olive);
    line-height: 1.6;
}

.terms-content strong {
    color: #a1982f;
    font-weight: 600;
}

/* ===== Legal Notices Section ===== */
.legal-notices {
    padding: var(--spacing-xxl) 0;
    background-color: rgba(0, 0, 0, 0.85);
    width: 100%;
}

.legal-notices .section-title {
    color: #a1982f;
}

.legal-notices .title-divider {
    background: linear-gradient(90deg, transparent, #a1982f, transparent);
}

.legal-notices .title-divider::before,
.legal-notices .title-divider::after {
    color: #a1982f;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(225, 199, 145, 0.05) 0%, rgba(225, 199, 145, 0.02) 100%);
    border-radius: 15px;
    border: 1px solid rgba(225, 199, 145, 0.1);
}

.legal-content p {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-base);
    line-height: 1.7;
    text-align: left;
    color: var(--vert-olive);
}

.legal-content h3 {
    color: #a1982f;
    font-size: var(--font-lg);
    font-weight: 600;
    margin: var(--spacing-xl) 0 var(--spacing-md) 0;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.legal-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #a1982f, transparent);
}

.legal-content ul {
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.legal-content li {
    margin-bottom: var(--spacing-xs);
    color: var(--vert-olive);
    line-height: 1.6;
}

.legal-content strong {
    color: #a1982f;
    font-weight: 600;
}


/* ===== Menu Section ===== */
.menu-section {
    padding: var(--spacing-xxl) 0;
    background-color: rgba(0, 0, 0, 0.85);
    width: 100%;
}

.menu-section .section-title {
    color: #a1982f;
}

.menu-section .title-divider {
    background: linear-gradient(90deg, transparent, #a1982f, transparent);
}

.menu-section .title-divider::before,
.menu-section .title-divider::after {
    color: #a1982f;
}

/* Fait Maison Image */
.fait-maison-container {
    text-align: center;
    margin: var(--spacing-lg) auto var(--spacing-xl);
}

.fait-maison-image {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Menu Filters */
.menu-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    padding: var(--spacing-sm) 0;
}

.service-filters,
.category-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    width: 100%;
}

.service-filters {
    margin-bottom: var(--spacing-sm);
}

.menu-filters::-webkit-scrollbar {
    height: 6px;
}

.menu-filters::-webkit-scrollbar-track {
    background: transparent;
}

.menu-filters::-webkit-scrollbar-thumb {
    background-color: var(--vert-olive);
    border-radius: 3px;
}

.filter-btn {
    flex-shrink: 0;
    background-color: var(--blanc);
    color: var(--noir);
    border: 2px solid var(--vert-olive);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: var(--font-xs);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    white-space: nowrap;
    min-height: 44px;
    /* Touch target */
}

.filter-btn i {
    font-size: 1em;
}

.filter-btn:hover,
.filter-btn:focus,
.filter-btn.active {
    background-color: var(--vert-olive);
    color: var(--blanc);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 199, 145, 0.3);
}

.filter-btn:active {
    transform: translateY(0);
}

/* Menu List */
.menu-list {
    max-width: 100%;
}

.menu-category {
    margin-bottom: var(--spacing-xl);
    animation: fadeIn 0.5s ease;
    padding: var(--spacing-lg);
    border-radius: 15px;
}

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

.category-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: var(--font-lg);
    color: var(--vert-olive);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.category-title i {
    color: var(--vert-olive);
}

.subcategory-title {
    font-size: var(--font-md);
    font-weight: 600;
    color: #d2691e;
    margin: var(--spacing-md) 0 var(--spacing-sm) 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-items-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xs);
}

.menu-list-item {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(225, 199, 145, 0.3);
    transition: all var(--transition-base);
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: var(--spacing-xs);
    position: relative;
    max-width: 100%;
}

.item-name {
    grid-row: 1;
    grid-column: 1;
}

.item-price {
    grid-row: 1;
    grid-column: 2;
    align-self: start;
}

.item-description {
    grid-row: 2;
    grid-column: 1 / -1;
}



.item-name {
    font-weight: 800;
    color: #a1982f;
    font-size: var(--font-md);
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-style: normal;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-xs);
    position: relative;
    padding-bottom: var(--spacing-xs);
}

.item-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--vert-olive), transparent);
}

.item-description {
    color: var(--vert-olive);
    font-size: var(--font-sm);
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
    text-align: left;
    padding-left: var(--spacing-md);
}

.item-price {
    font-weight: 600;
    color: #a1982f;
    font-size: var(--font-sm);
    font-family: 'Arial', 'Helvetica', sans-serif;
    align-self: center;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(225, 199, 145, 0.3);
}



/* ===== Contact Section ===== */
.contact {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--vert-olive), transparent);
}

.contact .section-title {
    color: #a1982f;
    margin-bottom: var(--spacing-md);
}

.contact .title-divider {
    background: linear-gradient(90deg, transparent, #a1982f, transparent);
    margin-bottom: var(--spacing-xxl);
}

.contact .title-divider::before,
.contact .title-divider::after {
    color: #a1982f;
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    width: 100%;
    max-width: 1000px;
}

.info-card {
    background: linear-gradient(135deg, rgba(225, 199, 145, 0.1) 0%, rgba(225, 199, 145, 0.05) 100%);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: 20px;
    border: 2px solid rgba(225, 199, 145, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all var(--transition-base);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 199, 145, 0.1), transparent);
    transition: left 0.5s ease;
}



.info-card i {
    font-size: 2.5rem;
    color: var(--vert-olive);
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-base);
}

.info-card h3 {
    color: var(--vert-olive);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-lg);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.info-card p {
    color: var(--noir);
    line-height: 1.8;
    font-size: var(--font-base);
    font-weight: 400;
}

.info-card a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

.info-card a:hover {
    color: var(--vert-olive);
}

.contact-divider {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #a1982f, transparent);
    margin: var(--spacing-xl) auto;
    position: relative;
}

.contact-divider::before,
.contact-divider::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #a1982f;
    font-size: 0.8rem;
}

.contact-divider::before {
    left: -20px;
}

.contact-divider::after {
    right: -20px;
}

.contact-message {
    text-align: center;
    font-size: var(--font-lg);
    font-style: italic;
    color: var(--vert-olive);
    font-family: 'Playfair Display', serif;
    line-height: 1.9;
    padding: var(--spacing-lg) var(--spacing-md);
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(225, 199, 145, 0.05) 0%, rgba(225, 199, 145, 0.02) 100%);
    border-radius: 15px;
    border: 1px solid rgba(225, 199, 145, 0.1);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--blanc);
    color: var(--noir);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    width: 100%;
    border-top: 2px solid var(--vert-olive);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    text-align: center;
    justify-items: center;
}

.footer-section {
    width: 100%;
    max-width: 350px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--vert-olive);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-lg);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: var(--vert-olive);
}

.footer-section p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    font-size: var(--font-sm);
    color: var(--noir);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section ul li a {
    color: var(--noir);
    text-decoration: none;
    transition: color var(--transition-base);
    font-size: var(--font-sm);
    display: block;
    padding: var(--spacing-xs) 0;
}

.footer-section ul li a:hover {
    color: var(--vert-olive);
}

.footer-social {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    margin-top: var(--spacing-md);
}

.footer-social a {
    color: var(--noir);
    font-size: 1.5rem;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    text-decoration: none;
    border: 1px solid var(--vert-olive);
    border-radius: 50%;
}

.footer-social a:hover {
    color: var(--vert-olive);
    background-color: rgba(225, 199, 145, 0.1);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: var(--font-sm);
    color: var(--noir);
}

.footer-bottom p {
    margin: 0;
    font-style: italic;
}

.developer-credit {
    font-size: var(--font-xs);
}

.developer-credit a {
    color: var(--vert-olive);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-base);
}

.developer-credit a:hover {
    color: #d4af37;
    text-decoration: underline;
}

.developer-credit i {
    color: #e74c3c;
    margin: 0 var(--spacing-xs);
}

.developer-tagline {
    font-size: var(--font-xs);
    color: var(--noir);
    opacity: 0.7;
    margin-top: var(--spacing-xs);
    font-style: italic;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Scroll Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Utility Classes ===== */

/* =====================================================
   MOBILE - Hide image and circle in about section
   ===================================================== */
@media (max-width: 767px) {
    .about-image-wrapper {
        display: none;
    }

    .about-subtitle {
        font-size: var(--font-md);
    }

    .about-info-title {
        font-size: var(--font-md);
    }

    .about-info-text {
        font-size: var(--font-base);
    }

    .about-cta-text {
        font-size: var(--font-md);
    }

    .about-icon {
        font-size: var(--font-lg);
    }
}

/* =====================================================
   TABLET BREAKPOINT (768px+)
   ===================================================== */
@media (min-width: 768px) {
    :root {
        --navbar-height: 70px;
    }

    /* Navigation Tablet */
    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        height: auto;
        width: auto;
        flex-direction: row;
        background: transparent;
        backdrop-filter: none;
        transform: translateX(0);
        padding: 0;
        gap: var(--spacing-xs);
        overflow: visible;
    }

    /* Masquer le bouton mobile dans le menu sur tablet/desktop */
    .order-btn-mobile-container {
        display: none;
    }

    .nav-link {
        width: auto;
        max-width: none;
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: var(--font-sm);
    }

    .logo {
        flex: 0;
        justify-content: flex-start;
    }

    .nav-right-group {
        display: flex;
        align-items: center;
        gap: var(--spacing-xs);
    }

    .nav-right {
        display: flex;
    }

    /* Background pour tablet */
    body::before {
        background-image: url('../assets/pizza-hero.webp');
    }

    /* Hero Tablet */
    .hero {
        min-height: 80vh;
        height: 80vh;
    }

    .hero-logo {
        max-width: 400px;
    }

    /* About Tablet */
    .about-container {
        flex-direction: row;
        align-items: center;
        gap: var(--spacing-md);
    }

    .about-image-wrapper {
        flex: 1;
        order: 1;
        display: block;
    }

    .about-text-wrapper {
        flex: 1;
        order: 2;
    }


    .about-subtitle {
        text-align: left;
    }

    .about-info-text {
        text-align: justify;
    }

    .about-cta-text {
        text-align: left;
    }

    .about-cta-button {
        margin: 0;
    }


    /* Menu Tablet */
    .menu-filters {
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
    }

    .menu-items-list {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .menu-list-item {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: var(--spacing-xs);
        padding: var(--spacing-xs) 0;
    }

    .item-name {
        grid-row: 1;
        grid-column: 1;
    }

    .item-price {
        grid-row: 1;
        grid-column: 2;
        align-self: start;
    }

    .item-description {
        grid-row: 2;
        grid-column: 1 / -1;
    }

    /* Contact Tablet */
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }

    /* Footer Tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-form input {
        flex: 1;
    }

    .newsletter-form button {
        width: auto;
    }
}

/* =====================================================
   DESKTOP BREAKPOINT (1024px+)
   ===================================================== */
@media (min-width: 1024px) {
    :root {
        --navbar-height: 80px;
    }

    /* Navigation Desktop */
    .nav-container {
        padding: 0 var(--spacing-lg);
    }

    .nav-menu {
        gap: var(--spacing-sm);
    }

    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        min-height: auto;
    }

    .nav-link i {
        font-size: 0.85rem;
    }

    /* Hero Desktop */
    .hero {
        min-height: 100vh;
        height: 100vh;
    }

    .hero-logo {
        max-width: 500px;
    }

    /* About Desktop */
    .about {
        padding: var(--spacing-lg) 0;
    }

    .about-container {
        gap: var(--spacing-md);
    }


    .about-subtitle {
        font-size: var(--font-lg);
    }

    .about-info-title {
        font-size: var(--font-lg);
    }

    .about-info-text {
        font-size: var(--font-md);
    }


    /* Menu Desktop */
    .menu-list {
        max-width: 900px;
        margin: 0 auto;
    }

    .menu-items-list {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .menu-list-item {
        grid-template-columns: 200px 1fr auto;
        gap: var(--spacing-md);
        padding: var(--spacing-xs) 0;
    }

    .item-name {
        grid-row: 1;
        grid-column: 1;
    }

    .item-price {
        grid-row: 1;
        grid-column: 3;
        align-self: start;
    }

    .item-description {
        grid-row: 1;
        grid-column: 2;
    }

    /* Contact Desktop */
    .contact-info {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Footer Desktop */
    .footer {
        padding: var(--spacing-lg) 0 var(--spacing-md);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: var(--spacing-md);
    }

    .footer-section {
        max-width: none;
    }

    .footer-section h3 {
        font-size: var(--font-base);
        margin-bottom: var(--spacing-sm);
    }

    .footer-section p {
        font-size: var(--font-xs);
        margin-bottom: var(--spacing-sm);
    }

    .footer-section ul li a {
        font-size: var(--font-xs);
    }

    .footer-social {
        margin-top: var(--spacing-sm);
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .footer-bottom {
        padding-top: var(--spacing-md);
    }

    .developer-credit {
        font-size: 0.7rem;
    }

    .developer-tagline {
        font-size: 0.7rem;
    }
}

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

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

/* =====================================================
   REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {

    .navbar,
    .flag-line,
    .hamburger,
    .footer-social,
    .newsletter-form {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        height: auto;
        min-height: auto;
        page-break-after: always;
    }
}