/* Typographies */
@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Quicksand:wght@400;600&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #FFF9E1;
    color: #080C0C;
}

/* En-tête */
header {
    background: #FFF9E1;
    color: #780000;
    padding: 1rem 0;
    text-align: center;
    position: relative;
}
header .logo-container img {
    max-width: 180px;
    height: auto;
}
header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
header nav ul li {
    display: inline;
    margin: 0 10px;
}
header nav ul li a {
    color: #780000;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Mobile nav toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
}
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 4rem;
    right: 0;
    background: #FFF9E1;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
}
.mobile-nav.open {
    display: flex;
}
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .desktop-nav {
        display: none;
    }
}

/* Barre des réseaux sociaux */
.social-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF9E1;
    padding: 10px 0;
    border-bottom: 2px solid #780000; /* Ligne séparatrice */
    margin-bottom: 30px; /* Espacement en bas */
    line-height: 0; /* Supprime tout espace vertical résiduel */
}

.social-bar p {
    margin: 0;
    font-size: 1rem;
    color: #080C0C;
    margin-right: 15px;
    font-weight: bold;
}

.social-links {
    display: flex; /* Aligne les icônes sur une ligne */
    gap: 10px; /* Espacement entre les icônes */
}

.social-links a {
    display: inline-block; /* Assure un bon comportement des liens */
}

.social-links a img {
    display: block; /* Empêche les espaces blancs sous les images */
    width: 30px; /* Taille uniforme des icônes */
    height: auto; /* Conserve les proportions */
    transition: transform 0.3s ease;
    margin: 0; /* Supprime les marges éventuelles */
}

.social-links a img:hover {
    transform: scale(1.2); /* Effet d'agrandissement */
}


/* Section principale (Index) */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: #FFF9E1;
    color: #780000;
}
.hero h1 {
    font-family: 'Berkshire Swash', cursive;
    font-size: 3rem;
    margin-top: 0;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.2rem;
    color: #080C0C;
    margin-bottom: 2rem;
}
.hero .highlight-info {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #080C0C;
    font-weight: bold;
    line-height: 1.8;
}
.hero .highlight-info a {
    color: #780000;
    text-decoration: none;
    font-weight: bold;
}
.hero .highlight-info a:hover {
    text-decoration: underline;
}

/* Bouton principal */
.cta {
    display: inline-block;
    padding: 10px 20px;
    background-color: #780000; /* Rouge foncé */
    color: #FFF; /* Texte blanc */
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px; /* Coins arrondis */
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1rem;
    text-align: center;
}
.cta:hover {
    background-color: #a30000; /* Rouge plus clair au survol */
    transform: scale(1.05); /* Effet d'agrandissement */
}
/* Section slider */
.pizza-slider {
    text-align: center;
    padding: 1rem; /* Moins de padding pour éviter trop d'espacement */
    background: #FFF9E1; /* Fond jaune clair */
}
.pizza-slider h2 {
    font-family: 'Berkshire Swash', cursive;
    font-size: 2rem; /* Taille du titre */
    margin-bottom: 1rem; /* Espacement inférieur */
}

/* Slider */
.swiper-container {
    width: 100%;
    max-width: 800px; /* Largeur maximale pour desktop */
    margin: 2rem auto; /* Centré horizontalement */
    height: 400px; /* Hauteur constante pour stabiliser le slider */
}

.swiper-wrapper {
    height: 100%; /* Assure que le wrapper occupe toute la hauteur */
}

.swiper-slide {
    display: flex;
    justify-content: center; /* Centrage horizontal */
    align-items: center; /* Centrage vertical */
    height: 100%; /* Remplit toute la hauteur */
}

.swiper-slide img {
    width: 100%; /* Remplit horizontalement le conteneur */
    height: 100%; /* Remplit verticalement le conteneur */
    object-fit: cover; /* Remplit sans déformer */
    border-radius: 10px; /* Coins arrondis pour un effet moderne */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Ombre subtile */
}

/* Boutons de navigation */
.swiper-button-next, .swiper-button-prev {
    color: #780000; /* Rouge foncé pour les boutons */
    font-size: 2rem; /* Taille agrandie */
    transition: color 0.3s; /* Transition pour l'effet de survol */
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    color: #5e5768; /* Violet au survol */
}

/* Pagination Swiper */
.swiper-pagination {
    margin-top: 0.5rem; /* Espacement au-dessus de la pagination */
    text-align: center;
    color: #780000; /* Rouge foncé */
}

