body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f7f7;
    color: #222;
  }
  
  .header {
    background-color: #000;
    background-image: url("/images/bois.jpg");
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
    padding: 30px 20px;
    text-align: center;
}
  
  header p {
    margin-top: 10px;
    font-size: 14px;
    color: #fcfcfc;
  }
  
  .main-nav {
    background: #fff;
    border-bottom: 2px solid #ddd;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  @media (min-width: 768px) {
    .main-nav {
      position: sticky;
      top: 0;
    }
  }
  
  .main-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 10px;
  }
  
  .main-nav li {
    margin: 5px 0;
    width: 100%;
  }
  
  .main-nav a {
    display: block;
    text-decoration: none;
    color: #111;
    font-weight: bold;
    font-size: 18px;
    padding: 12px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    border: 2px solid transparent;
  }
  
  .main-nav a:hover {
    background: #ffffff;
    color: #000000;
    border: 2px solid #000000;
    transform: translateY(-2px);
    box-shadow: 
      0 4px 8px rgba(0, 0, 0, 0.2),
      0 0 0 1px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
  }

  .main-nav a:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 50%);
    border-radius: 4px;
    pointer-events: none;
  }

  @media (min-width: 768px) {
    .main-nav ul {
      flex-direction: row;
      flex-wrap: wrap;
      padding: 15px;
    }
    
    .main-nav li {
      margin: 0 20px;
      width: auto;
    }
    
    .main-nav a {
      width: auto;
    }
  }
  
  nav {
    background: #fff;
    border-bottom: 1px solid #ddd;
    z-index: 10;
  }
  
  @media (min-width: 768px) {
    nav {
      position: sticky;
      top: 0;
    }
  }
  
  nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 10px;
  }
  
  nav li {
    margin: 5px 10px;
  }
  
  nav a {
    text-decoration: none;
    color: #111;
    font-weight: bold;
  }

  .menu-buttons {
    background-color: #f7f7f7;
    color: #000;
    transform: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }

  @media (min-width: 1024px) {
    .menu-buttons {
      grid-template-columns: repeat(4, 1fr); /* 4 sur 4 */
    }
  }

  /* Centrer la carte "Nos Formules" quand elle est seule */
  .menu-buttons-single {
    /* Mobile: la tuile prend toute la largeur (comme les autres) */
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  @media (min-width: 768px) {
    .menu-buttons-single {
      /* Desktop: garde une tuile centrée, sans casser le mobile */
      grid-template-columns: minmax(240px, 260px);
      justify-content: center;
    }
  }

  .menu-btn {
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    min-height: 200px;
    background-size: cover;
    background-position: center;
  }

  .menu-btn::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: -1;
    opacity: 0.7;
  }

  .menu-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
  }

  .menu-btn span {
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }

  .menu-btn:hover {

    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }

  .menu-btn:hover::after {
    background: rgba(0, 0, 0, 0.2);
  }

  /* Barre de navigation des menus */
  .menu-nav {
    background: #fff;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    position: sticky;
    top: 0;
    z-index: 5;
  }
  
  .menu-nav::-webkit-scrollbar {
    height: 6px;
  }

  .menu-nav::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .menu-nav::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
  }

  .menu-nav-buttons {
    display: flex;
    gap: 12px;
    min-width: max-content;
    padding: 5px 0;
  }

  .menu-nav-btn {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
  }

  .menu-nav-btn::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    z-index: -1;
    opacity: 0.7;
  }

  .menu-nav-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
  }

  .menu-nav-btn span {
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    padding: 0 4px;
    line-height: 1.2;
  }

  .menu-nav-btn:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }

  .menu-nav-btn:hover::after {
    background: rgba(0, 0, 0, 0.2);
  }

  .menu-nav-btn.active {
    box-shadow: 0 0 0 3px #1976d2;
  }

  @media (min-width: 768px) {
    .menu-nav {
      padding: 20px;
      z-index: 15;
    }

    .menu-nav-buttons {
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
    }

    .menu-nav-btn {
      width: 100px;
      height: 100px;
      font-size: 13px;
    }
  }

  .formulas-container {
    display: flex;
    justify-content: center; /* centre le groupe */
    align-items: stretch;
    gap: 16px; /* espace réduit entre les box */
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 16px; /* équilibre gauche/droite */
    box-sizing: border-box;
  }

  .formula-section {
    background: #fff;
    padding: 28px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 320px; /* largeur stable et équilibrée */
    box-sizing: border-box;
  }

  @media (min-width: 1024px) {
    .formulas-container {
      flex-wrap: nowrap;
    }
  }

  @media (max-width: 768px) {
    .formulas-container {
      flex-direction: column;
      align-items: center;
    }
  
    .formula-section {
      width: 100%;
      max-width: 360px;
    }
  }

  .formula-title {
    font-size: 24px;
    font-weight: bold;
    color: #1976d2;
    margin-bottom: 20px;
    text-align: center;
  }

  .formula-price {
    font-size: 36px;
    font-weight: bold;
    font-style: italic;
    color: #1976d2;
    text-align: center;
    margin: 20px 0;
  }

  .formula-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px 0;
    color: #333;
    text-align: center;
  }

  .formula-section p {
    text-align: center;
    margin: 15px 0;
  }

  .formula-list {
    margin: 10px 0;
    padding-left: 20px;
    list-style-position: inside;
  }

  .formula-list li {
    margin: 5px 0;
    line-height: 1.6;
  }
  
  section {
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  section.contact-info,
  section.formula-section {
    padding: 30px;
  }

  .hero {
    text-align: center;
  }

  .address {
    text-align: center;
  }

  .hours {
    text-align: center;
  }

  .transport {
    text-align: center;
  }

  .contact-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 20px;
  }

  .contact-left,
  .contact-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  @media (min-width: 768px) {
    .contact-layout {
      flex-direction: row;
      align-items: flex-start;
    }

    .contact-left {
      flex: 1;
      min-width: 0;
    }

    .contact-right {
      flex: 1;
      min-width: 0;
    }
  }

  .contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0;
    max-width: 100%;
  }

  .contact-info h3 {
    margin-top: 0;
    color: #111;
    text-align: center;
  }

  .contact-info.compact {
    padding: 15px 30px;
    max-width: 500px;
    margin: 20px auto;
  }

  .mention-info {
    margin-top: 0;
    color: #111;
  }

  .phone {
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
    text-align: center;
  }

  .hours {
    margin: 15px 0;
  }

  .hours p {
    margin: 8px 0;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
  }

  .hours p.today {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid #1976d2;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .hours p.open {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 4px solid #4caf50;
  }

  .hours p.open.today {
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
    border-left: 4px solid #2e7d32;
    animation: pulse 2s ease-in-out infinite;
  }

  .hours p.closed {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-left: 4px solid #f44336;
    opacity: 0.7;
  }

  .hours p.closed.today {
    background: linear-gradient(135deg, #ffcdd2 0%, #ef9a9a 100%);
    border-left: 4px solid #c62828;
  }

  .hours .status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
    text-transform: uppercase;
  }

  .hours .status-badge.open {
    background: #4caf50;
    color: #fff;
  }

  .hours .status-badge.closed {
    background: #f44336;
    color: #fff;
  }

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

  .address {
    margin: 15px 0;
    line-height: 1.6;
  }

  .transport {
    margin: 15px 0;
  }

  .transport p {
    margin: 5px 0;
  }

  .map-container {
    width: 100%;
    height: 400px;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .delivery-zones {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 1100px;
    text-align: center;
  }

  .contact-right .delivery-zones {
    margin: 20px 0;
    max-width: 100%;
  }
  
  .delivery-zones h3 {
    margin-top: 0;
    color: #111;
    text-align: center;
  }
  
  .delivery-zone {
    margin: 15px 0;
    padding: 10px;
    background: #f7f7f7;
    border-radius: 4px;
  }
  
  .delivery-zone strong {
    display: block;
    margin-bottom: 5px;
  }

  @media (max-width: 767px) {
    .delivery-zones-mobile {
      display: block;
    }
    
    .contact-right .delivery-zones {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .delivery-zones-mobile {
      display: none;
    }
  }

  .payment-section {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0;
    max-width: 100%;
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .payment-section.payment-desktop {
      padding-bottom: 50px;
    }
  }

  .payment-desktop {
    display: none;
  }

  .payment-mobile {
    display: block;
  }

  @media (min-width: 768px) {
    .payment-desktop {
      display: block;
    }

    .payment-mobile {
      display: none;
    }
  }

  .payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
  }

  .payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #f7f7f7;
    border-radius: 8px;
    min-width: 120px;
    transition: all 0.3s ease;
  }



  .payment-method-icon {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .payment-method-name {
    font-weight: 600;
    color: #333;
    font-size: 12px;
  }
  
  @media (min-width: 768px) {
    .payment-method {
      min-width: 120px;
      padding: 15px;
    }
  }

  .payment-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
  }
  
  h3 {
    margin-top: 40px;
  }
  
  .menu-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px dotted #ddd;
    font-family: 'Cookie'
  }
  
  .menu-item span {
    font-weight: bold;
    white-space: nowrap;
  }
  
  .desc {
    font-size: 14px;
    color: #555;
    margin: 0 0 10px;
  }
  
  footer {
    background-color: #000;
    background-image: url("/images/bois.jpg");
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
    padding: 30px 20px;
    text-align: center;
    color: #fff;
    margin-top: 40px;
  }

  .btn-home,
  .btn-menu {
    display: block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    text-align: center;
    width: fit-content;
    animation: wave 3s ease-in-out infinite;
  }

  @keyframes wave {
    0%, 100% {
      transform: scale(1);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(25, 118, 210, 0.4);
    }
    50% {
      transform: scale(1.05);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 0 0 10px rgba(25, 118, 210, 0), 0 0 0 20px rgba(25, 118, 210, 0);
    }
  }

  .btn-home::before,
  .btn-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }

  .btn-home:hover,
  .btn-menu:hover {
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .btn-home:hover::before,
  .btn-menu:hover::before {
    left: 100%;
  }

  .btn-home:active,
  .btn-menu:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .btn-uber {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: #06C167;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    text-align: center;
    width: fit-content;
  }

  .btn-uber:hover {
    background: #05a857;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .btn-uber .uber-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
  }

  .btn-deliveroo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: #00c1b2;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    text-align: center;
    width: fit-content;
  }

  .btn-deliveroo:hover {
    background: #15a2a7;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .btn-deliveroo .deliveroo-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
  }

  .reviews-section {
    background: #f7f7f7;
    padding: 40px 20px;
    max-width: 1100px;
    margin: 40px auto;
    text-align: center;
  }

  .reviews-section h3 {
    margin-top: 0;
    margin-bottom: 30px;
    color: #111;
    font-size: 28px;
  }

  .reviews-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }

  .reviews-slider {
    position: relative;
    min-height: 200px;
  }

  .review {
    display: none;
    padding: 30px;
    background: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .review.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .review-stars {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 15px;
    letter-spacing: 2px;
  }

  .review-author {
    font-weight: bold;
    font-size: 18px;
    color: #111;
    margin-bottom: 15px;
  }

  .review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    text-align: left;
  }

  @media (max-width: 768px) {

    .review {
      padding: 20px;
    }

    .review-text {
      font-size: 14px;
    }
  }
  .slider-container {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 30px auto 40px auto;
  overflow: hidden;
  border: 2px solid #000;
  border-radius: 8px;
  box-sizing: border-box;
  aspect-ratio: 1 / 1;
}

