/* UNIVERS.CSS */
/* Style général */
html, body {
  padding-left: 0 !important;
	padding-right: 0 !important;
	padding-bottom: 0 !important;
}

/* Titre principal */
main header h1 {
    color: #111;
    letter-spacing: 2px;
}

/* Sous-titre */
main header p {
    color: #555;
    font-size: 1.2rem;
}

/* Sections alternées */
section {
    padding: 3rem 0;
    transition: all 0.6s ease-in-out;
}

section h2 {
    margin-bottom: 1rem;
    color: #0d6efd;
}

section p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Images */
section img {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Galerie */
section.text-center h2 {
    color: #111;
}

section .row img {
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

section .row img:hover {
    transform: scale(1.05);
}

/* Animation fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 768px) {
  .mobilecss {
    margin-top: 50px;
  }
}
.mobilecss{
	
}