/* --- RESET --- */
*{margin:0;padding:0;box-sizing:border-box;}
body{
  font-family: Verdana, sans-serif;
  background:#f9f9f9; /* Couleur unie de la section "notre histoire" */
  color:#000;
  min-height:100vh;display:flex;flex-direction:column;
  scroll-behavior:smooth;
}
/* --- VARIABLES --- */
:root{
  --red: #902300;
  --green-hover: #78883A;
}
/* === ANIMATIONS ULTRA-FLUIDES AMÉLIORÉES === */
* {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
/* Amélioration des animations existantes avec des courbes plus fluides */
.nav-links a,
.dropdown-menu a,
.contact-btn-inline,
.notification-bell,
.mail-bell,
.rdv-bell,
.back-to-top,
.footer-nav a {
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
/* Animations spéciales pour les éléments interactifs */
.nav-links a:hover,
.dropdown-menu a:hover,
.footer-nav a:hover {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
/* === HEADER STYLES === */
header {
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.logo-section {
  flex: 0 0 auto;
  position: absolute;
  left: 40px;
  top: 0;
}
.logo-section a {
  display: block;
}
.logo-section img {
  height: 60px;
  width: auto;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.logo-section a:hover img {
  transform: scale(1.05);
}
.nav-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 800px;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-links li {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-links a {
  color: var(--red);
  text-decoration: none;
  padding: 12px 16px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--green-hover);
  transform: translateY(-1px);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--green-hover);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateX(-50%);
}
.nav-links a:hover::after {
  width: 75%;
}
.separator {
  color: var(--red);
  margin: 0 8px;
  font-weight: 300;
  font-size: 16px;
  opacity: 0.6;
  flex-shrink: 0;
}
.subtitle {
  font-size: 12px;
  color: var(--red);
  margin-top: 8px;
  text-align: center;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
}
.subtitle .separator {
  color: var(--red);
  font-weight: 300;
  font-size: 12px;
  opacity: 0.6;
  margin: 0;
}
/* === DROPDOWN MENU === */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  cursor: pointer;
}
.chevron {
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  margin-left: 4px;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1000;
  min-width: 250px;
  padding: 8px 0;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li {
  display: block;
  width: 100%;
}
.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 0;
}
.dropdown-menu a:hover {
  background-color: #f5f5f5;
  color: var(--red);
  transform: translateX(5px);
}
.dropdown-menu a::after {
  display: none;
}
/* === CONTACT BUTTON SECTION === */
.contact-button-section {
  flex: 0 0 auto;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
}
/* === CONTACT BUTTON INLINE - TOUJOURS VERT === */
.contact-btn-inline {
  background: none;
  border: none;
  color: #78883A !important; /* Toujours vert */
  font-family: Verdana, sans-serif;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  padding: 0;
  white-space: nowrap;
}
/* RESTE VERT AU SURVOL */
.contact-btn-inline:hover {
  color: #78883A !important; /* Reste vert au survol */
  transform: translateY(-1px);
}
/* UNDERLINE TOUJOURS VERT */
.contact-btn-inline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #78883A; /* Underline vert */
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateX(-50%);
}
.contact-btn-inline:hover::after {
  width: 75%;
}
/* RESTE VERT APRÈS CLIC */
.contact-btn-inline.phone-visible {
  color: #78883A !important; /* Reste vert après clic */
}
.contact-btn-inline.phone-visible:hover {
  color: #78883A !important; /* Reste vert au survol après clic */
}
/* RESTE VERT DANS TOUS LES ÉTATS */
.contact-btn-inline:active,
.contact-btn-inline:focus,
.contact-btn-inline:visited {
  color: #78883A !important;
}
/* === NOTIFICATION BELL === */
.notification-bell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--red);
  color: white;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
  margin-left: -10px;
}
.notification-bell:hover {
  background-color: var(--green-hover);
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 35px rgba(120, 136, 58, 0.5);
}
.notification-bell:active {
  transform: translateY(-2px) scale(0.98);
  transition: all 0.2s ease;
}
/* === NOTIFICATION BADGE - ANIMATION DE DISPARITION === */
.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #dc3545;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  border: 2px solid white;
  animation: pulse 2s infinite;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
