@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary-color: #2c3e50;      
  --secondary-color: #3498db;    
  --accent-color: #e74c3c;       
  --text-color: #333333;         
  --light-color: #f8f9fa;        
  --dark-color: #343a40;         
  --border-color: #dee2e6;       
  --success-color: #28a745;      
  --warning-color: #ffc107;      
  --error-color: #dc3545;        
  --info-color: #17a2b8;         
  --font-main: 'Montserrat', 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary:'Roboto';
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --transition: all 0.35s ease;

  --color1: #54B665;  
  --color2: #2997CA;  
  --color3: #24346C;  
  --color4: #0497A6;  
  --color5: rgba(196, 242, 218, 0.384);  
  
  --gradient-primary: linear-gradient(135deg, var(--color1), var(--color2));
  --gradient-secondary: linear-gradient(135deg, var(--color3), var(--color4));
  --gradient-secondary-translucent: linear-gradient(135deg, 
    rgba(36, 76, 155, 0.293), 
    rgba(77, 180, 161, 0.378)
  );
  --gradient-tertiary: radial-gradient(circle at 50% 60%, var(--color5), var(--light-color));
  --gradient-accent: linear-gradient(45deg, var(--color1), var(--color4));
  --shadow-modern: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);

  --main-background: 
    /* Light colored bubbles - Green tones */
    radial-gradient(circle at 15% 25%, rgba(84, 182, 101, 0.08) 0%, transparent 25%),
    radial-gradient(circle at 75% 15%, rgba(132, 204, 147, 0.06) 0%, transparent 20%),
    radial-gradient(circle at 35% 80%, rgba(84, 182, 101, 0.05) 0%, transparent 18%),
    radial-gradient(circle at 90% 60%, rgba(168, 218, 181, 0.07) 0%, transparent 22%),
    
    /* Light colored bubbles - Blue tones */
    radial-gradient(circle at 65% 35%, rgba(41, 151, 202, 0.07) 0%, transparent 24%),
    radial-gradient(circle at 25% 65%, rgba(100, 181, 220, 0.05) 0%, transparent 19%),
    radial-gradient(circle at 85% 85%, rgba(41, 151, 202, 0.06) 0%, transparent 21%),
    radial-gradient(circle at 45% 10%, rgba(135, 206, 235, 0.04) 0%, transparent 16%),
    
    /* Additional atmospheric bubbles */
    radial-gradient(circle at 10% 70%, rgba(4, 151, 166, 0.04) 0%, transparent 15%),
    radial-gradient(circle at 95% 30%, rgba(84, 182, 101, 0.03) 0%, transparent 12%),
    radial-gradient(circle at 55% 90%, rgba(173, 216, 230, 0.05) 0%, transparent 17%),
    
    /* Original enhanced gradients with additional tones */
    radial-gradient(circle at 20% 30%, rgba(84, 182, 101, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(41, 151, 202, 0.10) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(36, 52, 108, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 30% 90%, rgba(4, 151, 166, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 70% 20%, rgba(132, 204, 147, 0.09) 0%, transparent 40%),
    
    /* Base gradient with enhanced color transitions */
    linear-gradient(135deg, 
      #f8fafc 0%, 
      #e8f4f8 15%,
      #e2e8f0 25%, 
      #f0f7f4 35%,
      #f1f5f9 50%, 
      #e8f2f6 65%,
      #e2e8f0 75%, 
      #f5f8fa 85%,
      #f8fafc 100%
    );
}
/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--text-color);
  background: var(--main-background);
  background-attachment: fixed;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 0;
}

a {
  text-decoration:none;
  transition: var(--transition);
  color: white;
  font-family: var(--font-main);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* === HEADER MODERNE === */
header {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  border-bottom-left-radius: 120px;
  border-bottom-right-radius: 120px;
  padding: 15px 0;
  position: relative;
  top: 0;
  left: 0;        /* Add this */
  right: 0;       /* Add this */
  width: 100%;    /* Add this */
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  /* animation: fadeInUp 0.3s ease-out 0.1s both; */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 20px;
}

.logo img {
  height: 60px;
  transition: var(--transition);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.logo img:hover, .a:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}

nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav ul li a {
  color: var(--color3);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

nav ul li a:hover{
  color: white;
  background: var(--gradient-primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  transition: transform 0.8s;
}

nav ul li a:hover::after{
  display: none;
}

.myborder:hover::after{
  transition: all 2s ease;
}

.myborder {
  display: inline-block;
  position: relative;
}

.myborder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gradient-primary);
  transition: width 0.4s ease;
  z-index: -1;
  border-radius: 25px;
}

.myborder:hover::before {
  width: 100%;
  transition: all 0.8s ease;
}

.myborder::after {
  display: block;
  content: '';
  margin: auto;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.2s ease;
  margin-top: 4px;
  border-radius: 1px;
  /* transition: content 0.5s ease; */
}

.myborder:hover::after {
  width: 0%;
  transition: all 0.8s ease;
}

.myborder[active]::after {
  width: 100%;
  /* background: var(--color1);
  transition: all 2s ease; */
}

/* .myborder[active]:hover {
 display:none;
  transition: all 2s ease;
} */

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

main {
  width: 100%;
  min-height: 82vh;
  flex: 1 0 auto;
  /* padding-bottom: 5vh; */
}

/* === SECTIONS MODERNISÉES === */
.slides {
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  position: relative;
  padding: 60px 20px;
  /* Suppression du background répétitif */
}

/* Overlay subtil pour chaque section (optionnel) */
.slides::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  z-index: 1;
}

