/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY GENERAL */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9; /* Fond très léger */
    color: #073333; /* Texte par défaut couleur principale */
}

/* IMPORTER LA POLICE AUTOMOVE */
@font-face {
    font-family: 'Automove';
    src: url('/police/Automove\ Personal\ Use\ Only.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SF';
    src: url('/police/SF\ Automaton\ Oblique.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: #073333; /* Couleur principale */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Légère ombre */
}

/* LOGO */
.logo img {
    height: 100px;
}

/* NAVIGATION TEXTS */
.nav-texts {
    display: flex;
    gap: 40px;
}

.nav-texts a {
    font-size: 1rem;
    color: #fff79a; /* Couleur secondaire */
    text-decoration: none;
    transition: color 0.3s, border-bottom 0.3s;
    position: relative;
    font-family: 'Automove', sans-serif; /* Police Automove */
}

.nav-texts a:hover {
    color: #ffffff;
}

.nav-texts a::after {
    content: "";
    display: block;
    height: 2px;
    width: 0%;
    background-color: #fff79a;
    transition: width 0.3s;
    margin: auto;
}

.nav-texts a:hover::after {
    width: 100%;
}

.language-selector {
    position: relative;
}

.language-selector > img {
    height: 40px;
    width: 40px;
    border-radius: 50%; /* rond parfait */
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #fff79a; /* petite bordure jaune */
    background-color: white;
    transition: transform 0.3s;
}

.language-selector > img:hover {
    transform: rotate(20deg);
}

.language-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.language-dropdown a {
    display: block;
    padding: 10px;
    text-align: center;
    background-color: white;
    transition: background-color 0.3s;
}

.language-dropdown a:hover {
    background-color: #fff79a;
}

.language-dropdown a img {
    height: 30px;
    width: 40px;
    object-fit: contain; /* pour éviter la déformation */
}


main {
    background-color: #ffffff;
}

/* ======= FOOTER BASE ======= */
.footer {
    background-color: #073333;
    color: #fff;
    padding: 60px 30px 30px;
    font-family: 'Poppins', sans-serif;
  }
  
  /* ======= STRUCTURE ======= */
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
  }
  
  .footer-col {
    flex: 1;
    min-width: 220px;
  }
  
  /* ======= TITRES ======= */
  .footer-col h3 {
    color: #fff79a;
    margin-bottom: 15px;
    font-size: 1.1rem;
  }
  
  .footer-logo {
    font-size: 1.6rem;
    font-family: 'Automove', sans-serif;
    color: #fff;
  }
  
  .footer-logo span {
    color: #fff79a;
  }
  
  .logo-col p {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* ======= LIENS ======= */
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
  }
  
  .footer-col ul li a {
    color: #fff;
    font-size: 0.85rem;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-col ul li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #fff79a;
    transition: width 0.3s ease;
  }
  
  .footer-col ul li a:hover {
    color: #fff79a;
  }
  
  .footer-col ul li a:hover::after {
    width: 100%;
  }
  
  /* ======= HR & BOTTOM ======= */
  hr {
    margin: 30px auto;
    border: none;
    height: 1px;
    background: #fff79a;
    width: 90%;
    opacity: 0.3;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 10px;
  }
  
  .footer-bottom p {
    font-size: 0.85rem;
    color: #fff79a;
  }
  
  /* ======= RÉSEAUX ======= */
  .social-icons a {
    margin-left: 15px;
    font-size: 1.2rem;
    color: red;
    transition: transform 0.3s;
  }
  
  .social-icons a:hover {
    transform: scale(1.2);
  }
  
  /* ======= BOUTON TÉLÉPHONE ======= */
  .floating-phone {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #073333;
    color: white;
    font-size: 1.4rem;
    padding: 15px;
    border-radius: 50%;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .floating-phone:hover {
    background-color: #373737;
    transform: scale(1.1);
  }

  .floating-phone i {
    color: #fff79a;
    font-size: 1.2rem;
  }

  .section-polish {
    font-family: 'Poppins', sans-serif;
    background-color: white;
    padding: 0;
  }
  
  .hero-banner {
    background-image: url('img/banner-polish.jpg');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-banner h2 {
    font-size: 3rem;
    color: white;
    font-weight: bold;
  }
  
  .polish-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: -100px auto 100px;
    background-color: white;
    border-radius: 30px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 40px;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .polish-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
  }
  
  .polish-content {
    flex: 1;
    min-width: 300px;
  }
  
  .polish-content h3 {
    font-size: 2rem;
    color: #073333;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .polish-content h3 .highlight {
    color: red;
  }
  
  .polish-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #073333;
    margin-bottom: 30px;
  }
  
  .btn-polish {
    display: inline-block;
    background-color: red;
    color: white;
    font-weight: bold;
    padding: 14px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .btn-polish:hover {
    background-color: #c40000;
  }


  .banner-polish {
    position: relative;
    height: 400px;
    background-image: url('/img/intérieur.jfif'); /* Remplace par ton image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .banner-polish .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(7, 51, 51, 0.6), rgba(7, 51, 51, 0.6));
    z-index: 1;
    backdrop-filter: grayscale(30%) brightness(70%);
  }
  
  .banner-polish .banner-title {
    position: relative;
    color: white;
    font-size: 3.2rem;
    font-weight: bold;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
    text-align: center;
  }
  
  
  .section-polish-expertise {
    background-color: white;
    padding: 80px 40px;
    font-family: 'Poppins', sans-serif;
    color: #000;
  }
  
  .polish-expertise-container {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
  }
  
  .polish-expertise-image img {
    border-radius: 30px;
    width: 500px;
    height: auto;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  }
  
  .polish-expertise-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
  }
  
  .polish-expertise-content h2 {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 800;
    margin-bottom: 20px;
  }
  
  .polish-expertise-content .highlight {
    color: #fff79a;
  }
  
  .polish-expertise-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
  }
  
  .btn-reserver {
    display: inline-block;
    background-color: #fff79a;
    color: #073333;
    font-weight: bold;
    padding: 14px 26px;
    font-size: 0.9rem;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .btn-reserver i {
    margin-left: 10px;
  }
  
  .btn-reserver:hover {
    background-color: #e5d739;
  }
  
  .avant-apres-section {
    padding: 60px 30px;
    background-color: #f9f9f9;
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }
  
  .avant-apres-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #073333;
  }
  
  .highlight-red {
    color: #fff79a;
  }
  
  .avant-apres-gallery {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .avant-apres-gallery img {
    width: 300px;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .avant-apres-gallery img:hover {
    transform: scale(1.03);
  }

  .avant-apres-gallery video {
    width: 300px;
    height: 450px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .avant-apres-gallery video:hover {
    transform: scale(1.03);
  }
  
    /* =================== RESPONSIVE =================== */

/* Smartphones et petits écrans */
@media screen and (max-width: 768px) {

  .header {
    flex-direction: column;
    height: auto;
    padding: 15px;
    text-align: center;
  }

  .nav-texts {
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
  }

  .logo img {
    height: 70px;
  }

  .language-selector {
    margin-top: 15px;
  }

  .accueil-container {
    flex-direction: column;
    padding: 20px;
  }

  .accueil-text {
    padding: 40px 20px;
    text-align: center;
  }

  .accueil-text h1 {
    font-size: 2.2rem;
  }

  .accueil-image {
    justify-content: center;
    padding: 0;
    margin-top: 20px;
  }

  .accueil-image img {
    height: auto;
    width: 90%;
  }

  .section-choisir {
    padding: 60px 20px;
  }

  .container-choisir {
    flex-direction: column;
    align-items: center;
  }

  .choisir-left, .choisir-right {
    width: 100%;
  }

  .card-choisir {
    flex-basis: 100%;
    min-width: unset;
  }

  .section-prestations {
    padding: 60px 20px;
  }

  .prestations-content h2 {
    font-size: 1.8rem;
  }

  .prestations-grid {
    grid-template-columns: 1fr;
  }

  .section-contact {
    padding: 60px 20px;
  }

  .container-contact {
    flex-direction: column;
  }

  .contact-left, .contact-right {
    width: 100%;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .floating-phone {
    right: 15px;
    bottom: 15px;
    padding: 12px;
  }

}
/* ========== BURGER MENU ========== */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.burger span {
  width: 25px;
  height: 3px;
  background-color: #fff79a;
  transition: 0.3s;
}

/* ======= Responsive ======= */
@media screen and (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-texts {
    position: absolute;
    top: 100px;
    right: 0;
    background-color: #073333;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
    transition: all 0.3s ease;
  }

  .nav-texts.active {
    display: flex;
  }

  .nav-texts a {
    font-size: 1.2rem;
  }
}
/* Masquer sélecteur sur mobile */
.desktop-only {
  display: block;
}

@media screen and (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .burger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1100;
  }

  .burger span {
    width: 25px;
    height: 3px;
    background-color: #fff79a;
    transition: 0.3s;
  }

  .nav-texts {
    position: absolute;
    top: 100px;
    right: 0;
    background-color: #073333;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .nav-texts.active {
    display: flex;
  }

  .nav-texts a {
    font-size: 1.2rem;
    color: #fff79a;
  }
}