/* apercu-da.css */

.screenshot-container {
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	padding: 30px;
	margin-bottom: 50px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-container:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.screenshot-img {
	width: 100%;
	border-radius: 8px;
	border: 1px solid #ddd;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-badge {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.9em;
	font-weight: bold;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.hero-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 80px 20px;
	text-align: center;
	margin-bottom: 60px;
}

.hero-section h1 {
	color: white;
	margin-bottom: 30px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-section .p1 {
	color: rgba(255,255,255,0.9);
}

.section-title {
	font-size: 2.2em;
	color: #2c3e50;
	margin-bottom: 40px;
	text-align: center;
	position: relative;
}

.section-title::after {
	content: '';
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #329035, #29abe2);
	display: block;
	margin: 20px auto 0;
	border-radius: 2px;
}

/* Media queries pour la responsivité */
@media (max-width: 1200px) {
	.col-40pc {
		width: 45%;
		flex: 0 0 45%;
	}
}

@media (max-width: 900px) {
	.col-40pc {
		width: 95%;
		flex: 0 0 95%;
		margin-bottom: 30px;
	}
	
	.col-30pc {
		width: 95%;
		flex: 0 0 95%;
		margin-bottom: 30px;
	}
	
	.col-60pc {
		width: 95%;
		flex: 0 0 95%;
	}
}

/* Ajustement spécifique pour éviter le gap sur mobile */
@media (max-width: 900px) {
	.gap-2rem {
		gap: 0;
	}
}

/* pour les images zoomable */
.zoomable {
	cursor: pointer;
}

.overlay {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}


.overlay img {
  max-width: 95%;
  max-height: 95%;
  box-shadow: 0 0 15px #fff;
  display: block;
}

