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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header et Navigation */
header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
}

nav a:hover {
    color: #c67b69;
}

/* Section générale */
section {
    display: none;
}

section.active {
    display: block;
}

/* Hero Section */
.hero {
    background: #c67b69;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h2 {
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 40px;
}

/* Grille d'activités */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.activity-content {
    padding: 30px;
    background: #f5f1ed;
    text-align: center;
}

.activity-label {
    background: white;
    padding: 8px 20px;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 12px;
    text-transform: uppercase;
}

.activity-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.activity-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Page À propos */
.about-hero {
    background: #d4c5b9;
    padding: 80px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 72px;
    color: rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: white;
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #ddd;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.quote {
    background: #c67b69;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.quote h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.quote-author {
    background: #c67b69;
    color: white;
    padding: 40px 20px;
    text-align: center;
    font-size: 28px;
    font-style: italic;
}

/* Page Ateliers jeunesse */
.youth-hero {
    background: #1a4d3f;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.youth-hero h1 {
    font-size: 64px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.youth-hero h2 {
    font-size: 20px;
    font-style: italic;
    font-weight: 300;
}

.youth-content {
    background: #1a4d3f;
    color: white;
    padding: 60px 20px;
}

.youth-text {
    max-width: 900px;
    margin: 0 auto 40px;
    background: white;
    padding: 40px;
    color: #333;
}

.planning {
    background: #1a4d3f;
    color: white;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.planning h2 {
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.planning-image {
    width: 100%;
    height: 400px;
    background: #ddd;
    background-size: cover;
    background-position: center;
}

.tarifs {
    background: #1a4d3f;
    color: white;
    padding: 60px 20px;
}

.tarifs h2 {
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.tarifs-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Page Action sociale */
.social-hero {
    background: #d4c5b9;
    padding: 80px 20px;
    text-align: center;
}

.social-hero h1 {
    font-size: 72px;
    color: rgba(0,0,0,0.2);
    text-transform: uppercase;
}

.social-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}

.social-intro {
    text-align: center;
    color: #c67b69;
    margin-bottom: 40px;
}

.social-text {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
}

.social-section {
    margin-bottom: 30px;
}

.social-section h3 {
    font-weight: bold;
    margin-bottom: 15px;
}

.partners {
    background: #c67b69;
    color: white;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
}

.social-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    margin: 40px 0;
}

/* Page Coaching */
.coaching-hero {
    background: #c9a091;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.coaching-hero h1 {
    font-size: 72px;
    text-transform: uppercase;
}

.coaching-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.coaching-image {
    width: 100%;
    height: 500px;
    background: #ddd;
    background-size: cover;
    background-position: center;
}

/* Page Stages */
.stages-hero {
    background: #f5f1ed;
    padding: 80px 20px;
    text-align: center;
}

.stages-hero h1 {
    font-size: 72px;
    color: rgba(0,0,0,0.2);
    text-transform: uppercase;
}

.stages-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.stages-image {
    width: 100%;
    height: 400px;
    background: #ddd;
    background-size: cover;
    background-position: center;
}

/* Page Mécénat */
.mecenat-hero {
    background: #c9a091;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.mecenat-hero h1 {
    font-size: 72px;
    text-transform: uppercase;
}

.mecenat-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    text-align: center;
}

.mecenat-content a {
    color: #c67b69;
    text-decoration: underline;
}

/* Page Contact */
.contact-hero {
    background: #c67b69;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.contact-hero h1 {
    font-size: 72px;
    text-transform: uppercase;
}

.contact-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    text-align: center;
}

.contact-info {
    margin: 30px 0;
}

.contact-info p {
    margin: 10px 0;
}

.inscription-btn {
    display: inline-block;
    background: #f5f1ed;
    color: #333;
    padding: 15px 40px;
    text-decoration: none;
    margin: 30px 0;
    font-weight: bold;
}

.map {
    width: 100%;
    height: 400px;
    background: #e0e0e0;
    margin-top: 40px;
}

/* Footer */
footer {
    background: #000;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.facebook-embed {
    background: white;
    padding: 20px;
    max-width: 500px;
    margin: 20px auto;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero h1, .about-hero h1, .social-hero h1, .coaching-hero h1, .stages-hero h1, .mecenat-hero h1, .contact-hero h1 {
        font-size: 32px;
    }

    .about-content,
    .planning,
    .coaching-content,
    .stages-content {
        grid-template-columns: 1fr;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .logo img {
        height: 40px;
    }
}
