/* about.css - Version Modernisée */

/* Variables pour faciliter la personnalisation */
:root {
  --font-family: 'Poppins', sans-serif;
  --primary-color: #ffffff;
  --secondary-color: rgba(255, 255, 255, 0.9);
  --background-size: cover 
  --transition-speed: 0.3s;
  --container-max-width: 1200px;
}

/* Réinitialisation de base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Global */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  background: url('../images/background2.png') no-repeat center center;
  background-size: cover;
  color: white;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}


/* Liens */
a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  transition: color var(--transition-speed) ease;
}
a:hover {
  color: var(--accent-hover);
}

/* Section About */
.about-section {
  text-align: center;
  padding: 120px 20px 50px;
}
.about-section h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 30px;
}

/* Parallax Container */
.parallax-container {
  padding: 50px;
  color: var(--primary-color);
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

/* Bouton de Contact Centré et Plus Compact */
.contact-button {
  display: block;
  margin: 30px auto;
  padding: 15px 20px; /* Réduit le padding horizontal */
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  background: var(--accent-color);
  color: var(--bg-color);
  border: none;
  border-radius: 25px;
  transition: background var(--transition-speed) ease, transform var(--transition-speed) ease;
  text-align: center;
  max-width: 300px; /* Largeur maximale réduite */
}

.contact-button:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

/* Section Fondateurs */
.sections-container {
  max-width: var(--container-max-width);
  margin: 50px auto;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}


.sections-container h2 {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}
.about-block {
  flex: 1;
background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 30px;
  margin-top: 50px;
  border-radius: 15px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-align: center;
}

 
.about-block img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  margin-bottom: 15px;
}
.about-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.about-block p {
  font-size: 1rem;
  line-height: 1.8;
}


/* Responsive */
@media (max-width: 768px) {
  .sections-container {
    flex-direction: column;
  }
}