/* === MAIL BELL === */
.mail-bell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--red);
  color: white;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
}
.mail-bell:hover {
  background-color: var(--green-hover);
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 35px rgba(120, 136, 58, 0.5);
}
.mail-bell:active {
  transform: translateY(-2px) scale(0.98);
  transition: all 0.2s ease;
}
/* Animation de balancement pour l'enveloppe au survol */
.mail-bell:hover svg {
  animation: mailFloat 1s ease-in-out;
}
@keyframes mailFloat {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-4px); }
  50% { transform: translateY(0); }
  75% { transform: translateY(-3px); }
}
/* === RDV BELL (NOUVEAU BOUTON) === */
.rdv-bell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--red);
  color: white;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
}
.rdv-bell:hover {
  background-color: var(--green-hover);
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 35px rgba(120, 136, 58, 0.5);
}
.rdv-bell:active {
  transform: translateY(-2px) scale(0.98);
  transition: all 0.2s ease;
}
/* Animation de pulsation pour le calendrier au survol */
.rdv-bell:hover svg {
  animation: calendarPulse 1.2s ease-in-out;
}
@keyframes calendarPulse {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.1); }
  50% { transform: scale(1.05); }
  75% { transform: scale(1.08); }
}
/* === TOOLTIPS - APPARITION RAPIDE === */
.tooltip {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1000;
  pointer-events: none;
}
.tooltip::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(0, 0, 0, 0.8);
}
.tooltip.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-8px);
}
/* === NEWSLETTER OVERLAY CENTRÉ - PLUS GRAND === */
.newsletter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, visibility;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  cursor: pointer;
}
.newsletter-overlay.active {
  opacity: 1;
  visibility: visible;
}
.newsletter-content {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 50px;
  transform: scale(0.8) translateY(30px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  cursor: default;
}
.newsletter-overlay.active .newsletter-content {
  transform: scale(1) translateY(0);
}
.newsletter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
  will-change: transform, opacity;
}
.newsletter-overlay.active .newsletter-header {
  opacity: 1;
  transform: translateY(0);
}
.newsletter-header h3 {
  color: var(--red);
  font-size: 1.6rem;
  margin: 0;
}
.close-newsletter {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform: rotate(0deg);
  will-change: transform;
}
.close-newsletter:hover {
  background-color: #f0f0f0;
  color: var(--red);
  transform: rotate(90deg) scale(1.15);
}
.close-newsletter:active {
  transform: rotate(90deg) scale(0.95);
  transition: all 0.1s ease;
}
.newsletter-body {
  flex: 1;
}
/* === MAIL OVERLAY CENTRÉ - SANS SCROLL === */
.mail-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, visibility;
  backface-visibility: hidden;
  cursor: pointer;
}
.mail-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mail-content {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 600px;
  height: 90vh;
  overflow: hidden;
  padding: 30px;
  transform: scale(0.8) translateY(30px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  cursor: default;
}
.mail-overlay.active .mail-content {
  transform: scale(1) translateY(0);
}
.mail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
  flex-shrink: 0;
}
.mail-overlay.active .mail-header {
  opacity: 1;
  transform: translateY(0);
}
.mail-header h3 {
  color: #902300;
  font-size: 1.4rem;
  margin: 0;
}
.close-mail {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform: rotate(0deg);
}
.close-mail:hover {
  background-color: #f0f0f0;
  color: var(--red);
  transform: rotate(90deg) scale(1.15);
}
.mail-separator {
  width: 100%;
  height: 2px;
  background-color: #f0f0f0;
  margin-bottom: 15px;
  opacity: 0;
  transform: scaleX(0);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.15s;
  flex-shrink: 0;
}
.mail-overlay.active .mail-separator {
  opacity: 1;
  transform: scaleX(1);
}
.mail-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mail-body p {
  color: #000;
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
  flex-shrink: 0;
}
.mail-overlay.active .mail-body p {
  opacity: 1;
  transform: translateY(0);
}
.mail-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  overflow: hidden;
}
.mail-form .form-group {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  flex-shrink: 0;
}
.mail-overlay.active .mail-form .form-group {
  opacity: 1;
  transform: translateY(0);
}
.mail-overlay.active .mail-form .form-group:nth-child(1) {
  transition-delay: 0.25s;
}
.mail-overlay.active .mail-form .form-group:nth-child(2) {
  transition-delay: 0.3s;
}
.mail-overlay.active .mail-form .form-group:nth-child(3) {
  transition-delay: 0.35s;
}
.mail-overlay.active .mail-form .form-group:nth-child(4) {
  transition-delay: 0.4s;
}
.mail-form .form-group label {
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 14px;
}
.mail-form .form-group:nth-child(1) label,
.mail-form .form-group:nth-child(2) label,
.mail-form .form-group:nth-child(3) label {
  color: #902300;
}
.mail-form .form-group:nth-child(4) label {
  color: #78883A;
}
.mail-form input[type="email"],
.mail-form input[type="text"],
.mail-form textarea {
  padding: 10px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: Verdana, sans-serif;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.mail-form input::placeholder,
.mail-form textarea::placeholder {
  color: #999;
}
.mail-form textarea {
  min-height: 80px;
  resize: none;
  flex: 1;
}
.mail-form input:focus,
.mail-form textarea:focus {
  outline: none;
  border-color: var(--red);
  transform: scale(1.02);
  box-shadow: 0 0 0 3px rgba(144, 35, 0, 0.1);
}
.privacy-notice {
  font-size: 11px;
  color: #000;
  line-height: 1.4;
  padding: 12px;
  background-color: #f9f9f9;
  border-radius: 6px;
  margin: 8px 0;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  flex-shrink: 0;
}
.mail-overlay.active .privacy-notice {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}
.mail-submit {
  background-color: #902300;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: Verdana, sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  margin-top: 8px;
  transform: translateY(15px);
  opacity: 0;
  flex-shrink: 0;
}
.mail-overlay.active .mail-submit {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}
.mail-submit:hover {
  background-color: var(--green-hover);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 20px rgba(120, 136, 58, 0.4);
}
.mail-submit:active {
  transform: translateY(0) scale(0.98);
  transition: all 0.1s ease;
}
.mail-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
/* === BLUR OVERLAY ULTRA-OPTIMISÉ === */
.blur-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.blur-overlay.active {
  opacity: 1;
  visibility: visible;
}
/* Animation de pulsation pour le badge */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(220, 53, 69, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
  }
}
/* Animation de balancement pour la cloche au survol */
.notification-bell:hover svg {
  animation: bellRing 0.8s ease-in-out;
}
@keyframes bellRing {
  0%, 100% { transform: rotate(0deg); }
  10%, 30%, 50%, 70%, 90% { transform: rotate(-12deg); }
  20%, 40%, 60%, 80% { transform: rotate(12deg); }
}
/* === CONTENU PRINCIPAL MENTIONS === */
.mentions-main {
  flex: 1;
  padding: 80px 20px;
  background: #f9f9f9;
}

