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

:root {
    --primary: #fe5d27;
    --primary-dark: #e54d1a;
    --dark: #1a1a2e;
    --text: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #fff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.7;
}

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

.text-center {
    text-align: center;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/gens-heureux.jpg') center/cover no-repeat;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.85);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(254, 93, 39, 0.3);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

.section {
    padding: 100px 0;
}

.section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--dark);
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-intro {
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    text-align: left;
    margin-bottom: 25px;
}

.intro-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.section-types {
    background: var(--bg-light);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.type-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.type-card:hover {
    transform: translateY(-10px);
}

.type-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.type-card h3 {
    font-size: 1.3rem;
    padding: 25px 25px 10px;
    color: var(--dark);
}

.type-card p {
    padding: 0 25px 25px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.section-choose {
    background: var(--white);
}

.choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.choose-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.choose-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.choose-text > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.criteria-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.criteria-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.criteria-item h4 {
    color: var(--dark);
    margin-bottom: 5px;
}

.criteria-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.section-booking {
    background: var(--bg-light);
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.step h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.booking-cta {
    background: var(--dark);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.booking-info {
    color: var(--white);
}

.booking-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.booking-info p {
    opacity: 0.8;
}

.section-tips {
    background: var(--white);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tip-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 35px;
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.tip-card p {
    color: var(--text-light);
}

.section-gallery {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.section-faq {
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 50px;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item summary {
    padding: 25px 0;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
    font-size: 1.1rem;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-content {
    padding-bottom: 25px;
    color: var(--text-light);
}

.faq-cta {
    text-align: center;
    padding-top: 30px;
}

.faq-cta p {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.section-seo {
    background: var(--bg-light);
    padding: 60px 0;
}

.section-seo p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .intro-grid,
    .choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .choose-grid {
        direction: rtl;
    }

    .choose-grid > * {
        direction: ltr;
    }

    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

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

    .booking-steps {
        grid-template-columns: 1fr;
    }

    .booking-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 90vh;
    }

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