:root {
    --primary-color: #1B3C59;
    --secondary-color: #C49B66;
    --text-color: #333;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-color);
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo span {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-reserver {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-reserver:hover {
    background: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://source.unsplash.com/random/1920x1080/?restaurant') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 2rem;
}

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

/* Hero bandeau pour toutes les pages */
.hero-page {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.hero-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-page p {
    font-size: 1.2rem;
    color: var(--white);
}

/* Presentation Section */
.presentation {
    padding: 5rem 0;
    text-align: center;
}

.presentation h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.presentation p {
    max-width: 800px;
    margin: 1rem auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Images */
.presentation-image {
    display: block;
    max-width: 100%;
    height: auto;
    border: 5px solid var(--secondary-color);
    border-radius: 10px;
    margin: 20px auto;
}

.presentation-brasserie-image {
    display: block;
    max-width: 40%;
    height: auto;
    border: 5px solid var(--secondary-color);
    border-radius: 10px;
    margin: 20px auto;
}

.presentation-brasserie-image-menu {
    display: block;
    max-width: 100%;
    height: auto;
    border: 5px solid var(--secondary-color);
    border-radius: 10px;
    margin: 20px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
    .presentation-brasserie-image-menu:hover {
        transform: scale(1.15);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }
}

.presentation-brasserie-image-menu-week-end {
    display: block;
    max-width: 32%;
    height: auto;
    border: 5px solid var(--secondary-color);
    border-radius: 10px;
    margin: 20px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* L'effet hover ne s'applique que sur les appareils avec une souris */
@media (hover: hover) and (pointer: fine) {
    .presentation-brasserie-image-menu-week-end:hover {
        transform: scale(1.15);
        box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    }
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 25px;
    margin-top: 1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary, .btn-reserver {
    text-decoration: none;
}

/* Section Témoignages avec Swiper */
.testimonials {
    padding: 5rem 0;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.testimonials .swiper {
    width: 100%;
    max-width: 100%;
    height: auto; /* s’adapte au contenu */
    padding: 1rem 0; /* optionnel, pour respirer un peu */
}

.testimonials .swiper {
    height: 450px;
    width: 700px;
}

.swiper-slide {
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease;
}

.swiper-slide-active .testimonial-card {
    transform: translateY(0);
    opacity: 1;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--secondary-color);
    font-family: 'Dancing Script', cursive;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.author-info h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.author-info p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-rating {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.2rem;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1.2rem;
}

/* Boutons de navigation personnalisés */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    margin-top: -25px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    color: var(--primary-color) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--secondary-color);
    color: var(--white) !important;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: 600;
}

.swiper-button-prev {
    left: -25px;
}

.swiper-button-next {
    right: -25px;
}

/* Pagination personnalisée */
.swiper-pagination {
    bottom: -10px !important;
    display: none !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
    background: var(--primary-color);
}

/* Barre de progression */
.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(196, 155, 102, 0.2);
    border-radius: 2px;
    margin-top: 2rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
    width: 0%;
    animation: progress 5s linear infinite;
}

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

/* Animations d'entrée */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonials {
    animation: slideInUp 0.8s ease-out;
}

/* Responsive pour témoignages */
@media (max-width: 768px) {
    .testimonials-swiper {
        padding: 1rem 0;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px;
    }

    .swiper-button-prev {
        left: 10px;
    }

    .swiper-button-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Contact Info */
.contact-info {
    padding: 5rem 0;
    background: var(--light-bg);
}

.info-block {
    margin-bottom: 2rem;
}

.info-block i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
}

.contact-info a,
.info-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover,
.info-item a:hover {
    color: var(--secondary-color);
}

/* Menu Section Styles */
.menu-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

.menu-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary-color);
    opacity: 0.3;
}

.menu-category h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.menu-category h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.menu-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    position: relative;
}

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

.menu-item:hover {
    transform: translateX(10px);
    background: rgba(196, 155, 102, 0.05);
}

.menu-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.menu-item p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.menu-item .price {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
}

.menu-item .price::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.menu-item:hover .price::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Horaires Section */
.horaires {
    padding: 5rem 0;
}

.horaires-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.jour {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jour:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.jour h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.jour h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

.jour p {
    color: var(--text-color);
    margin: 0.5rem 0;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-links a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin: 0.5rem 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-social a {
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

/* SWIPER SLIDER STYLING - Version améliorée pour mobile */
.swiper {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto 4rem;
  overflow: hidden;
  border-radius: 10px;
  background: #f5f5f5;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Centrer les images dans les sliders de la galerie */
.gallery-section .swiper-slide {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  min-height: 300px; /* Hauteur minimale pour mobile */
}

.swiper-slide img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* MOBILE - Règles spécifiques pour petits écrans */
@media (max-width: 768px) {
  .gallery-section .swiper {
    height: 350px !important; /* Hauteur fixe sur mobile */
    margin: 0 auto 2rem;
  }

  .gallery-section .swiper-slide {
    height: 350px !important;
    padding: 15px !important;
    box-sizing: border-box !important;
  }

  .gallery-section .swiper-slide img {
    max-height: calc(100% - 30px) !important;
    max-width: calc(100% - 30px) !important;
    height: auto !important;
    width: auto !important;
    margin: 0 auto !important;
    display: block !important;
  }

  /* Flèches plus petites sur mobile */
  .gallery-section .swiper-button-next,
  .gallery-section .swiper-button-prev {
    width: 35px !important;
    height: 35px !important;
    margin-top: -17px !important;
  }

  .gallery-section .swiper-button-next::after,
  .gallery-section .swiper-button-prev::after {
    font-size: 14px !important;
  }

  /* Pagination visible sur mobile */
  .gallery-section .swiper-pagination {
    display: block !important;
    bottom: 10px !important;
    display: none !important;
  }
}

/* TRÈS PETITS ÉCRANS (smartphones) */
@media (max-width: 480px) {
  .gallery-section .swiper {
    height: 280px !important;
    margin: 0 auto 1.5rem;
  }

  .gallery-section .swiper-slide {
    height: 280px !important;
    padding: 10px !important;
  }

  .gallery-section .swiper-slide img {
    max-height: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
  }

  /* Flèches encore plus petites */
  .gallery-section .swiper-button-next,
  .gallery-section .swiper-button-prev {
    width: 30px !important;
    height: 30px !important;
    margin-top: -15px !important;
  }

  .gallery-section .swiper-button-next::after,
  .gallery-section .swiper-button-prev::after {
    font-size: 12px !important;
  }
}

/* DESKTOP - Règles pour grands écrans */
@media (min-width: 1025px) {
  .gallery-section .swiper {
    width: 100%;
    max-width: 950px;
    height: 475px;
    margin: 0 auto 3rem;
  }

  .gallery-section .swiper-button-prev {
    left: 10px !important;
  }

  .gallery-section .swiper-button-next {
    right: 10px !important;
  }

  .gallery-section .swiper-slide img {
    max-height: 600px;
    width: auto;
    object-fit: contain;
    object-position: center;
  }

  /* Masquer pagination sur desktop */
  .gallery-section .swiper-pagination {
    display: none !important;
  }
}

/* Traiteur Styles */
.formules {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

.formule-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.formule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.formule-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.formule-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.formule-card ul li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.formule-card ul li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.formule-card .price {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.service-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-traiteur {
    padding: 5rem 0;
    text-align: center;
    background: var(--light-bg);
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.contact-buttons a {
    text-decoration: none;
}

.contact-buttons i {
    margin-right: 0.5rem;
}

/* Gallery Styles */
.gallery-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: var(--white);
    color: var(--text-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    color: var(--white);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.gallery-item.show {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 1rem;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

.contact-info-card,
.contact-form-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease;
}

.contact-info-card.reveal,
.contact-form-card.reveal {
    transform: translateY(0);
    opacity: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.info-item:hover {
    background: rgba(196, 155, 102, 0.1);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
    min-width: 30px;
}

.info-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--secondary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

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

.map-section {
    padding: 5rem 0;
}

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease;
}

.map-container.reveal {
    transform: translateY(0);
    opacity: 1;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .nav-links, .btn-reserver {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .services .container {
        flex-direction: column;
    }

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

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

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

    .formules-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }

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

    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 300px;
    }

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

    .info-item {
        padding: 0.5rem;
    }

    .map-container {
        height: 300px;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: 70px;
        right: 1rem;
        background: var(--white);
        padding: 1rem;
        border-radius: 10px;
        z-index: 1000;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    .presentation-brasserie-image {
        max-width: 90%;
    }

    .presentation-brasserie-image-menu-week-end {
        max-width: 100%;
    }

    /* Slider témoignages - hauteur personnalisée */
    .testimonials .swiper {
        height: 300px;
    }
}
/* Hero responsive */
@media (max-width: 768px) {
    .hero-page {
        height: 100vh; /* plus petit sur tablette/mobile */
    }
}

@media (max-width: 480px) {
    .hero-page {
        height: 100vh; /* encore plus petit sur mobile */
    }
}

/* Responsive - Tablette */
@media (max-width: 768px) {
    .testimonials .swiper {
        height: 500px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .testimonials .swiper {
        height: 540px;
    }
}