.mentions-container {
  max-width: 800px;
  margin: 0 auto;
}

.mentions-main h1 {
  color: var(--red);
  font-size: 1.8rem; /* Légèrement plus grand que le header (14px) */
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
}

.mentions-section {
  margin-bottom: 40px;
}

.mentions-section h2 {
  color: var(--red);
  font-size: 1.2rem; /* Légèrement plus grand que le header */
  margin-bottom: 20px;
  font-weight: 500;
}

.mentions-section h3 {
  color: var(--red);
  font-size: 16px; /* Légèrement plus grand que le header */
  margin-bottom: 20px;
  font-weight: 400;
}

.mentions-section p {
  color: #000;
  line-height: 1.6;
  font-size: 14px; /* Même taille que le header */
  text-align: justify;
}
/* --- FOOTER --- */
footer {
  background: #fff;
  padding: 40px 20px;
  border-top: 1px solid #ddd;
  margin-top: auto;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: center;
}
.footer-left h4 {
  margin-bottom: 15px;
  color: #000;
}
.linkedin-link {
  color: var(--red);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.linkedin-link:hover {
  color: var(--green-hover);
  transform: translateY(-2px) scale(1.1);
}
.footer-center {
  text-align: center;
}
.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.footer-nav a {
  color: var(--red);
  text-decoration: none;
  padding: 12px 16px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}
.footer-nav a:hover {
  color: var(--green-hover);
  transform: translateY(-1px);
}
.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--green-hover);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateX(-50%);
}
.footer-nav a:hover::after {
  width: 75%;
}
.footer-nav .separator {
  color: var(--red);
  margin: 0 8px;
  font-weight: 300;
  font-size: 16px;
  opacity: 0.6;
}
.footer-right {
  text-align: right;
}
.footer-right p {
  color: #555;
  font-size: 14px;
  margin: 0;
}
/* --- BACK TO TOP BUTTON --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: var(--red);
  color: white;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background-color: var(--green-hover);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(120, 136, 58, 0.4);
}
/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .header-container {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .logo-section {
    left: 20px;
  }
  
  .contact-button-section {
    right: 5px;
  }
}
@media (max-width: 1100px) {
  .header-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    position: relative;
  }
  
  .logo-section {
    order: 1;
    position: static;
    left: auto;
    top: auto;
  }
  
  .nav-center {
    order: 2;
    margin: 0;
    max-width: none;
  }
  
  .contact-button-section {
    order: 3;
    position: static;
    right: auto;
    top: auto;
    transform: none;
    justify-content: center;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  
  .footer-right {
    text-align: center;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-nav .separator {
    display: none;
  }
}
@media (max-width: 768px) {
  .mentions-main {
    padding: 60px 20px;
  }
  
  .mentions-main h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .mentions-section h2 {
    font-size: 1.3rem;
  }
  
  .mentions-section p {
    font-size: 0.95rem;
  }
  
  .newsletter-content {
    width: 95%;
    max-width: 95%;
    max-height: 90vh;
    padding: 30px 25px;
    border-radius: 15px;
  }
  
  .mail-content {
    width: 95%;
    max-width: 95%;
    height: 95vh;
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .newsletter-header h3,
  .mail-header h3 {
    font-size: 1.3rem;
  }
}
@media (max-width: 480px) {
  .mentions-main h1 {
    font-size: 1.8rem;
  }
  
  .mentions-section h2 {
    font-size: 1.2rem;
  }
  
  .newsletter-content {
    width: 98%;
    padding: 25px 20px;
    border-radius: 12px;
  }
  
  .mail-content {
    width: 98%;
    height: 98vh;
    padding: 20px 15px;
    border-radius: 12px;
  }
  
  .newsletter-header h3,
  .mail-header h3 {
    font-size: 1.2rem;
  }
  
  .mail-form {
    gap: 12px;
  }
  
  .mail-form textarea {
    min-height: 60px;
  }
}