.slides > * {
  position: relative;
  z-index: 2;
}

/* === HERO SECTION AMÉLIORÉE === */
.hero {
  text-align: center;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 24px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out;
}

.hero p{
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 40px;
  color: var(--color3);
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.cta {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  box-shadow: var(--shadow-modern);
  animation: fadeInUp 1s ease-out 0.4s both;
  position: relative;
  overflow: hidden;
}

.cta::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;
}

.cta:hover::before {
  left: 100%;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* --- 4.2 Page "À Propos" (About Us) --- */

.about-us {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.about-us > p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Grille principale texte / chiffres */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
  text-align: left;
}

.about-text h3 {
  color: var(--color3);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

/* .about-us h1::after {
  content: '';
  position: absolute;
  top: 14.5vh;
  left: 40%;
  width: 15vw;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
} */

.about-text p {
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Colonne des chiffres-clés */
.about-figures {
  background: rgba(255, 255, 255, 0.5);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(222, 226, 230, 0.5);
}

.about-figures h4 {
  text-align: center;
  color: var(--color3);
  font-size: 1.4rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.key-figures-grid {
  display: grid;
  gap: 20px;
}

.figure-item {
  text-align: center;
  padding: 15px;
  background: var(--gradient-tertiary);
  border-radius: var(--radius);
  transition: transform 0.25s ease;
}

.figure-item:hover {
  transform: translateY(-7px);
}

.figure-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.figure-label {
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.8;
}

/* Section Valeurs */
.values-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color3);
  margin-bottom: 30px;
  position: relative;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.value-item {
  background: rgba(255, 255, 255, 0.8);
  /* backdrop-filter: blur(10px); */
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value-item:hover::before {
  transform: scaleX(1);
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 4px 15px rgba(84, 182, 101, 0.3);
}

.value-item h3 {
  color: var(--color3);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.value-item p {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}


/* === SECTIONS DE CONTENU AMÉLIORÉES === */
/* .presentation, .services, .features {
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.presentation h2, .services h2, .features h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 50px;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  font-weight: 700;
}

.presentation h2:after, .services h2:after, .features h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: var(--shadow-modern);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  background: rgba(255, 255, 255, 0.95);
}

.feature-item h3 {
  color: var(--color3);
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}
.services-list {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-box {
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: var(--shadow-modern);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-box::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-tertiary);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-box:hover::after {
  opacity: 1;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  background: rgba(255, 255, 255, 0.95);
}

.service-box h3 {
  color: var(--color3);
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}
*/


/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === FOOTER === */

footer {
  background: var(--gradient-secondary-translucent);
  position: sticky;
  color: white;
  text-align: center;
  padding: 3.5vh 2vw;
  backdrop-filter: blur(10px);
  /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
  display:flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  animation: fadeInUp 1s ease-out 0.4s both;
}

footer > a:hover, footer > p:hover,footer > #secure-email-link:hover {
  cursor: pointer;
  transform: translateY(-2px) ;
  transition: all 0.4s ; 
  color: var(--color3) ;
}

#secure-email-link{
  color: white;
}

#secure-email-contact{
  color: var(--color3);
}

/* === RESPONSIVE === */


@media (max-width: 768px) {
  header{
    border-radius: 0px;
    padding:0px;
    padding-top:5px;
  }
  .header-container {
    padding: 0 5px;
  }
  nav ul {
    gap: 5px;
  }
  nav ul li a {
    padding: 10px 15px;
    font-size: 13px;
  }
  .logo img {
    height: auto;
    width: 80px;
  }
  .slides {
    gap: 30px;
    padding: 40px 20px;
  }
  .features, .services-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-item, .service-box {
    padding: 30px 20px;
  }
  .myborder{
   text-wrap: wrap;
   max-width: 100px;
  }
  .push{
    margin-bottom: 60px;
  }
  footer{
    display: flow-root;
  }
  footer > p{
    display: contents;
  }
  .optionnal{
    display: none;
  }
  .team-members{
    padding-bottom: 20px;
  }
  .contact-info {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-item {
    padding: 25px 20px;
  }
  .contact-icon {
    width: 45px;
    height: 45px;
  }
  .contact-form {
    padding: 30px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-header h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  nav ul {
    gap: 10px;
  }
  nav ul li a {
    padding: 8px 12px;
    font-size: 12px;
  }
  .slides {
    gap: 20px;
    padding: 30px 15px;
  }
  .feature-item, .service-box {
    padding: 25px 15px;
  }
  .contact-section {
    padding: 0 15px;
  }
  .contact-header {
    margin-bottom: 40px;
  }
  .contact-item {
    padding: 20px 15px;
    gap: 15px;
  }
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  .opening-hours {
    padding: 30px 20px;
  }
  .hours-item {
    padding: 10px 15px;
  }
}

/* Mobile menu button */
.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  color: var(--color3);
  font-size: 1.5rem;
  cursor: pointer;
}

/* === PAGES SPÉCIFIQUES === */


/* About Page */
.about-us {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-us h1 {
  margin-bottom: 30px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team {
  padding: 60px 20px;
  text-align: center;
}

.team h2, .products h1 {
  margin-bottom: 40px;
  font-size: 2rem;
  position: relative;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-accent);
}

.team-members {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.member {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  margin: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-modern);
  transition: var(--transition);
}

.member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.member img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.member h3 {
  margin: 15px 0 5px;
  color: var(--color3);
}

.member p {
  padding: 0 15px 15px;
}

/* Products Page */
.products {
  padding: 60px 20px;
}

.products h1 {
  text-align: center;
  margin-bottom: 40px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
}

.product-list {
  max-width: 1000px;
  margin: 0 auto;
}

.product-item {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-modern);
}

.product-item h2 {
  color: var(--color2);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--light-color);
  padding-bottom: 10px;
}

.product-item p {
  margin-bottom: 20px;
}

.product-item ul {
  margin-left: 20px;
  list-style-type: disc;
}

.product-item ul li {
  margin-bottom: 10px;
}

/* === CONTACT === */

.contact-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  line-height: 1.2;
}

.contact-header p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--color3);
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === CONTACT === */
.contact-info {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 15px;
  align-items: center;
}

