*{
	box-sizing : border-box;
	margin: 0;
    padding: 0;
}
	
body {
    font-family: "Segoe UI", sans-serif;
    background: #f4f6f8;
    color: #333;
    line-height: 1.6;
}

/* ===== HEADER ===== */
.header {
    background: #2bb7e8;
    color: white;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.header nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
}

.header nav a:hover {
    text-decoration: underline;
}

/* SECTIONS */

.section{
	padding: 60px 10%;
}	

.section.light {
    background: #ffffff;
}

.section.center {
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    border-left: 5px solid orange;
    padding-left: 10px;
}

.section p{
	text-align : justify;
}	

/* ===== FEATURES ===== */
.features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    flex: 1;
    text-align: center;
}


/* ===== CARDS ===== */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.card a{
	display : inline-block;
}	

.card {
    background: #ffece2;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: transform 0.3s;
}

.card.blue {
    background: #c9dde8;
}

.card:hover {
    transform: translateY(-8px);
}

.card h3 {
    margin-bottom: 10px;
}

.price {
    color: orangered;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 10px 0;
}

	
.btn{
	text-decoration : none;
	font-size : 1.2em;
	border : 2px solid black;
	border-radius : 5px;
	background-color : white;
	color : black;
	padding : 12px 20px;
	cursor : pointer;
}

.orangecol{
  border-color: #ff9800;
  color: orange;
}	

.orangecol:hover{
  background-color: #ff9800;
  color: white;
}

/* AVIS */
.avis-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.avis-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
}

.avis-card i {
    font-size: 30px;
    color: orange;
    margin-bottom: 15px;
}

.avis-card h4 {
    margin-top: 15px;
    color: #2bb7e8;
}
	
/* Contact */

#contact p{
	text-align : center;
	padding : 10px;
}	
	

.btn_contact{
	display : inline-block;
	text-decoration : none;
	background: orange;
    color: white;
    border: none;
    font-size: 1.1rem;
    padding: 15px 30px;

}

/* ===== FOOTER ===== */
.footer {
    background: #555;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.footer a{
	text-decoration : none;
	color: white;
}

.footer a:hover{
	text-decoration : underline;

}	
/* ===== MODAL ===== */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 20px;
}

.modal-content {
	background: white;
	max-width: 600px;
	width: 100%;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 15px 40px rgba(0,0,0,0.3);
	position: relative;
	animation: fadeIn 0.3s ease;
}

.modal-content h2 {
	margin-bottom: 15px;
	border-left: 5px solid orange;
	padding-left: 10px;
}

.modal-content h3 {
	margin-top: 20px;
	margin-bottom: 10px;
	color: #2bb7e8;
}

.modal-content ul {
	padding-left: 20px;
}

.modal-content ul li {
	margin-bottom: 8px;
}

/* Bouton fermer */
.close-btn-stage, .close-btn-seance, .close-btn-mentionsLegales{
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 28px;
	cursor: pointer;
	color: #999;
}

.close-btn-stage:hover {
	color: black;
}

.close-btn-seance:hover {
	color: black;
}
/* Animation */
@keyframes fadeIn {
	from {
		transform: translateY(-20px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

	.section {
		padding: 40px 5%;
	}	

    .header {
        flex-direction: column;
        gap: 10px;
    }
	
	.modal-content {
		padding: 20px;
	}

}