/* Media query pour les petits écrans */
@media (max-width: 768px) {
    .pizza-slider {
        padding: 1rem;
    }
    .swiper-container {
        max-width: 100%; /* S'adapte à la largeur de l'écran */
    }
    .swiper-slide img {
        max-height: 180px; /* Réduction de la hauteur maximale des images */
    }
}


/* Section "Où nous trouver" */
.contact-info {
    text-align: center;
    margin: 2rem auto; /* Centré et espacé */
    font-size: 1rem;
    max-width: 700px;
}
.contact-info h1 {
    font-family: 'Berkshire Swash', cursive;
    font-size: 2rem;
    color: #780000; /* Rouge foncé */
    margin-bottom: 1.5rem;
}
.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem 0; /* Plus d'espace après la liste */
}
.contact-info ul li {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: #080C0C; /* Texte noir */
}
.contact-info p {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: #080C0C; /* Texte noir */
}
.contact-info a {
    color: #780000; /* Lien rouge foncé */
    text-decoration: none;
    font-weight: bold;
}
.contact-info a:hover {
    text-decoration: underline;
}

/* Carte Google Maps */
.map-container {
    max-width: 700px;
    margin: 3rem auto; /* Plus d'espace autour de la carte */
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 10px;
}
.map-container h2 {
    font-size: 1.5rem;
    color: #780000;
    margin-bottom: 1rem;
}

/* Page "Notre carte" */
.menu {
    text-align: center;
    padding: 2rem;
    background: #FFF9E1;
}
.menu h1 {
    font-family: 'Berkshire Swash', cursive;
    font-size: 2.5rem;
    color: #780000;
    margin-bottom: 1.5rem;
}
.menu-image img {
    max-width: 90%;
    height: auto;
    border: 2px solid #780000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.menu-image a img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem 0;
    background: #FFF9E1;
    color: #080C0C;
    font-size: 0.9rem;
    border-top: 2px solid #780000;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem;
    }
    .swiper-container {
        max-height: 300px;
    }
    .swiper-slide img {
        max-height: 300px;
    }
    .menu-image img {
        max-width: 100%;
    }
}
/* Section Biographie */
.biography {
    text-align: center;
    padding: 2rem;
    background: #FFF9E1;
}
.biography h1 {
    font-family: 'Berkshire Swash', cursive;
    font-size: 2.5rem;
    color: #780000;
    margin-bottom: 1rem;
}
.biography p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #080C0C;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}
.biography img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Section Partenaires */
.partners {
    padding: 2rem;
    background: #FFF;
    text-align: center;
}
.partners h2 {
    font-size: 2rem;
    color: #780000;
    margin-bottom: 1rem;
}
.partners ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}
.partners ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    text-align: left;
}
.partners ul li img.partner-logo {
    width: 80px;
    height: auto;
    margin-right: 1rem;
    border-radius: 5px;
}
.partners ul li a {
    color: #780000;
    text-decoration: none;
    font-weight: bold;
}
.partners ul li a:hover {
    text-decoration: underline;
}
/* Section Biographie */
.biography {
    text-align: center;
    padding: 2rem;
    background: #FFF9E1; /* Fond jaune clair */
    color: #080C0C; /* Texte noir */
}

.biography h1 {
    font-family: 'Berkshire Swash', cursive; /* Typographie élégante */
    font-size: 2.5rem; /* Taille du titre principal */
    color: #780000; /* Rouge foncé */
    margin-bottom: 1.5rem; /* Espacement en bas */
}

.biography h2 {
    font-family: 'Quicksand', sans-serif; /* Typographie lisible */
    font-size: 1.8rem; /* Taille des sous-titres */
    color: #780000; /* Rouge foncé */
    margin-top: 2rem; /* Espacement en haut */
    margin-bottom: 1rem; /* Espacement en bas */
}

.biography p {
    font-size: 1.2rem; /* Taille du texte */
    line-height: 1.8; /* Hauteur des lignes pour améliorer la lisibilité */
    color: #080C0C; /* Texte noir */
    max-width: 800px; /* Limite la largeur du texte */
    margin: 0 auto 1.5rem auto; /* Centre le texte avec un espacement */
}

.biography img {
    max-width: 100%; /* Adapte l'image à la largeur disponible */
    height: auto; /* Conserve les proportions */
    margin-top: 2rem; /* Espacement au-dessus de l'image */
    border-radius: 10px; /* Coins arrondis */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Ombre douce */
}
