body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    background-color: #f4f8ff;
    color: #2B9BED;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.logo img {
    height: 150px;
}

.nav a {
    text-decoration: none;
    color: #2B9BED;
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.2s;
}

.nav a:hover {
    background-color: #2B9BED;
    color: white;
}

.hero {
    background-image: url("media/champ.jpg"); 
    background-size: cover;
    background-position: center;
    padding: 180px 40px;
    text-align: left;
    color: white;
    position: relative;
}

.hero::before {
    position: absolute;
    inset: 0;
}

.hero-text {
    position: relative;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0;
}

.hero-text p {
    font-size: 1.4rem;
    margin-top: 10px;
    color: #2B9BED;
    background-color: white;
    display: inline-block;   
    padding: 6px 14px;       
    border-radius: 6px; 
}

.btn-hero {
    display: inline-block;
    margin-top: 20px;
    background: #72A358;
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s;
}

.btn-hero:hover {
    background: #2B9BED;
}

.page-hero {
    padding: 100px 30px;
    background-color: #2B9BED;
    background-position: center top;
    display: center;
    align-items: center;
    background: url(media/bleuet.jpg);
    background: url(media/vachehorizon.jpg);
    background: url(media/proprioetreleve.jpg);
    background: url(media/fermevertical.jpg);
        
}

.page-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px;
}

.page-content h2 {
    color: #2B9BED;
    margin-top: 40px;
}

.page-content p {
    line-height: 1.7;
    margin-top: 15px;
}
	.read-btn {
background: #2B9BED;     
color: #E8E597;                 
padding: 5px 10px; 
text-align: center;
text-decoration: none 
}
.read-btn:hover {
  background: #72A358;        
  color: #E8E597;
} 
.home-sections {
    padding: 50px 40px;
}

.intro {
    text-align: center;
}

.cards {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    flex: 1;
    box-shadow: 0 3px 10px #E8E597;
    text-align: center;
}
.texte-deux-colonnes {
    display: flex;
    gap: 100px;
    max-width: 900px;
    margin: 40px auto;
    width: fit-content;
}

.texte-deux-colonnes p {
    flex: 1;
}
.photos {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    justify-content: center;
}

.photos img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.info-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 3px 10px #E8E597;
}

.infolettre {
    text-align: center;
    margin-top: 50px;
}

.infolettre iframe {
    border: none;
    max-width: 500px;
}

.footer {
    text-align: center;
    background: white;
    color: #2B9BED;
    padding: 20px;
    margin-top: 50px;
}