/* ============================================
   RESET & BASE
   ============================================ */

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

body {
    background: #9DD8EE;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #000000;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
    background: #9DD8EE;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Menu Desktop - Horizontal */
.menu-desktop {
    flex: 1;
}

.menu-desktop ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.menu-desktop ul li a {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.menu-desktop ul li a:hover,
.menu-desktop ul li a.active {
    background: #1c7cb8;
    color: #ffffff;
}

/* Logo bateau */
.header-logo {
    flex-shrink: 0;
    max-width: 180px;
    margin-left: 2rem;
}

/* Bouton hamburger mobile - Caché par défaut */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #000000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Menu mobile - Caché par défaut */
.menu-mobile {
    display: none;
    background: #3cadd4;
    padding: 1rem 0;
}

.menu-mobile ul {
    list-style: none;
    text-align: center;
}

.menu-mobile ul li {
    margin: 0;
}

.menu-mobile ul li a {
    display: block;
    padding: 1rem;
    color: #ffffff;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.menu-mobile ul li a:hover {
    background: #1c7cb8;
}

/* Menu mobile ouvert */
.menu-mobile.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation hamburger actif */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   RESPONSIVE NAVIGATION
   ============================================ */

@media (max-width: 1024px) {
    .menu-desktop ul {
        gap: 1rem;
    }
    
    .menu-desktop ul li a {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .header-logo {
        max-width: 140px;
    }
}

@media (max-width: 768px) {
    /* Masquer le menu desktop */
    .menu-desktop {
        display: none;
    }
    
    /* Afficher le bouton hamburger */
    .menu-toggle {
        display: flex;
    }
    
    .header-container {
        padding: 1rem 5%;
    }
    
    .header-logo {
        max-width: 120px;
        margin-left: auto;
        margin-right: 1rem;
    }
}

/* Support des écrans Samsung pliables */
@media (min-width: 768px) and (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }
    
    .menu-desktop {
        display: none;
    }
}

/* ============================================
   OPTIMISATIONS TACTILES SAMSUNG/ANDROID
   ============================================ */

@media (max-width: 768px) {
    .menu-toggle {
        padding: 15px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .menu-mobile ul li a {
        padding: 1.5rem;
        -webkit-tap-highlight-color: rgba(28, 124, 184, 0.3);
        touch-action: manipulation;
    }
    
    .button,
    a {
        touch-action: manipulation;
    }
}

/* ============================================
   BANNER
   ============================================ */

.banner {
    width: 100%;
}

.banner img {
    width: 100%;
    height: auto;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 3%;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 3rem 5%;
}

/* Sur grands écrans, encore plus large */
@media (min-width: 1300px) {
    main {
        max-width: 1450px;
        padding: 2rem 2%;
    }
    
    .content-wrapper {
        padding: 3rem 2%;
    }
}

/* Section intro */
.intro-section {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-section h1 {
    font-size: 2em;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.intro-section h2 {
    font-size: 1.75em;
    color: #000000;
    font-weight: 400;
    line-height: 1.4;
}

/* Section activités */
.activities-section h2 {
    text-align: center;
    font-size: 2em;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.text-content {
    font-size: 1.5em;
    line-height: 1.6;
}

.text-content p {
    margin-bottom: 1.5rem;
}

.text-content strong {
    color: #1c7cb8;
}

/* Grille d'images */
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2%;
    margin: 2rem 0;
}

.image-grid img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.03);
}

/* Bouton retour haut */
.back-to-top {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.button {
    display: inline-block;
    background-color: #3cadd4;
    border-radius: 40px;
    color: #ffffff !important;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.button:hover {
    background-color: #1c7cb8;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(28, 124, 184, 0.3);
}

.button.special {
    background-color: #1c7cb8;
    color: #000000 !important;
    font-weight: 600;
}

.button.special:hover {
    background-color: #3D8BBC;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.wrapper.style3 {
    background-color: #3cadd4;
    padding: 4rem 5%;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-wrapper {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-wrapper iframe {
    width: 100%;
    height: 300px;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.contact-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.contact-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.contact-item a:hover {
    transform: translateY(-5px);
}

.contact-item img {
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.contact-item a:hover img {
    transform: scale(1.1);
}

.contact-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

.cg-link {
    text-align: center;
    margin-top: 2rem;
}

.cg-link p,
.cg-link a {
    color: #ffffff;
    font-size: 1rem;
}

.cg-link a {
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */

#footer {
    background: #383b43;
    padding: 2rem 5%;
}

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

.hosting-info p,
.hosting-info a {
    color: #cdced0;
    font-size: 0.9rem;
}

.hosting-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE CONTENT
   ============================================ */

@media (max-width: 768px) {
    main {
        padding: 1rem 3%;
    }
    
    .content-wrapper {
        padding: 2rem 5%;
    }
    
    .intro-section h1 {
        font-size: 1.5em;
    }
    
    .intro-section h2 {
        font-size: 1.3em;
    }
    
    .activities-section h2 {
        font-size: 1.5em;
    }
    
    .text-content {
        font-size: 1.2em;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }
    
    .button {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .intro-section h1 {
        font-size: 1.3em;
    }
    
    .intro-section h2 {
        font-size: 1.1em;
    }
    
    .text-content {
        font-size: 1em;
    }
    
    .button {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
}

/* ============================================
   PAGE SORTIES - LISTE DES ACTIVITÉS
   ============================================ */

.page-title {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title h1 {
    font-size: 2.5em;
    color: #000000;
}

.activities-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.activity-card {
    display: grid;
    grid-template-columns: 40% 60%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.7);
}

.activity-image {
    overflow: hidden;
}

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

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.activity-content h2 {
    font-size: 1.8em;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}

.activity-description {
    font-size: 1.3em;
    color: #000000;
    margin: 0;
    line-height: 1.4;
}

.activity-price {
    font-size: 1.1em;
    color: #1c7cb8;
    font-weight: 500;
    margin: 0;
}

.activity-content .button {
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* ============================================
   RESPONSIVE ACTIVITÉS
   ============================================ */

@media (max-width: 968px) {
    .activity-card {
        grid-template-columns: 1fr;
    }
    
    .activity-image {
        max-height: 300px;
    }
    
    .activity-content {
        padding: 1.5rem;
    }
    
    .activity-content h2 {
        font-size: 1.5em;
    }
    
    .activity-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-title h1 {
        font-size: 2em;
    }
    
    .activity-content {
        padding: 1rem;
    }
    
    .activity-content h2 {
        font-size: 1.3em;
    }
    
    .activity-description {
        font-size: 1em;
    }
    
    .activity-price {
        font-size: 1em;
    }
}

/* ============================================
   PAGE BATEAU - CARACTÉRISTIQUES TECHNIQUES
   ============================================ */

.boat-specs {
    margin: 3rem auto;
    max-width: 800px;
}

.specs-grid {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.spec-item {
    display: grid;
    grid-template-columns: 180px 30px 1fr;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(28, 124, 184, 0.2);
    font-size: 1.3em;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #1c7cb8;
}

.spec-separator {
    text-align: center;
    color: #1c7cb8;
}

.spec-value {
    color: #000000;
    line-height: 1.5;
}

/* Aménagement du bateau */
.boat-layout {
    margin: 3rem 0;
}

.layout-info {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 2rem;
    color: #000000;
}

.layout-info p {
    margin: 0.5rem 0;
}

.layout-images {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 2%;
    align-items: center;
}

.layout-image-small img,
.layout-image-large img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ============================================
   RESPONSIVE BATEAU
   ============================================ */

@media (max-width: 768px) {
    .specs-grid {
        padding: 1.5rem 1rem;
    }
    
    .spec-item {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        padding: 1.5rem 0;
        font-size: 1.1em;
    }
    
    .spec-separator {
        display: none;
    }
    
    .spec-label {
        font-size: 1.1em;
    }
    
    .spec-value {
        padding-left: 0;
    }
    
    .layout-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .layout-info {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .boat-specs {
        margin: 2rem auto;
    }
    
    .specs-grid {
        padding: 1rem;
    }
    
    .spec-item {
        font-size: 1em;
        padding: 1rem 0;
    }
    
    .layout-info {
        font-size: 1.1em;
    }
}

/* ============================================
   PAGE RÉGION - CARTE DES 3 LACS
   ============================================ */

.region-section {
    margin: 2rem 0;
}

.region-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.region-intro h1 {
    font-size: 2.5em;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.region-intro p {
    font-size: 1.5em;
    color: #1c7cb8;
    line-height: 1.5;
}

/* Carte Google Maps */
.region-map {
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.region-map iframe {
    width: 100%;
    height: 600px;
    display: block;
}

/* Informations complémentaires */
.region-info {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    font-size: 1.3em;
    line-height: 1.8;
    color: #000000;
}

.region-info p {
    margin-bottom: 1rem;
}

.region-info p:last-child {
    margin-bottom: 0;
}

.region-info strong {
    color: #1c7cb8;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE RÉGION
   ============================================ */

@media (max-width: 768px) {
    .region-intro h1 {
        font-size: 2em;
    }
    
    .region-intro p {
        font-size: 1.2em;
    }
    
    .region-map iframe {
        height: 450px;
    }
    
    .region-info {
        padding: 1.5rem;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .region-intro h1 {
        font-size: 1.6em;
    }
    
    .region-intro p {
        font-size: 1.1em;
    }
    
    .region-map iframe {
        height: 350px;
    }
    
    .region-info {
        padding: 1rem;
        font-size: 1em;
    }
}

/* ============================================
   PAGE AGENDA - CALENDRIER
   ============================================ */

.calendar-section {
    margin: 2rem 0;
}

.calendar-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.calendar-intro h1 {
    font-size: 2.5em;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.calendar-intro p {
    font-size: 1.5em;
    color: #1c7cb8;
    line-height: 1.5;
}

/* Calendrier Google Calendar */
.calendar-wrapper {
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #1c7cb8;
}

.calendar-wrapper iframe {
    width: 100%;
    height: 600px;
    display: block;
}

/* Informations complémentaires */
.calendar-info {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    font-size: 1.3em;
    line-height: 1.8;
    color: #000000;
}

.calendar-info p {
    margin-bottom: 1rem;
}

.calendar-info p:last-child {
    margin-bottom: 0;
}

.calendar-info strong {
    color: #1c7cb8;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE AGENDA
   ============================================ */

@media (max-width: 768px) {
    .calendar-intro h1 {
        font-size: 2em;
    }
    
    .calendar-intro p {
        font-size: 1.2em;
    }
    
    .calendar-wrapper iframe {
        height: 500px;
    }
    
    .calendar-info {
        padding: 1.5rem;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .calendar-intro h1 {
        font-size: 1.6em;
    }
    
    .calendar-intro p {
        font-size: 1.1em;
    }
    
    .calendar-wrapper iframe {
        height: 450px;
    }
    
    .calendar-info {
        padding: 1rem;
        font-size: 1em;
    }
}

/* ============================================
   PAGE TARIFS - GRILLE TARIFAIRE
   ============================================ */

.pricing-section {
    margin: 2rem 0;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-intro h1 {
    font-size: 2.5em;
    color: #000000;
    margin-bottom: 1rem;
}

/* Tableau des tarifs */
.pricing-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.7);
    font-size: 1.3em;
}

.pricing-table thead {
    background: #1c7cb8;
    color: #ffffff;
}

.pricing-table thead th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1em;
    border: 1px solid #4DCAE5;
}

.pricing-table thead .discount-col {
    background: #3cadd4;
}

.discount-text {
    font-size: 0.8em;
    font-weight: 400;
    display: block;
    margin-top: 0.3rem;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #4DCAE5;
    transition: background 0.3s ease;
}

.pricing-table tbody tr:hover {
    background: rgba(60, 173, 212, 0.1);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 1.2rem 1rem;
    text-align: center;
    border: 1px solid #4DCAE5;
}

.pricing-table .duration {
    font-weight: 600;
    color: #1c7cb8;
    font-size: 1.1em;
}

.pricing-table .equals {
    color: #1c7cb8;
    font-weight: 600;
}

.pricing-table .price {
    font-weight: 700;
    color: #000000;
    font-size: 1.05em;
}

.pricing-table .discount-price {
    font-weight: 600;
    color: #3cadd4;
    background: rgba(60, 173, 212, 0.05);
}

/* Informations complémentaires */
.pricing-info {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    font-size: 1.3em;
    line-height: 1.8;
    color: #000000;
}

.pricing-info p {
    margin-bottom: 1.5rem;
}

.pricing-info p:last-child {
    margin-bottom: 0;
}

.pricing-info strong {
    color: #1c7cb8;
    font-weight: 600;
}

/* Lien Erminea dans les infos tarifs */
.pricing-info a {
    color: #1c7cb8;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.pricing-info a:hover {
    color: #3cadd4;
    text-decoration: none;
}

/* ============================================
   RESPONSIVE TARIFS - VERSION CARTES MOBILE
   ============================================ */

@media (max-width: 1024px) {
    .pricing-table {
        font-size: 1.1em;
    }
    
    .pricing-table thead th {
        padding: 1rem 0.5rem;
        font-size: 1em;
    }
    
    .pricing-table td {
        padding: 1rem 0.5rem;
    }
}

/* TRANSFORMATION EN CARTES SUR MOBILE */
@media (max-width: 768px) {
    .pricing-intro h1 {
        font-size: 2em;
    }
    
    /* Masquer l'en-tête du tableau */
    .pricing-table thead {
        display: none;
    }
    
    /* Transformer en cartes */
    .pricing-table,
    .pricing-table tbody,
    .pricing-table tr,
    .pricing-table td {
        display: block;
        width: 100%;
    }
    
    .pricing-table tr {
        margin-bottom: 1.5rem;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 10px;
        padding: 1.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        border: 2px solid #1c7cb8;
    }
    
    .pricing-table td {
        text-align: left;
        padding: 0.8rem 0;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.2em;
        border-bottom: 1px solid rgba(28, 124, 184, 0.2);
    }
    
    .pricing-table td:last-child {
        border-bottom: none;
    }
    
    /* Ajouter les labels */
    .pricing-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #1c7cb8;
        flex: 0 0 50%;
    }
    
    /* Masquer la colonne "=" */
    .pricing-table .equals {
        display: none;
    }
    
    /* Style des durées */
    .pricing-table .duration {
        font-size: 1.5em;
        color: #ffffff;
        background: #1c7cb8;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        text-align: center;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .pricing-table .duration::before {
        display: none;
    }
    
    /* Style des prix */
    .pricing-table .price {
        font-size: 1.3em;
        color: #000000;
    }
    
    .pricing-table .discount-price {
        font-size: 1.2em;
        color: #3cadd4;
        font-weight: 700;
    }
    
    .pricing-info {
        padding: 1.5rem;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .pricing-intro h1 {
        font-size: 1.6em;
    }
    
    .pricing-table tr {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .pricing-table td {
        font-size: 1em;
        padding: 0.6rem 0;
    }
    
    .pricing-table .duration {
        font-size: 1.3em;
    }
    
    .pricing-table .price {
        font-size: 1.1em;
    }
    
    .pricing-table .discount-price {
        font-size: 1em;
    }
    
    .pricing-info {
        padding: 1rem;
        font-size: 1em;
    }
}

/* ============================================
   PAGES ACTIVITÉS DÉTAILLÉES - DIAPORAMA
   ============================================ */

.activity-header {
    text-align: center;
    margin-bottom: 2rem;
}

.activity-header h1 {
    font-size: 2.5em;
    color: #1c7cb8;
    margin-bottom: 0.5rem;
}

.activity-header h2 {
    font-size: 1.8em;
    color: #000000;
    font-weight: 400;
    line-height: 1.4;
}

/* ============================================
   DIAPORAMA / SLIDESHOW
   ============================================ */

.slideshow-section {
    margin: 2rem 0 3rem;
}

.diapo {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 100%;
}

.elements {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.element {
    flex: 0 0 100%;
    position: relative;
}

.element img {
    width: 100%;
    display: block;
}

/* Flèches de navigation */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 5px;
}

#nav-gauche {
    left: 20px;
}

#nav-droite {
    right: 20px;
}

.nav-arrow:hover {
    background: rgba(28, 124, 184, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

/* ============================================
   DESCRIPTION DE L'ACTIVITÉ
   ============================================ */

.activity-description {
    font-size: 1.3em;
    line-height: 1.8;
    margin: 2rem 0;
}

.activity-description p {
    margin-bottom: 1.5rem;
}

.activity-description h3 {
    color: #1c7cb8;
    font-size: 1.4em;
    margin: 2rem 0 1rem;
}

.price-highlight {
    background: rgba(60, 173, 212, 0.1);
    border-left: 4px solid #1c7cb8;
    padding: 1.5rem;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: 600;
}

.price-highlight strong {
    color: #1c7cb8;
    font-size: 1.3em;
}

.menu-list {
    background: rgba(255, 255, 255, 0.5);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.menu-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.menu-list ul {
    margin-top: 0.5rem;
    padding-left: 2rem;
}

/* ============================================
   BOÎTES D'INFORMATIONS
   ============================================ */

.activity-info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-box {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #1c7cb8;
}

.info-box h3 {
    color: #1c7cb8;
    font-size: 1.4em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box h3 i {
    font-size: 1.2em;
}

.info-box p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box ul li {
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 1.1em;
    line-height: 1.5;
}

.info-box ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    background: url('../img/bullet-anchor.svg') no-repeat center center;
    background-size: contain;
}

/* Boîte paiement */
.payment-box {
    grid-column: 1 / -1;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.payment-icons img {
    height: 40px;
    width: auto;
}

.payment-secure {
    text-align: center;
    font-size: 1em;
    color: #666;
    margin-top: 1rem;
}

.payment-secure a {
    color: #1c7cb8;
    text-decoration: underline;
}

/* ============================================
   CALL TO ACTION
   ============================================ */

.cta-section {
    text-align: center;
    background: rgba(60, 173, 212, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.cta-section h2 {
    color: #1c7cb8;
    font-size: 2em;
    margin-bottom: 1rem;
}

.cta-section .cg-link {
    font-size: 1.1em;
}

.cta-section .cg-link a {
    color: #1c7cb8;
    text-decoration: underline;
}

/* ============================================
   NAVIGATION PAGE
   ============================================ */

.page-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 3rem 0 2rem;
    flex-wrap: wrap;
}

.page-navigation .button {
    flex: 1;
    min-width: 200px;
}

/* ============================================
   RESPONSIVE PAGES ACTIVITÉS
   ============================================ */

@media (max-width: 768px) {
    .activity-header h1 {
        font-size: 2em;
    }
    
    .activity-header h2 {
        font-size: 1.4em;
    }
    
    .nav-arrow {
        font-size: 1.5rem;
        padding: 0.8rem 1rem;
    }
    
    #nav-gauche {
        left: 10px;
    }
    
    #nav-droite {
        right: 10px;
    }
    
    .activity-description {
        font-size: 1.1em;
    }
    
    .activity-info-boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-box {
        padding: 1.5rem;
    }
    
    .payment-icons img {
        height: 35px;
    }
    
    .page-navigation {
        flex-direction: column;
    }
    
    .page-navigation .button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .activity-header h1 {
        font-size: 1.6em;
    }
    
    .activity-header h2 {
        font-size: 1.2em;
    }
    
    .nav-arrow {
        font-size: 1.2rem;
        padding: 0.6rem 0.8rem;
    }
    
    .activity-description {
        font-size: 1em;
    }
    
    .info-box {
        padding: 1rem;
    }
    
    .info-box h3 {
        font-size: 1.2em;
    }
    
    .payment-icons img {
        height: 30px;
    }
}
/* ============================================
   NOTE D'INFORMATION (Perséides, etc.)
   ============================================ */

.info-note {
    background: rgba(28, 124, 184, 0.1);
    border-left: 4px solid #1c7cb8;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
}

.info-note p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #000000;
    margin: 0;
}

.info-note strong {
    color: #1c7cb8;
    font-style: normal;
    font-weight: 600;
}

@media (max-width: 768px) {
    .info-note {
        padding: 1rem;
    }
    
    .info-note p {
        font-size: 1em;
    }
}
