
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

/* Style général */
body {
    /* background-color: #f4f4f4; */
    color: #333;
    text-align: center;
}



.about .our-story2 h3{
	
	font-family: 'Nunito Sans', sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  font-weight: 700;
  color: #129589;
  line-height: 1.3;
	
	
}


.modern{
	color:#ffffffe8;
	
}



.label-section {
  background-color: #f5f9f6;
  border-left: 4px solid #4CAF50;
  padding: 16px 24px;
  border-radius: 8px;
  font-family: 'Segoe UI', sans-serif;
  max-width: 600px;
  margin: 20px auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.label-section p {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.6;
}

.label-section strong {
  color: #2e7d32;
}

.label-section ul {
  list-style-type: disc !important;
  padding-left: 1.5rem !important;
  color: #444;
  margin: 0 0 1rem 0;
}

.label-section li {
  margin-bottom: 8px;
}




/* Section Galerie */
.gallery {
    padding: 50px 20px;
	
}

.gallery p{
	color : var(--heading-color);
	font-size: 2rem;
  font-weight: 700;
  font-family: var(--heading-font);
}

.gallery-title {
	
  font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1b1b1b;
    margin-bottom: 10px;
	/* color: #0e0f0ec4; */
	/* border-top: 2px solid #0F7270; */
	border-bottom: 2px solid #129589;
	padding-bottom: 3px;
}

.gallery-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Grid de la galerie */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Élément de la galerie */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
		margin-left:15px;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease-in-out;
	 height:100%;
  object-fit: cover;
}

/* Effet de survol */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Overlay */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
	  
    color: white;
    padding: 15px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}


.overlay-text {
  font-size: 5vw; /* Taille dynamique basée sur la largeur de la fenêtre */
  color: white;
  text-align: center;
  margin: 0;
}


@media (min-width: 1200px) {
  h3 {
    font-size: 1.1rem;
	font-family: 'Nunito Sans', sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  font-weight: 700;
  color: #129589;
  line-height: 1.3;
  }
}


.gallery-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Bouton Voir Plus */
.btn {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    color: #444444;
    text-decoration: none;
    font-size: 1.3rem;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn:hover {
 background-color: rgba(15, 114, 112, 0.6); /* 30% d'opacité */
}