.contact-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.contact-item, .opening-hours {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 27px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: var(--shadow-modern);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  max-width: none;
}

.contact-item::before, .opening-hours::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.opening-hours:hover::after{
  content:'';
  position:absolute;
  top:0;
  left:15px;
  width:92%;
  height:4px;
  background:var(--gradient-primary);
  transform: scaleX(0);
  transition: all 0.3s ease;
}

.contact-item > a :hover {
  transform: translateY(-3px);
  transition: var(--transition);
}

.contact-item:hover::before, .opening-hours:hover::before {
  transform: scaleX(1);
}

.contact-item:hover, .opening-hours:hover {
  /* transform: translateY(-5px); */
  box-shadow: var(--shadow-hover);
  background: rgba(255, 255, 255, 0.95);
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 15px;
  color: white;
  box-shadow: 0 4px 15px rgba(84, 182, 101, 0.3);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-details h3 {
  color: var(--color3);
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-details p, .about-us p {
  color: var(--text-color);
  /* line-height: 1.5; */
  /* margin: 0; */
  font-weight:500;
  font-size: 120%;
}

.contact-details a {
  color: var(--color2);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.contact-details > a:hover{
  color:var(--color1);
  text-decoration:underline;
  transform:translateX(5px);
  transition:var(--transition);
}

.contact-details > a > h3:hover {
  color: var(--color1);
  text-decoration: underline;
  transform: translateY(-3px);
  transition: var(--transition);
}

/* === HORAIRES D'OUVERTURE === */
.opening-hours {
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: var(--shadow-modern);
  /* max-width: none; */
  height:max-content;
  /* height:40.2vh; */
}

h2{
  font-weight:400;
  font-size:110%;
}

.hours-grid {
  display: grid;
  gap: 15px;
  margin: 0 auto;
}

.hours-item {
  display: flex;
  justify-content: space-evenly;
  flex-direction:column;
  align-items: center;
  padding: 12px 20px;
  background: rgba(84, 182, 101, 0.1);
  border-radius: 10px;
  transition: var(--transition);
}

.hours-item:hover {
  background: rgba(84, 182, 101, 0.15);
  transform: translateX(5px);
}

.day {
  font-weight: 600;
  color: var(--color3);
}

.time {
  color: var(--color2);
  font-weight: 500;
}