/**
 * Pizza&Pasta - Feuille de style principale
 * Réalisé par omarkweb.com
 * https://www.omarkweb.com
 */

/* ==========================================================================
   Pizza&Pasta - Styles principaux
   Site web réalisé par OmaKWeb - https://www.omakweb.com
   ========================================================================== */

/* ======================================
   VARIABLES ET RESET
====================================== */
:root {
    /* Palette sombre */
    --primary: #121212;
    --secondary: #333333;
    --accent: #f05423;
    --light: #f9f9f9;
    --dark: #0a0a0a;
    --text: #e0e0e0;
    --text-light: #aaaaaa;
    --white: #ffffff;
    --black: #000000;
    
    /* Dégradés subtils */
    --gradient-light: linear-gradient(to right, #2a2a2a, #222222);
    --gradient-dark: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.9));
    
    /* Typographie */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;
    
    /* Espacement */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    
    /* Bordures et ombres */
    --border-radius-sm: 2px;
    --border-radius-md: 4px;
    --border-radius-lg: 8px;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    
    /* Conteneurs */
    --container-max-width: 1140px;
    --container-padding: 1.5rem;
}

/* Utilisation de polices système comme solution de rechange */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Montserrat Regular'), local('Montserrat-Regular');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Playfair Display Regular'), local('PlayfairDisplay-Regular');
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

html:not(.fonts-loaded) {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

html.reduced-motion * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-normal);
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: 5rem 0;
}

.highlight {
    color: var(--accent);
}

/* ======================================
   BOUTONS
====================================== */
.btn {
    display: inline-flex;
    align-items: center; 
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    background-color: #333;
    color: var(--white);
    gap: 0.75rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(240, 84, 35, 0.3);
}

.btn-primary:hover {
    background-color: #ff6a3c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(240, 84, 35, 0.4);
}

.btn-secondary {
    background-color: #444;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(240, 84, 35, 0.3);
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--spacing-lg);
}

/* ======================================
   NAVIGATION
====================================== */
.navbar {
    background-color: var(--dark);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: all var(--transition-normal);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.logo-text {
    color: var(--white);
    font-family: var(--font-secondary);
    letter-spacing: 0.5px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    outline: none;
}

.bar {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--accent);
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Style pour le menu-toggle actif (transforme en croix) */
.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links a.hover-effect::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links a.hover-effect {
    color: var(--accent);
}

/* ======================================
   HERO SECTION
====================================== */
.hero {
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('./images/bg.webp');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 10rem 0 6rem;
    position: relative;
    margin-top: 0;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.hero h1 {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-md);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-normal);
}

.hero-scroll a:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ======================================
   FEATURES SECTION
====================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

/* Titre coloré pour les sections spécifiques */
#features .section-title,
#localisation .section-title,
#contact .section-title,
.pizza-month .section-title {
    color: var(--accent);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: #2a2a2a;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #333;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.feature-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    contain: size layout;
    margin-bottom: 10px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

/* Optimisation pour les nouvelles images jpg */
.feature-image img[src$=".jpg"] {
    object-position: center center;
    filter: brightness(0.9) contrast(1.1);
}

/* Styles spécifiques pour chaque image */
.feature-image img[src*="Service.jpg"] {
    object-position: center 25%;
}

.feature-image img[src*="Livraison.jpg"] {
    object-position: center center;
}

.feature-image img[src*="Pate.jpg"] {
    object-position: center 30%;
}

/* Pour les petits écrans */
@media (max-width: 425px) {
    .feature-image img[src$=".jpg"] {
        object-fit: cover;
    }
}

.feature-content {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -20px auto var(--spacing-md);
    box-shadow: var(--shadow-sm);
    color: var(--accent);
    font-size: 1.5rem;
    border: 2px solid var(--accent);
    position: relative;
    z-index: 5;
}

.feature-card h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.attract-message {
    color: var(--accent);
    font-weight: 500;
    margin-top: auto;
    margin-bottom: var(--spacing-md);
}

/* ======================================
   FEATURE CONTENT - SPÉCIFIQUE POUR PÂTE FRAÎCHE
====================================== */
.feature-card:nth-child(3) .feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:nth-child(3) .feature-content h2 {
    margin-bottom: 1rem;
}

.feature-card:nth-child(3) .feature-content p {
    text-align: center;
    margin-bottom: 1.5rem;
}

.feature-card:nth-child(3) .section-title {
    font-size: 1.3rem;
    margin: 1rem 0;
    padding-bottom: 0.5rem;
    color: var(--accent);
    display: inline-block;
    text-align: center;
}

.sauce-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
    .sauce-list {
        grid-template-columns: 1fr;
    }
}