.slider {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}

.slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slider img.active {
  opacity: 1;
}

/* Flèches */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 32px;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 5;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
  left: 15px;
}

.slider-btn.next {
  right: 15px;
}

/* Responsive : le carré s'adapte à la largeur de l'écran */
@media (max-width: 768px) {
  .slider-container {
    max-width: 100%;
  }
}

.slider img.active {
  opacity: 1;
}


.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
  left: 15px;
}

.slider-btn.next {
  right: 15px;
}

/* Règles dupliquées harmonisées avec le bloc principal (carré, images en entier) */
.slider-container {
  max-width: 560px;
}

.slider img {
  object-fit: contain;
}

.slider img.active {
  opacity: 1;
}

/* Flèches */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 32px;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 5;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
  left: 15px;
}

.slider-btn.next {
  right: 15px;
}

@media (min-width: 1024px) {
  .slider-container {
    max-width: 560px; /* diaporama carré réduit, images en entier */
  }
}

.welcome-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.brand-name {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
}


.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}

.contact-info .social-buttons {
  margin: 20px 0 0 0;
  padding: 0;
  justify-content: center;
}

.social-text-full {
  display: inline;
}

.social-text-mobile {
  display: none;
}

@media (max-width: 767px) {
  .contact-info .social-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .contact-info .social-btn {
    width: auto;
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    word-wrap: break-word;
    padding: 12px 24px;
    font-size: 15px;
    gap: 10px;
    margin: 0 auto;
  }
  
  .contact-info .social-btn img {
    width: 24px;
    height: 24px;
  }
  
  .social-text-full {
    display: none;
  }
  
  .social-text-mobile {
    display: inline;
  }
}

