/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    --cyan: #06b6d4;
    --blue: #3e3e3e;
    --purple: #8b5cf6;
    --pink: #ec4899;
    --yellow: #fbbf24;
    --green: #10b981;
    --orange: #f97316;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-600: #4b5563;
    --gray-900: #111827;
}

/* Header */
.header {
    /* background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple)); */
    background: transparent;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: absolute;
    left: 0;
    right: 0;
    overflow: hidden;
}

.header-decorative {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
}

.deco-1 {
    top: 1rem;
    left: 2.5rem;
    width: 2rem;
    height: 2rem;
    background: var(--yellow);
}

.deco-2 {
    top: 2rem;
    right: 5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--pink);
}

.deco-3 {
    bottom: 1rem;
    left: 25%;
    width: 1rem;
    height: 1rem;
    background: var(--green);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
    z-index: 15;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon img {
    height: 90px;
}

.logo-icon {
    position: relative;
}

.logo-bg {
    width: 3rem;
    height: 3rem;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

.dice {
    font-size: 1.5rem;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.logo-text p {
    font-size: 0.875rem;
    color: #bfdbfe;
    margin: 0;
    font-weight: 500;
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
    color: white;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh);
    display: flex;
    align-items: center;
}

.hero__logo {
    height: 40vh;
    animation: pulse 5s infinite;
}

.hero-decorative {
    position: absolute;
    inset: 0;
    /* opacity: 0.2; */
}

.hero-deco {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
}

.hero-deco-1 {
    top: 5vh;
    left: -4vw;
    width: 25vw;
    height: 25vw;
    background-image: url('assets/img/feuille_gr_jaune.png');
    animation: bounce 12s infinite;
}

.hero-deco-2 {
    top: 20vh;
    right: -3vw;
    width: 30vw;
    height: 30vw;
    transform: rotate(25deg);
    background-image: url('assets/img/feuille_gr_verte.png');
    animation: pulseTra 15s infinite;
}

.hero-deco-21 {
    bottom: -7vh;
    right: -10vw;
    width: 30vw;
    height: 30vw;
    transform: rotate(-70deg);
    background-image: url('assets/img/feuille_gr_rose.png');
    animation: pulseTra2 12s infinite;
}

.hero-deco-22 {
    bottom: -2vh;
    left: -10vw;
    width: 30vw;
    height: 30vw;
    background-image: url('assets/img/feuille_gr_verte.png');
    transform: rotate(140deg);
    /* animation: pulse 2s infinite; */
}

.hero-deco-23 {
    top: 15vh;
    left: -5vw;
    width: 30vw;
    height: 30vw;
    background-image: url('assets/img/feuille_gr_orange.png');
    transform: rotate(200deg);
    /* animation: pulse 2s infinite; */
}

.hero-deco-3 {
    bottom: 8rem;
    left: 25%;
    width: 2rem;
    height: 2rem;
    animation: bounce 2s infinite 0.3s;
    background-image: url('assets/img/de.png');
}

.hero-deco-4 {
    bottom: 5rem;
    right: 33%;
    width: 5rem;
    height: 5rem;
    animation: pulse 2s infinite 0.5s;
    background-image: url('assets/img/pion.png');

}

.palm-leaf {
    position: absolute;
    width: 450px;
    height: 450px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;

    /* border-radius: 50%; */
    /* opacity: 0.3; */
}

.palm-left {
    top: 2.5rem;
    left: -150px;
    transform: rotate(45deg);
    background-image: url('assets/img/feuille.png');
}

.palm-bot-left {
    bottom: 2.5rem;
    left: -150px;
    transform: rotate(85deg);
    background-image: url('assets/img/feuille_rose.png');
}

.palm-top-right {
    top: 2.5rem;
    right: -80px;
    width: 350px;
    height: 350px;
    transform: rotate(35deg);
    background-image: url('assets/img/feuille_jaune.png');
}

.palm-right {
    bottom: 2.5rem;
    right: -80px;
    width: 350px;
    height: 350px;
    transform: rotate(-45deg);
    background-image: url('assets/img/feuille_bleu.png');
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    width: 100%;
}

.sun-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.sun {
    position: relative;
    width: 8rem;
    height: 8rem;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

.sun-icon {
    font-size: 3rem;
}

.sun-ray {
    position: absolute;
    background: #fcd34d;
    border-radius: 1rem;
}

.sun-ray-1 {
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.5rem;
    height: 2rem;
}

.sun-ray-2 {
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.5rem;
    height: 2rem;
}

.sun-ray-3 {
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 0.5rem;
}

.sun-ray-4 {
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 0.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.word-summer {
    color: var(--yellow);
    display: block;
}

.word-games {
    background: linear-gradient(45deg, #bfdbfe, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.word-tour {
    color: #fbb6ce;
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #3e3e3e;
    font-weight: 500;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-info {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 50vw;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: nowrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--yellow);
}

.info-divider {
    width: 1px;
    height: 2rem;
    background: rgba(255,255,255,0.3);
}

.info-highlight {
    background: var(--yellow);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: bold;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.hero .btn-primary {
    color: #fff;
}

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

.btn-primary:hover {
    background: #f59e0b;
}

.hero .btn-secondary {
    background: transparent;
    color: #3e3e3e;
    border: 2px solid #3e3e3e;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--blue);
}

.btn-large {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-large:hover {
    background: linear-gradient(135deg, #0891b2, #2563eb);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.partenaires .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon img {
    /* max-width: 100%; */
    height: 100%;
}

.feature-icon {
    width: 90%;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon-cyan {
    background: var(--cyan);
    color: white;
}

.feature-icon-pink {
    background: var(--pink);
    color: white;
}

.feature-icon-yellow {
    background: var(--yellow);
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-600);
}

/* Featured Stops */
.featured-stops {
    padding: 5rem 0;
    background: white;
}

.stops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stop-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.stop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stop-image {
    height: 200px;
    /* background: linear-gradient(135deg, var(--cyan), var(--blue)); */
    position: relative;
    overflow: hidden;
    background-size: cover;
}

.stop-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

.stop-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    z-index: 2;
}

.stop-overlay h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stop-overlay p {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.9;
}

.stop-content {
    padding: 1.5rem;
}

.stop-date {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.stop-content p {
    color: var(--gray-600);
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
    background: linear-gradient(135deg, var(--cyan), #157cbc);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.page-hero-pink {
    background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
}

.page-hero-green {
    background: linear-gradient(135deg, var(--green), var(--blue), var(--purple));
}

.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.page-hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.highlight {
    color: var(--yellow);
}

.highlight-yellow {
    color: var(--yellow);
}

.page-hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-info-simple {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

/* Filter Section */
.filter-section {
    padding: 2rem 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: var(--gray-600);
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: white;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.filter-btn-pink:hover,
.filter-btn-pink.active {
    background: linear-gradient(135deg, var(--pink), var(--purple));
}

/* Etapes Grid */
.etapes-grid {
    padding: 4rem 0;
}

.etapes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.etape-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.etape-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.2);
}

.etape-header {
    height: 12rem;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    position: relative;
    overflow: hidden;
    background-size: cover;
}

.etape-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}


.etape-header-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 1.5rem;
    z-index: 2;
}

.etape-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.etape-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.etape-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.etape-content {
    padding: 1.5rem;
}

.etape-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.etape-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.detail-icon {
    font-size: 1rem;
}

.etape-entry {
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    color: var(--blue);
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Gallery Grid */
.gallery-grid {
    padding: 4rem 0;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    cursor: pointer;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-image {
    height: 200px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    position: relative;
    overflow: hidden;
}

.gallery-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #3b82f6, #06b6d4, #fbbf24);
}

.gallery-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    transition: background 0.3s ease;
}

.gallery-item:hover .gallery-image::after {
    background: rgba(0,0,0,0.4);
}

.gallery-decorations {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.gallery-sun {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background: var(--yellow);
    border-radius: 50%;
}

.gallery-clouds {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
}

.gallery-cloud {
    background: white;
    border-radius: 50%;
    opacity: 0.7;
}

.gallery-cloud:first-child {
    width: 2rem;
    height: 1rem;
}

.gallery-cloud:last-child {
    width: 1.5rem;
    height: 0.75rem;
    margin-top: 0.5rem;
    margin-left: 1rem;
    opacity: 0.5;
}

.gallery-beach {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4rem;
    background: linear-gradient(to top, #fbbf24, transparent);
}

.gallery-games {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
}

.game-piece {
    border-radius: 0.25rem;
}

.game-dice {
    width: 1.5rem;
    height: 1.5rem;
    background: #ef4444;
}

.game-token {
    width: 1rem;
    height: 1rem;
    background: var(--blue);
    border-radius: 50%;
}

.gallery-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
}

.zoom-icon {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    padding: 0.75rem;
    color: white;
    font-size: 1.5rem;
}

.gallery-city-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(255,255,255,0.9);
    color: var(--gray-900);
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    backdrop-filter: blur(10px);
    z-index: 3;
}

.gallery-info {
    padding: 1rem;
}

.gallery-info h3 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.gallery-info p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 1rem;
    max-width: 64rem;
    width: 100%;
    position: relative;
    z-index: 10;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    font-size: 1.25rem;
    z-index: 20;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(0,0,0,0.7);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-image {
    height: 24rem;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.modal-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #3b82f6, #06b6d4, #fbbf24);
}

.modal-image-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.modal-image-placeholder {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    color: white;
}

.modal-info h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.modal-info p {
    color: var(--gray-600);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.card-header {
    color: white;
    padding: 1.5rem;
    font-weight: bold;
}

.card-header h2 {
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-header-cyan {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.card-header-pink {
    background: linear-gradient(135deg, var(--pink), var(--purple));
}

.card-header-orange {
    background: linear-gradient(135deg, var(--yellow), var(--orange));
}

.card-content {
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.btn-form {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: white;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-icon-cyan {
    background: var(--cyan);
}

.contact-icon-green {
    background: var(--green);
}

.contact-icon-purple {
    background: var(--purple);
}

.contact-details h3 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #0891b2;
}

.social-links-large {
    display: flex;
    gap: 0.75rem;
}

.social-link-large {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.social-link-large:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.social-facebook {
    background: #1877f2;
    color: white;
}

.social-instagram {
    background: linear-gradient(135deg, #e4405f, #833ab4);
    color: white;
}

.social-twitter {
    background: #1da1f2;
    color: white;
}

.practical-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
}

.entry-free {
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    color: var(--blue);
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    text-align: center;
    margin-top: 1rem;
}

/* Organizers Section */
.organizers-section {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.organizers-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.organizers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.organizer {
    color: white;
    padding: 2rem 3rem;
    border-radius: 0.75rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.organizer:hover {
    transform: scale(1.05);
}

.organizer-cyan {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.organizer-pink {
    background: linear-gradient(135deg, var(--pink), var(--purple));
}

.organizer h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.organizer-separator {
    font-size: 1.5rem;
    color: var(--gray-400);
}

/* Toast */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    padding: 1rem;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--green);
}

.toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast-text strong {
    color: var(--gray-900);
    display: block;
    margin-bottom: 0.25rem;
}

.toast-text p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section-pink {
    background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
}

.cta-decorative {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.cta-deco {
    position: absolute;
    border-radius: 50%;
}

.cta-deco-1 {
    top: 2rem;
    left: 4rem;
    width: 4rem;
    height: 4rem;
    background: var(--yellow);
    animation: bounce 2s infinite;
}

.cta-deco-2 {
    bottom: 2rem;
    right: 5rem;
    width: 3rem;
    height: 3rem;
    background: var(--green);
    animation: pulse 2s infinite;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--cyan), #157cbc);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-decorative {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.footer-deco {
    position: absolute;
    border-radius: 50%;
}

.footer-deco-1 {
    top: 1.5rem;
    left: 4rem;
    width: 3rem;
    height: 3rem;
    background: var(--yellow);
}

.footer-deco-2 {
    top: 3rem;
    right: 6rem;
    width: 2rem;
    height: 2rem;
    background: var(--green);
}

.footer-deco-3 {
    bottom: 2rem;
    left: 33%;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--orange);
}

.footer-deco-4 {
    bottom: 4rem;
    right: 25%;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--pink);
}

.footer-content {
    padding: 3rem 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.footer-main {
    max-width: 32rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-text h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.footer-logo .logo-text p {
    font-size: 0.875rem;
    color: #a5f3fc;
    margin: 0;
    font-weight: 500;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-highlight {
    background: var(--yellow);
    color: var(--blue);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.footer-nav ul,
.footer-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav li,
.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-nav a,
.footer-contact a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--yellow);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.contact-icon {
    font-size: 1rem;
    color: var(--yellow);
}

.social-media {
    margin-top: 1.5rem;
}

.social-media h5 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--yellow);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.footer-bottom p {
    color: #d1d5db;
    font-size: 0.875rem;
    margin: 0;
}

.footer-partners {
    color: #d1d5db;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-partners strong {
    color: var(--yellow);
}

/* Animations */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateY(0);
    }
    40%, 43% {
        transform: translateY(-8px);
    }
    70% {
        transform: translateY(-4px);
    }
    90% {
        transform: translateY(-2px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes pulseTra {
    0%, 100% {
        transform: scale(1) rotate(32deg);
    }
    50% {
        transform: scale(1.05) rotate(36deg);
    }
}

@keyframes pulseTra2 {
    0%, 100% {
        transform: scale(1) rotate(-69deg);
    }
    50% {
        transform: scale(1.05) rotate(-72deg);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hamburger {
        font-size: 16px;
    }

    .nav-mobile.active {
        display: flex;
        position: relative;
        background: linear-gradient(135deg, var(--cyan), #157cbc);
        z-index: 11;
        padding: 20px;
        width: 100vw;
        margin-left: -15px;
        padding-top: 100px;
        margin-top: -100px;
        
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-info .info-item{

        font-size: 16px;
    }

    .hero {
        background-position: center;
        padding-top: 100px;
    }

    .hero-info {
        flex-direction: column;
        gap: 1rem;
        padding: 10px;
        max-width: 70vw;
    }

    .info-divider {
        width: 2rem;
        height: 1px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .stops-grid,
    .etapes-container,
    .gallery-container {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .organizers {
        flex-direction: column;
        gap: 1rem;
    }

    .organizer-separator {
        transform: rotate(90deg);
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .filter-buttons {
        gap: 0.25rem;
    }

    .filter-btn {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }

    .hero-deco-1 {
        top: 15vh;
        left: -4vw;
        width: 35vw;
        height: 35vw;
    }
    
    .hero-deco-2 {
        top: 25vh;
        right: -3vw;
        width: 35vw;
        height: 35vw;
    }
    
    .hero-deco-21 {
        bottom: -2vh;
        right: -10vw;
        width: 35vw;
        height: 35vw;
    }
    
    .hero-deco-22 {
        bottom: -2vh;
        left: -10vw;
        width: 35vw;
        height: 35vw;
    }
    
    .hero-deco-23 {
        top: 35vh;
        left: -5vw;
        width: 35vw;
        height: 35vw;
    }
    
    .hero-deco-3 {
        bottom: 8rem;
        left: 25%;
        width: 2rem;
        height: 2rem;
    }
    
    .hero-deco-4 {
        bottom: 5rem;
        right: 33%;
        width: 5rem;
        height: 5rem;
    
    }
    
    .palm-leaf {
        width: 50vw;
        height: 50vw;
    }
    
    .palm-left {
        top: 2.5rem;
        left: -70px;
    }
    
    .palm-bot-left {
        bottom: -20px;
        left: -70px;
    }
    
    .palm-top-right {
        top: 2.5rem;
        right: -60px;
        width: 55vw;
        height: 55vw;
    }
    
    .palm-right {
        bottom: 2.5rem;
        right: -50px;
        width: 55vw;
        height: 55vw;
    }

    .hero__logo {
        width: 70vw;
        height: auto;
    }

    .logo-icon img {
        height: 60px;
    }

    .logo-text h1 {
        font-size: 18px;
    }

    .mobile-menu-btn {
        height: 50px;
        width: 50px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle,
    .page-hero-content p {
        font-size: 1.125rem;
    }

    .sun {
        width: 6rem;
        height: 6rem;
    }

    .sun-icon {
        font-size: 2rem;
    }

    .toast {
        right: 1rem;
        left: 1rem;
        top: 1rem;
    }
}



.chiffres {
    background: linear-gradient(to bottom,#f0f9ff,#fff)
}

.chiffres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 2rem;
    margin-bottom: 4rem
}

.chiffre-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.chiffre-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,.15)
}

.chiffre-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,transparent,#0ea5e9,transparent);
    opacity: 0;
    transition: opacity .3s ease
}

.chiffre-card:hover::before {
    opacity: 1
}

.chiffre-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    transition: transform .3s ease
}

.chiffre-card:hover .chiffre-icon {
    transform: scale(1.1)
}

.chiffre-icon.blue {
    background: linear-gradient(135deg,#0ea5e9,#06b6d4)
}

.chiffre-icon.orange {
    background: linear-gradient(135deg,#f97316,#dc2626)
}

.chiffre-icon.purple {
    background: linear-gradient(135deg,#8b5cf6,#ec4899)
}

.chiffre-icon.green {
    background: linear-gradient(135deg,#10b981,#059669)
}

.chiffre-nombre {
    font-size: 3rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: .5rem
}

.chiffre-label {
    color: #6b7280;
    font-weight: 600
}


section.map {
    text-align: center;
    padding: 150px 0 0 0;
}

.map__img {
    width: 90%;
    max-width: 900px;
    margin: auto;
}