/* ======================================
   DELIVERY AREA ET SAUCES
====================================== */
.delivery-area {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.country {
    background: linear-gradient(145deg, #222, #2a2a2a);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.country:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.country-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
}

.country-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
}

.flag-container {
    display: flex;
    align-items: center;
    padding: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.flag {
    width: 24px;
    height: 16px;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    object-fit: cover;
}

.delivery-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.delivery-list li {
    background-color: rgba(255, 255, 255, 0.07);
    padding: 8px 8px;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    text-overflow: ellipsis;
}

.delivery-list li:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(240, 84, 35, 0.3);
}

.sauce-list {
    margin-top: var(--spacing-md);
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
}

.sauce-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    justify-content: flex-start;
    border: 1px solid #444;
    border-radius: var(--border-radius-md);
    background-color: #2a2a2a;
    transition: all var(--transition-normal);
}

.sauce-list li:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--accent);
}

.sauce-list li i {
    color: var(--accent);
}

.sauce-list li:hover i {
    color: var(--white);
}

/* Bouton du menu amélioré */
.feature-content .btn-secondary {
    background-color: var(--accent);
    color: var(--white);
    display: block;
    margin: 1.5rem auto 0;
    text-align: center;
    font-size: 1.1rem;
    padding: 0.9rem 1.8rem;
    box-shadow: 0 4px 15px rgba(240, 84, 35, 0.4);
    border-radius: 30px;
    max-width: 250px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-content .btn-secondary:hover {
    background-color: #ff6a3c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(240, 84, 35, 0.5);
}

.feature-content .btn-secondary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.feature-content .btn-secondary:hover:before {
    transform: translateX(100%);
}

/* ======================================
   PIZZA PREVIEW
====================================== */
.pizza-preview {
    background-color: var(--light);
    padding: var(--spacing-xl) 0;
}

.pizza-preview-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.pizza-preview-text {
    flex: 1;
}

.pizza-preview-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.pizza-preview-text p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-light);
}

.pizza-preview-image {
    flex: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ======================================
   PIZZA DU MOIS
====================================== */
.pizza-month {
    background-color: var(--white);
    padding: var(--spacing-lg) 0;
}

.pizza-month .section-header {
    margin-bottom: var(--spacing-md);
}

.pizza-month .section-subtitle {
    animation: fadeInUp 1s ease-out forwards;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(42, 42, 42, 0.7), rgba(51, 51, 51, 0.7));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--accent);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.pizza-month .section-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: subtitleShine 5s infinite;
}

@keyframes subtitleShine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.featured-title {
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.pizza-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.pizza-card {
    background-color: #1d1d1d;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid #333;
    transition: all var(--transition-normal);
    width: 100%;
}

.pizza-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.pizza-card.featured {
    display: flex;
    flex-direction: column;
}

.pizza-image {
    width: 100%;
    overflow: hidden;
}

.pizza-image img {
    width: 100%;
    height: auto;
    display: block;
}

.pizza-content {
    padding: var(--spacing-xl);
    position: relative;
}

.pizza-badge {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(240, 84, 35, 0.3);
}

.pizza-content h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
}

.pizza-name {
    font-size: 1.8rem;
    color: var(--accent);
    margin: 0.75rem 0;
    font-weight: 700;
    letter-spacing: 1px;
}

.pizza-description {
    margin-bottom: var(--spacing-lg);
}

.pizza-description p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.ingredients-title {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.ingredients-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: var(--spacing-lg);
}

.ingredients-list li {
    background-color: #2a2a2a;
    padding: 0.85rem 1rem;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    transition: all var(--transition-normal);
    border: 1px solid #333;
}

.ingredients-list li:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.ingredients-list li i {
    color: #f39c12;
    font-size: 1.1rem;
}

.pizza-content .attract-message {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent);
    background-color: rgba(240, 84, 35, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    margin: 1.5rem 0;
    text-align: center;
    border-left: 3px solid var(--accent);
}

.pizza-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.pizza-cta .btn-primary {
    padding: 0.85rem 2rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Pizzas précédentes */
.previous-pizzas {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.previous-pizzas h3 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
}

.pizza-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.mini-pizza-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.mini-pizza-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mini-pizza-image {
    height: 160px;
    overflow: hidden;
}

.mini-pizza-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-pizza-card h4 {
    font-size: 1.125rem;
    color: var(--primary);
    margin: var(--spacing-md) 0 0;
    padding: 0 var(--spacing-md);
}

.mini-pizza-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
    padding: 0 var(--spacing-md);
}

/* ======================================
   LOCALISATION
====================================== */
.localisation {
    background-color: #2a2a2a;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-xl);
    margin: var(--spacing-xl) auto;
    max-width: 900px;
    text-align: center;
    min-height: 300px; /* Réserve de l'espace pour éviter le CLS */
}