.social-section {
  max-width: 1100px;
  margin: 20px auto;
  padding: 30px 20px;
}

.social-section .social-buttons {
  gap: 20px;
}

.social-section .social-btn {
  flex: 1;
  min-width: 200px;
  justify-content: center;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1),
              0 4px 12px rgba(0, 0, 0, 0.15),
              0 8px 20px rgba(0, 0, 0, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 6px 16px rgba(0, 0, 0, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.15),
    0 12px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 20px rgba(255, 255, 255, 0.3);
}

.social-btn:hover::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 1.5s ease-in-out infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.social-btn img {
  width: 28px;
  height: 28px;
}

/* Instagram */
.social-btn.instagram {
  background: #e1306c;
}

/* Facebook */
.social-btn.facebook {
  background: #1877f2;
}

/* ===== Boutons Itinéraires ===== */

.route-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 15px;
  flex-wrap: wrap;
}

.route-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1),
              0 4px 12px rgba(0, 0, 0, 0.15),
              0 8px 20px rgba(0, 0, 0, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Google Maps */
.route-btn.google {
  background: #fbbc04;
  color: #000;
}

/* Waze */
.route-btn.waze {
  background: #05c8f7;
  color: #fff;
}

.route-btn img {
  width: 26px;
  height: 26px;
}

/* Formulaire de contact */
.contact-form-section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: 40px auto;
}

.contact-form-container {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
  margin-top: 0;
  margin-bottom: 30px;
  text-align: center;
  color: #111;
  font-size: 28px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

.form-group .required {
  color: #f44336;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1976d2;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #f44336;
}

.error-message {
  display: block;
  color: #f44336;
  font-size: 14px;
  margin-top: 5px;
  min-height: 20px;
}

.submit-btn {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
  background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-message.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 2px solid #4caf50;
  display: block;
}

.form-message.error {
  background: #ffebee;
  color: #c62828;
  border: 2px solid #f44336;
  display: block;
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 25px 20px;
  }
  
  .contact-form-container h3 {
    font-size: 24px;
  }
}