.localisation h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: var(--spacing-md);
}

.localisation p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.address {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-xl);
    padding: 0.75rem 1rem;
    background-color: #333;
    border-radius: var(--border-radius-md);
    color: var(--text);
}

.address i {
    color: var(--accent);
}

.map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Rapport 16:9 */
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ======================================
   FOOTER
====================================== */
.footer {
    background-color: var(--dark);
    color: var(--light);
    margin-top: auto;
    padding-top: var(--spacing-lg);
}

.footer-header {
    margin-bottom: 1.5rem;
}

.footer-header .section-title,
.footer-header .section-subtitle {
    color: var(--white);
}

.footer-header .section-title::after {
    background-color: var(--accent);
}

.footer-content {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-section p {
    color: #bbb;
    margin-bottom: var(--spacing-sm);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-links a {
    color: var(--light);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
}

.social-links a:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

/* Neutralisation des couleurs par défaut des icônes sociales */
.social-links i {
    transition: all var(--transition-normal);
}

.social-links a:hover i {
    color: var(--white);
}

/* Couleurs spécifiques pour Facebook et Instagram */
.fa-facebook-f {
    color: #3b5998;
}

.fa-instagram {
    background: -webkit-linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.social-links a:hover .fa-facebook-f,
.social-links a:hover .fa-instagram {
    background: none;
    -webkit-text-fill-color: var(--white);
    color: var(--white) !important;
}

.contact-item {
    margin-bottom: var(--spacing-md);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #bbb;
    transition: color var(--transition-normal);
    padding: 0;
    background-color: transparent;
}

.contact-link:hover {
    color: var(--white);
    background-color: transparent;
    transform: translateY(-2px);
}

.flag-icon {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    margin-left: 0.5rem;
}

.business-status {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    position: relative;
    overflow: hidden;
}

.business-status::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.business-status.open {
    background-color: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    padding-left: 2rem;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.business-status.closed {
    background-color: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    padding-left: 2rem;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.business-status.open::before {
    background-color: #2ecc71;
    box-shadow: 0 0 8px #2ecc71;
    animation: pulse 2s infinite;
}

.business-status.closed::before {
    background-color: #e74c3c;
    box-shadow: 0 0 8px #e74c3c;
}

@keyframes pulse {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
}

.footer-bottom {
    text-align: center;
    padding: var(--spacing-lg);
    background: #000000;
    font-size: 0.875rem;
    color: #999;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 940px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pizza-card.featured {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pizza-image {
        height: 300px;
    }
    
    .ingredients-list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablettes et grands téléphones */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 1.2rem;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .menu-toggle {
        display: flex !important; /* Force l'affichage */
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000;
        padding: 1rem 0;
        flex-direction: column;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        z-index: 100;
        transition: all 0.3s ease-in-out;
    }
    
    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-in-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        padding: 1rem;
        width: 100%;
        display: block;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        transform: none !important;
    }
    
    .hero-buttons,
    .pizza-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .pizza-cta {
        gap: var(--spacing-md);
    }
    
    .pizza-image {
        height: auto !important;
        aspect-ratio: 4/3;
    }
    
    .ingredients-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links, .contact-link {
        justify-content: center;
    }
    
    .localisation {
        padding: 1.5rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .feature-icon {
        margin: -18px auto var(--spacing-md);
    }
    
    .feature-image {
        margin-bottom: 8px;
    }
    
    /* Fix pour les liens de navigation sur mobile */
    .nav-links a::after {
        display: none;
    }
    
    .nav-links a.active {
        background-color: rgba(240, 84, 35, 0.2);
    }
}

/* Téléphones moyens (iPhone 11, 12, 13, Galaxy S20, etc.) */
@media (max-width: 425px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .hero {
        padding: 7rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .feature-image {
        height: 180px;
    }
    
    .feature-card h2 {
        font-size: 1.3rem;
    }
    
    .pizza-image {
        height: 200px;
    }
    
    .pizza-content {
        padding: 1.5rem;
    }
    
    .pizza-content h2 {
        font-size: 1.5rem;
    }
    
    .pizza-name {
        font-size: 1.5rem;
    }

    .ingredients-list {
        grid-template-columns: 1fr;
    }
    
    .sauce-list {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 250px;
    }
    
    .btn {
        width: 100%;
        padding: 0.8rem 1.2rem;
    }
    
    .feature-icon {
        margin: -15px auto var(--spacing-md);
        width: 50px;
        height: 50px;
    }
    
    .feature-image {
        margin-bottom: 5px;
    }
    
    /* Ajustements pour la lisibilité */
    .pizza-description p {
        font-size: 1rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    /* Fix pour burger menu */
    .menu-toggle {
        width: 36px;
        height: 36px;
    }
    
    .bar {
        width: 24px;
    }
}

/* Pour iPhone 8, SE, Galaxy S9 */
@media (max-width: 375px) {
    html {
        font-size: 13.5px;
    }
    
    .container {
        padding: 0 0.9rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 6.5rem 0 2.8rem;
    }
    
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .delivery-area {
        padding: 0.5rem;
        gap: 0.5rem;
        margin: 0.5rem 0;
    }
    
    .country-title {
        margin-bottom: 0.5rem;
    }
    
    .delivery-list li {
        min-height: 38px;
        font-size: 0.8rem;
    }
    
    /* Amélioration de la navigation */
    .navbar {
        padding: 0.8rem 0;
    }
    
    .navbar-logo {
        font-size: 1.1rem;
    }
    
    .navbar-logo img {
        width: 40px;
        height: 40px;
    }
    
    /* Boutons plus grands pour faciliter le toucher */
    .btn {
        padding: 0.85rem 1.2rem;
        border-radius: 6px;
    }
    
    /* Contact plus lisible */
    .contact-item {
        font-size: 0.9rem;
    }
}

/* Pour les petits téléphones (iPhone 5/SE, Galaxy S5) */
@media (max-width: 320px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 0.8rem;
    }
    
    .hero {
        padding: 6rem 0 2.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .feature-image {
        height: 160px;
    }
    
    .feature-icon {
        margin: -15px auto var(--spacing-md);
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }
    
    .pizza-image {
        height: 180px;
    }
    
    .pizza-content {
        padding: 1.2rem;
    }
    
    .pizza-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
    
    .ingredients-title {
        font-size: 1.1rem;
    }
    
    .map-container {
        height: 200px;
    }
    
    .localisation h2 {
        font-size: 1.8rem;
    }
    
    .country h3 {
        font-size: 1.1rem;
    }
    
    .delivery-list li {
        padding: 0.6rem 0.4rem;
        font-size: 0.9rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding: 1rem;
        font-size: 0.8rem;
    }
    
    .delivery-list {
        grid-template-columns: 1fr;
    }
    
    .delivery-list li {
        padding: 0.5rem 0.3rem;
        font-size: 0.8rem;
    }
    
    .country-title {
        flex-direction: column;
        gap: 0.2rem;
        font-size: 1rem;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.6rem;
    }
    
    .country-title span {
        margin-bottom: 0.3rem;
        display: block;
        text-align: center;
    }
    
    .flag {
        width: 20px;
        height: 14px;
        display: block;
        margin: 0 auto;
    }
    
    /* Fix pour menu navigation */
    .nav-links a {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    /* Touch targets plus grands pour téléphones petits */
    .hero-scroll a {
        width: 36px;
        height: 36px;
    }
    
    /* Optimisations pour écrans très petits */
    .feature-card p {
        font-size: 0.95rem;
    }
    
    .attract-message {
        font-size: 0.95rem;
    }
    
    .business-status {
        font-size: 0.8rem;
    }
}

/* Spécial pour les téléphones pliables (Galaxy Z Flip) */
@media (max-width: 280px) {
    html {
        font-size: 12px;
    }
    
    .container {
        padding: 0 0.7rem;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-scroll {
        display: none; /* Masquer sur très petit écran */
    }
    
    .feature-card h2 {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .navbar-logo {
        font-size: 1rem;
    }
    
    .navbar-logo img {
        width: 36px;
        height: 36px;
    }
    
    .menu-toggle {
        width: 34px;
        height: 34px;
    }
    
    .bar {
        width: 22px;
        height: 2px;
    }
    
    /* Améliorer la lisibilité du menu */
    .delivery-list li {
        font-size: 0.75rem;
        padding: 0.4rem 0.3rem;
    }
    
    /* Simplification du footer */
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
    }
    
    /* Ajustements supplémentaires pour très petits écrans */
    .pizza-content {
        padding: 1rem;
    }
    
    .pizza-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.5rem;
    }
    
    .pizza-name {
        font-size: 1.3rem;
    }
    
    .ingredients-list li {
        padding: 0.7rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .contact-link {
        font-size: 0.8rem;
    }
    
    .business-status {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
        padding-left: 1.8rem;
    }
    
    .business-status::before {
        width: 8px;
        height: 8px;
        left: 10px;
    }
    
    .logo-text {
        display: none;
    }
    
    .attract-message {
        font-size: 0.85rem;
        padding: 0.8rem;
    }
    
    .btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
        padding: 0.8rem;
    }
    
    .social-link {
        padding: 0.6rem;
    }
    
    .social-link i {
        font-size: 1rem;
    }
}

/* Style pour la navigation sombre */
.dark-nav {
    background-color: #000;
}

.dark-nav .nav-links a {
    color: #fff;
}

.dark-nav .logo-text {
    color: #fff;
}

/* Style pour agrandir l'image de la pizza du mois */
.pizza-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

/* Style général pour assombrir le contenu du site */
body {
    background-color: #1a1a1a;
    color: var(--text);
}

.section {
    background-color: #222;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

/* Cartes de contenu avec arrière-plan plus sombre */
.feature-card, .pizza-card {
    background-color: #2a2a2a;
}

.feature-card h2, .pizza-content h2, .ingredients-title {
    color: var(--white);
}

.feature-card p, .pizza-description p {
    color: var(--text-light);
}

/* Styles pour les ingrédients */
.ingredients-list li {
    background-color: #333;
    color: var(--text);
}

/* Localisation section */
.localisation {
    background-color: #2a2a2a;
}

.localisation h2 {
    color: var(--white);
}

.address {
    background-color: #333;
    color: var(--text);
}

/* Pied de page plus sombre */
.footer {
    background-color: var(--dark);
}

.footer-bottom {
    background: #000000;
}

/* Boutons adaptés au thème sombre */
.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--accent);
}

/* Style spécifique pour la barre de navigation sombre */
.dark-nav {
    background-color: #000;
}

.dark-nav .bar {
    background-color: var(--white);
}

.navbar-sticky {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Amélioration responsive pour zone de livraison */
@media (max-width: 768px) {
    .delivery-area {
        flex-direction: column;
        gap: 1rem;
        padding: 0.8rem;
    }
    
    .country {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .delivery-list {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

@media (max-width: 480px) {
    .delivery-list {
        grid-template-columns: 1fr;
    }
    
    .delivery-list li {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .country-title, .country h3 {
        font-size: 1.1rem;
        flex-wrap: wrap;
    }
    
    .feature-card:nth-child(2) .feature-content {
        padding: 1.2rem 0.8rem;
    }
}

@media (max-width: 375px) {
    .delivery-area {
        padding: 0.5rem;
        gap: 0.5rem;
        margin: 0.5rem 0;
    }
    
    .country-title {
        margin-bottom: 0.5rem;
    }
    
    .delivery-list li {
        min-height: 38px;
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .delivery-list {
        grid-template-columns: 1fr;
    }
    
    .delivery-list li {
        padding: 0.5rem 0.3rem;
        font-size: 0.8rem;
    }
    
    .country-title {
        flex-direction: column;
        gap: 0.2rem;
        font-size: 1rem;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.6rem;
    }
    
    .country-title span {
        margin-bottom: 0.3rem;
        display: block;
        text-align: center;
    }
    
    .flag {
        width: 20px;
        height: 14px;
        display: block;
        margin: 0 auto;
    }
    
    /* Correction spécifique pour le flag */
    .feature-card:nth-child(2) .country-title .flag {
        margin-top: 0;
    }
    
    .feature-card:nth-child(2) .feature-content {
        padding: 1rem 0.6rem;
    }
}

/* Réinitialisation des styles pour éviter les conflits */
.feature-card:nth-child(2) .feature-content h2 {
    margin-bottom: 0.8rem;
}

.delivery-area {
    box-sizing: border-box;
    margin: 0.8rem 0;
    overflow: visible;
    border-radius: 4px;
}

.country {
    box-sizing: border-box;
}

.delivery-list li {
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 4px;
}

.country-name {
    display: inline-block;
}

.flag-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    .country-title {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
    }
}

@media (max-width: 375px) {
    .flag-container {
        margin-top: 0.2rem;
    }
}

@media (max-width: 320px) {
    .country-title {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .country-name {
        margin-bottom: 0.1rem;
    }
    
    .flag-container {
        display: block;
        margin: 0 auto;
    }
}

/* Couleurs pour les icônes du footer */
.footer-section .fa-clock {
    color: #3498db;
    font-size: 1.2rem;
    margin-right: 8px;
}

.footer-section .fa-calendar-times {
    color: #e74c3c;
    font-size: 1.2rem;
    margin-right: 8px;
}

.footer-section .fa-phone {
    color: #27ae60;
    font-size: 1.2rem;
}

.footer-section .fa-map-marker-alt {
    color: #e74c3c;
    font-size: 1.2rem;
    margin-right: 8px;
}

/* Animation pour les icônes téléphone */
.contact-link:hover .fa-phone {
    animation: shake 0.8s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(-10deg); }
    40% { transform: rotate(8deg); }
    60% { transform: rotate(-6deg); }
    80% { transform: rotate(4deg); }
}

/* Amélioration de la mise en page des contacts */
.contact-item {
    margin-bottom: var(--spacing-md);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #bbb;
    transition: color var(--transition-normal);
    padding: 0;
    background-color: transparent;
}

.contact-link:hover {
    color: var(--white);
    background-color: transparent;
    transform: translateY(-2px);
}

/* Styles pour la section Service Rapide modernisée */
.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
}

.time-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    width: fit-content;
    box-shadow: 0 4px 8px rgba(240, 84, 35, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-badge i {
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

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

.service-options {
    display: flex;
    gap: 0.75rem;
    margin: 0.75rem 0;
}

.service-options .option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #2a2a2a;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    border: 1px solid #444;
    font-size: 0.9rem;
}

.service-options .option i {
    color: var(--accent);
    font-size: 0.95rem;
    margin-right: 3px;
}

.service-options .option:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.promo-banner {
    background: linear-gradient(135deg, #f05423, #f27121);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 12px rgba(240, 84, 35, 0.25);
    transition: all 0.3s ease;
}

.promo-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(240, 84, 35, 0.3);
}

.service-highlights .highlight {
    color: var(--accent);
    font-weight: 600;
}

/* Style du bouton de menu pour la section Service Rapide */
.service-menu-btn {
    margin-top: 0.5rem;
    background-color: var(--accent);
    color: var(--white);
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(240, 84, 35, 0.25);
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.service-menu-btn:hover {
    background-color: #ff6a3c;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(240, 84, 35, 0.4);
}

/* Styles pour la boîte d'informations de contact dans la zone de livraison */
.contact-info-box {
    margin-top: 1.25rem;
    background: linear-gradient(145deg, #222, #2a2a2a);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(240, 84, 35, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.contact-info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent);
}

.contact-info-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.contact-info-title i {
    color: var(--accent);
    font-size: 1.1rem;
}

.contact-info-title span {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
}

.contact-phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.25s ease;
    color: var(--text);
    white-space: nowrap;
    width: fit-content;
    margin: 0 auto;
}

.contact-phone:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: var(--white);
}

.contact-phone i {
    color: #66bb6a;
    font-size: 1rem;
    animation: pulse 2s infinite;
}

.contact-phone span {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contact-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    margin-left: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
    .contact-info-box {
        padding: 0.75rem;
    }
    
    .contact-phone {
        padding: 0.4rem 0.6rem;
    }
    
    .contact-info-title {
        white-space: normal;
        font-size: 0.85rem;
    }
    
    .contact-info-title span {
        font-size: 0.85rem;
    }
}

/* Icônes colorées pour les boutons du header */
.menu-icon {
    color: #1a1a1a;
}

.location-icon {
    color: #e74c3c;
}

/* Styles Responsive pour Pizza du Mois */
@media (max-width: 768px) {
    .pizza-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .pizza-card {
        display: flex;
        flex-direction: column;
    }
    
    .pizza-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .pizza-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pizza-name {
        font-size: 1.3rem;
    }
    
    .pizza-image {
        max-height: 220px;
        overflow: hidden;
    }
}

/* Correction pour le problème de responsive entre 500px et 420px */
@media (max-width: 500px) and (min-width: 426px) {
    .container {
        padding: 0 1rem;
    }
    
    .pizza-image {
        height: auto;
    }
    
    .pizza-content {
        padding: 1.25rem;
    }
    
    .pizza-name {
        font-size: 1.4rem;
    }
    
    .ingredients-list {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    .feature-image {
        height: 240px;
    }
    
    .feature-content {
        padding: 1.25rem;
    }
    
    .section {
        padding: 1.5rem;
    }
    
    .feature-card:nth-child(2) .feature-content {
        padding: 1.25rem 0.8rem;
    }
}

/* Correction pour l'image de la pizza du mois entre 800px et 1000px */
@media (max-width: 1000px) and (min-width: 801px) {
    .pizza-image {
        height: auto;
        overflow: hidden;
    }
    
    .pizza-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .pizza-content {
        padding: 1.5rem;
    }
    
    .pizza-name {
        font-size: 1.6rem;
    }
    
    .ingredients-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* Correction pour la navbar entre 800px et 768px */
@media (max-width: 800px) and (min-width: 769px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-container {
        align-items: center;
    }
    
    .navbar-logo {
        font-size: 1.1rem;
    }
    
    .navbar-logo img {
        width: 45px;
        height: 45px;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
        padding: 0.6rem 0.4rem;
    }
}

/* Section Suivez-nous dans le footer */
.follow-us-box {
    margin-top: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.follow-us-title {
    position: relative;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.75rem;
    display: inline-block;
}

.follow-us-title::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
    max-width: 140px;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.5s ease;
    opacity: 0.9;
}

.social-link:hover {
    transform: translateY(-3px);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-link:hover::before {
    opacity: 1;
}

.facebook-link {
    background-color: rgba(59, 89, 152, 0.8);
}

.facebook-link::before {
    background-color: #3b5998;
}

.facebook-link i {
    color: #ffffff;
}

.instagram-link {
    background: linear-gradient(45deg, rgba(240, 148, 51, 0.8) 0%, rgba(230, 104, 60, 0.8) 25%, rgba(220, 39, 67, 0.8) 50%, rgba(204, 35, 102, 0.8) 75%, rgba(188, 24, 136, 0.8) 100%);
}

.instagram-link::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-link i {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: white;
}

/* Animation des icônes */
.social-link i {
    transition: all 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.2);
}

/* Responsive pour les réseaux sociaux */
@media (max-width: 768px) {
    .follow-us-box {
        padding: 1.2rem;
    }
    
    .social-links {
        flex-direction: row;
        justify-content: center;
    }
    
    .social-link {
        padding: 0.7rem 1rem;
    }
}

@media (max-width: 480px) {
    .social-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .follow-us-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 360px) {
    .social-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .social-link {
        width: 100%;
        max-width: 100%;
    }
}

/* Améliorations pour la section Pizza du Mois en desktop */
@media (min-width: 768px) {
    .pizza-card.featured {
        border-radius: 12px;
        overflow: hidden;
    }
    
    .pizza-image {
        max-height: 500px;
        width: 100%;
        object-fit: cover;
    }
    
    .pizza-content {
        padding: 2rem;
        text-align: center;
    }
    
    .pizza-badge {
        display: inline-block;
        margin: 0 auto 1rem;
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
    
    .pizza-name {
        font-size: 2rem;
        letter-spacing: 1px;
        margin: 1rem 0;
    }
    
    .ingredients-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin: 1.5rem auto;
        max-width: 900px;
    }
    
    .pizza-cta {
        margin-top: 1.5rem;
    }
    
    .pizza-cta .btn-primary {
        min-width: 200px;
    }
}

/* Style pour grands écrans (>992px) */
@media (min-width: 992px) {
    .pizza-showcase {
        padding: 2rem 0;
    }

    .pizza-card.featured {
        max-width: 1200px;
        margin: 0 auto;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .pizza-content {
        padding: 3rem;
    }
    
    .pizza-badge {
        transform: translateY(-50%);
        margin-top: -1rem;
        position: relative;
        z-index: 5;
        box-shadow: 0 5px 15px rgba(240, 84, 35, 0.3);
    }
    
    .pizza-description {
        max-width: 80%;
        margin: 0 auto 2rem;
    }
    
    .ingredients-list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .ingredients-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .attract-message {
        max-width: 80%;
        margin: 2rem auto;
        padding: 1.2rem;
    }
}

.webdesign-signature {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #777;
}

.webdesign-signature a {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.webdesign-signature a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ======================================
   PIZZA DU MOIS - ANIMATIONS
====================================== */
.pizza-month .section-title {
    position: relative;
    display: inline-block;
    animation: pulse 2s infinite;
}

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

.pizza-month .section-subtitle {
    animation: fadeInUp 1s ease-out forwards;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(42, 42, 42, 0.7), rgba(51, 51, 51, 0.7));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--accent);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.pizza-month .section-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: subtitleShine 5s infinite;
}

@keyframes subtitleShine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.pizza-card.featured {
    position: relative;
    overflow: hidden;
}

.pizza-card.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
    z-index: 1;
}

@keyframes shine {
    0% { left: -50%; top: -50%; }
    100% { left: 150%; top: 150%; }
}

.pizza-badge {
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.pizza-name {
    position: relative;
    display: inline-block;
}

.pizza-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    animation: lineExpand 1.5s ease-out forwards;
}

@keyframes lineExpand {
    0% { width: 0; }
    100% { width: 100%; }
}

.ingredients-list li {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInIngredients 0.5s ease forwards;
}

.ingredients-list li:nth-child(1) { animation-delay: 0.1s; }
.ingredients-list li:nth-child(2) { animation-delay: 0.2s; }
.ingredients-list li:nth-child(3) { animation-delay: 0.3s; }
.ingredients-list li:nth-child(4) { animation-delay: 0.4s; }
.ingredients-list li:nth-child(5) { animation-delay: 0.5s; }
.ingredients-list li:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInIngredients {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.attract-message {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, var(--accent), #ff8a50);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: colorChange 4s linear infinite;
}

@keyframes colorChange {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.pizza-cta .btn {
    transition: transform 0.3s, box-shadow 0.3s;
}

.pizza-cta .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(240, 84, 35, 0.5);
}

/* Correction pour les téléphones très petits (moins de 280px) */
@media (max-width: 280px) {
    /* Ajustement pour les numéros de téléphone */
    .contact-phone {
        padding: 0.5rem;
        width: 100%;
        border-radius: 4px;
        font-size: 0.85rem;
    }
    
    .contact-phone i {
        font-size: 0.9rem;
    }
    
    /* Ajustement pour les icônes de livraison */
    .service-options {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .service-options .option {
        width: 100%;
        justify-content: center;
        padding: 0.5rem;
    }
    
    /* Amélioration de l'affichage des téléphones dans le footer */
    .contact-info-box {
        padding: 0.5rem;
    }
    
    .contact-info-title {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.3rem;
    }
    
    .contact-phone-numbers {
        gap: 0.5rem;
    }
    
    /* Correction pour les boutons avec icônes */
    .btn i {
        font-size: 0.9rem;
    }
}

/* Correction spécifique pour les numéros de téléphone et icônes de livraison */
@media (max-width: 320px) {
    .contact-phone {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    
    .contact-phone-numbers {
        width: 100%;
    }
    
    .contact-phone {
        width: 100%;
        justify-content: flex-start;
    }
    
    .service-options .option {
        padding: 0.5rem 0.7rem;
        font-size: 0.85rem;
    }
    
    /* Amélioration des icônes de contact dans le footer */
    .contact-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-link {
        width: 100%;
        padding: 0.5rem 0;
    }
}

/* Correction améliorée pour les numéros de téléphone sous 320px */
@media (max-width: 320px) {
    .contact-info-box {
        padding: 0.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-phone-numbers {
        width: 100%;
        flex-direction: column;
        gap: 0.4rem;
    }
    
    .contact-phone {
        width: 100%;
        padding: 0.5rem;
        justify-content: flex-start;
        box-sizing: border-box;
        font-size: 0.85rem;
        border-radius: 4px;
        gap: 0.4rem;
        white-space: normal;
    }
    
    .contact-phone i {
        font-size: 0.9rem;
        min-width: 15px;
    }
    
    .contact-phone span {
        letter-spacing: 0;
        white-space: normal;
        word-break: break-all;
    }
    
    /* Amélioration des boutons de service en colonne */
    .service-options {
        flex-direction: column;
        width: 100%;
        gap: 0.3rem;
    }
    
    .service-options .option {
        justify-content: center;
        width: 100%;
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    /* Correction pour le footer à très petite taille */
    .footer-section .contact-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }
    
    .footer-section .contact-link {
        width: 100%;
        padding: 0.4rem 0;
        font-size: 0.85rem;
    }
    
    /* Fix spécifique pour l'icône de téléphone dans le footer */
    .footer-section .fa-phone {
        min-width: 15px;
    }
}

/* Correction spécifique pour l'adresse dans le footer */
@media (max-width: 320px) {
    .footer-section .contact-link {
        display: flex;
        flex-wrap: wrap;
        word-break: break-word;
        white-space: normal;
        width: 100%;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .footer-section .fa-map-marker-alt {
        align-self: flex-start;
        margin-top: 2px;
        min-width: 15px;
    }
    
    .footer-section .contact-item {
        margin-bottom: 1rem;
    }
    
    /* Spécifique pour l'adresse */
    .footer-section .contact-link:has(.fa-map-marker-alt) {
        align-items: flex-start;
    }
    
    /* Solution alternative pour les navigateurs qui ne supportent pas :has */
    .contact-link-address {
        align-items: flex-start !important;
    }
}

/* Ajout des styles pour les mentions légales */

/* Lien mentions légales dans le footer */
.legal-links {
    margin-top: 10px;
    font-size: 0.9rem;
}

.legal-links a {
    color: var(--text-light);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--accent);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--primary);
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: slideIn 0.4s ease;
}

.modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark);
    border-radius: 8px 8px 0 0;
}

.modal-header h2 {
    margin: 0;
    color: var(--accent);
    font-family: var(--font-secondary);
    font-weight: 600;
}

.close-modal {
    color: var(--text);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--accent);
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
    color: var(--text);
    max-height: calc(90vh - 70px);
}

.modal-body h3 {
    color: var(--accent);
    margin-top: 25px;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
    font-weight: 600;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-body strong {
    color: var(--white);
}

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

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

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-body {
        padding: 15px;
    }
}

/* Fin des styles pour les mentions légales */

@media (max-width: 385px) {
  .emoji-feu {
    display: none;
  }
}



