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

:root {
    --primary-color: #FF7F00;
    --primary-dark: #E66A00;
    --primary-light: #FFA040;
    --secondary-color: #2C2C2C;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
}

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

/* Images responsive par défaut */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.nav-logo img {
    width: auto;
}

.hero-image img,
.about-image img,
.gallery-item img {
    width: 100%;
    object-fit: cover;
}

/* Prévenir le débordement */
section,
.container,
.nav-container,
table {
    max-width: 100%;
    overflow-x: hidden;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.nav-logo img {
    height: 55px;
    width: auto;
    transition: var(--transition);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

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

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

.nav-link:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-color);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu.active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    padding: 30px 20px;
    gap: 25px;
    max-height: calc(100vh - 75px);
    overflow-y: auto;
    animation: slideDown 0.3s ease-out;
}

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

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

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

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

/* ========== HERO SECTION ========== */
.hero {
    margin-top: 75px;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%23ffffff" fill-opacity="0.05" d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z"></path></svg>') no-repeat bottom;
    background-size: 200% auto;
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 600;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 35px;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

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

.btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* ========== SECTION STYLES COMMUNES ========== */
section {
    padding: 120px 20px;
}

section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 70px;
    color: var(--secondary-color);
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 3px;
}

/* ========== ABOUT SECTION ========== */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 140px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

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

/* ========== ACTIVITIES SECTION ========== */
.activities {
    background: var(--white);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-bottom: 90px;
}

.activity-card {
    background: var(--bg-light);
    padding: 45px 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: var(--white);
}

.activity-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: block;
}

.activity-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 700;
}

.activity-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.equipment-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 70px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.equipment-section h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
}

.equipment-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.equipment-list ul {
    list-style: none;
}

.equipment-list li {
    padding: 15px 0 15px 35px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    position: relative;
    font-size: 1.05rem;
    color: var(--text-color);
    transition: var(--transition);
}

.equipment-list li:last-child {
    border-bottom: none;
}

.equipment-list li:hover {
    padding-left: 40px;
    color: var(--primary-color);
}

.equipment-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    background: var(--primary-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    line-height: 24px;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ========== GALLERY SECTION ========== */
.gallery {
    background: var(--bg-light);
}

.gallery-description {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 55px;
    line-height: 1.7;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 14px 30px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 700;
    font-size: 1.05rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    background: var(--white);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

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

/* ========== LIGHTBOX ========== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.lightbox img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
    color: var(--white);
    font-size: 1.4rem;
    margin-top: 25px;
    padding: 0 20px;
    font-weight: 600;
}

.close-lightbox {
    position: absolute;
    top: 25px;
    right: 40px;
    color: var(--white);
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
}

.close-lightbox:hover {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.7);
    transform: rotate(90deg);
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 35px;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.6);
    border-radius: var(--radius-sm);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 25px;
}

.next-btn {
    right: 25px;
}

/* ========== INFO SECTION ========== */
.info {
    background: var(--white);
}

.info-grid-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 35px;
    margin-bottom: 45px;
    align-items: start;
}

.info-grid-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.info-card {
    background: var(--white);
    padding: 45px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 127, 0, 0.2);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.6rem;
    font-weight: 700;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 18px;
    display: flex;
    align-items: center;
}

.info-card h3 i {
    margin-right: 15px;
    font-size: 1.5rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    margin-bottom: 12px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.schedule-item:hover {
    background: rgba(255, 127, 0, 0.1);
    transform: translateX(5px);
}

.schedule-item span:first-child {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.schedule-item span:last-child {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.inscription ul,
.rules ul {
    list-style: none;
}

.inscription li,
.rules li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.inscription li:last-child,
.rules li:last-child {
    border-bottom: none;
}

.inscription li:hover,
.rules li:hover {
    padding-left: 45px;
    color: var(--primary-color);
}

.inscription li::before,
.rules li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-weight: bold;
    font-size: 1rem;
    line-height: 28px;
    text-align: center;
    background: var(--primary-color);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* ========== PRICING TABLE ========== */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 18px;
}

.pricing-card h3 i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 10px;
}

.pricing-table-container {
    overflow-x: auto;
    margin: 0 -10px;
    padding: 0 10px;
    border-radius: var(--radius-md);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-light);
}

.pricing-table-container::-webkit-scrollbar {
    height: 10px;
}

.pricing-table-container::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 5px;
}

.pricing-table-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

.pricing-table-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    min-width: 500px;
}

.pricing-table thead {
    background: var(--secondary-color);
}

.pricing-table th {
    color: var(--white);
    font-weight: 700;
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    padding: 16px 20px;
}

.pricing-table th:first-child {
    text-align: left;
    border-radius: var(--radius-sm) 0 0 0;
    background: var(--secondary-color);
}

.pricing-table th:nth-child(2) {
    background: var(--primary-color);
}

.pricing-table th:last-child {
    background: #d45500;
    border-radius: 0 var(--radius-sm) 0 0;
}

.pricing-table tbody tr {
    background: var(--white);
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.pricing-table tbody tr:hover {
    background: rgba(255, 127, 0, 0.04);
}

.pricing-table td {
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 16px 20px;
}

.pricing-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 var(--radius-sm);
}

.pricing-table tbody tr:last-child td:last-child {
    border-radius: 0 0 var(--radius-sm) 0;
}

.service-name {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.loisir-col {
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.competition-col {
    text-align: center;
    font-weight: 700;
    color: #d45500;
    font-size: 1.05rem;
}

/* ========== CONTACT SECTION ========== */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.contact-info {
    background: var(--white);
    padding: 50px 45px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 127, 0, 0.08);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
    background: var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.contact-item h3 {
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.social-media {
    margin-top: 45px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.social-media h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    font-size: 1.3rem;
}

.social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-md);
}

.map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 500px;
}

.map:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.map iframe {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 80px 20px 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 20px;
}

.footer-logo p {
    opacity: 0.85;
    font-size: 1.05rem;
    line-height: 1.7;
}

.footer h4 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    font-size: 1.05rem;
}

.footer ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
    opacity: 0.8;
    font-size: 1.05rem;
}

.gallery-item.hidden {
    display: none;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Très grands écrans (1400px et plus) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .nav-container {
        max-width: 1320px;
    }
    
    .hero h1 {
        font-size: 4.2rem;
    }
    
    section h2 {
        font-size: 3.5rem;
    }
}

/* ========== RESPONSIVE DESIGN ========== */

/* Large tablets (1024px et moins) */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }
    
    section {
        padding: 100px 25px;
    }
    
    .hero-content {
        gap: 60px;
    }
    
    .about-content {
        gap: 60px;
    }
    
    .equipment-section {
        padding: 60px 50px;
    }
}

/* Tablettes (768px et moins) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active .nav-link {
        padding: 15px 20px;
        text-align: center;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    section {
        padding: 80px 20px;
    }

    section h2 {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .hero-image img {
        height: 350px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .stats {
        justify-content: center;
        gap: 30px;
    }
    
    .stat {
        min-width: 120px;
        padding: 20px;
    }
    
    .equipment-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .equipment-section {
        padding: 50px 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .map {
        height: 350px;
        order: 2;
    }
    
    .contact-info {
        order: 1;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .info-grid-top,
    .info-grid-bottom {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .info-grid-top {
        margin-bottom: 35px;
    }
    
    .info-card {
        padding: 35px 30px;
    }
    
    .info-card h3 {
        font-size: 1.4rem;
        flex-wrap: wrap;
    }
    
    .schedule-item {
        padding: 16px 20px;
        flex-direction: column;
        gap: 8px;
        text-align: left;
    }
    
    .inscription li,
    .rules li {
        padding: 12px 0 12px 35px;
        font-size: 1.05rem;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-card h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .pricing-table-container {
        margin: 0 -20px;
        padding: 0 10px;
    }
    
    .pricing-table {
        min-width: 520px;
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 12px 10px;
    }
    
    .pricing-table th {
        font-size: 0.75rem;
    }
    
    .service-name {
        font-size: 0.85rem;
    }
    
    .loisir-col,
    .competition-col {
        font-size: 0.95rem;
    }
}

/* Mobiles (480px et moins) */
@media (max-width: 480px) {
    .hero {
        padding: 70px 15px;
        min-height: 85vh;
    }
    
    .hero h1 {
        font-size: 2.4rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 30px;
    }
    
    section {
        padding: 60px 15px;
    }
    
    section h2 {
        font-size: 2.2rem;
        margin-bottom: 45px;
    }
    
    .about-text h3 {
        font-size: 1.9rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .activity-card,
    .info-card {
        padding: 35px 25px;
    }
    
    .equipment-section {
        padding: 40px 25px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo img {
        height: 45px;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .about-image img {
        height: 280px;
    }
    
    .footer {
        padding: 60px 15px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .filter-btn {
        font-size: 0.95rem;
        padding: 12px 22px;
    }
    
    .gallery-item img {
        height: 230px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .close-lightbox {
        top: 15px;
        right: 20px;
        font-size: 35px;
        width: 45px;
        height: 45px;
    }
    
    .prev-btn,
    .next-btn {
        font-size: 28px;
        padding: 15px;
        width: 50px;
        height: 50px;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    .contact-info {
        padding: 40px 30px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-card h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .pricing-table-container {
        margin: 0 -20px;
        padding: 0 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-table {
        min-width: 420px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 10px 8px;
    }
    
    .pricing-table th {
        font-size: 0.7rem;
        padding: 10px 5px;
    }
    
    .service-name {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .loisir-col,
    .competition-col {
        font-size: 0.85rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Très petits écrans (360px et moins) */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.7rem;
    }
    
    .activity-card i {
        font-size: 3rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .pricing-card {
        padding: 25px 18px;
    }
    
    .pricing-card h3 {
        font-size: 1.4rem;
    }
    
    .pricing-table {
        min-width: 380px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 10px 12px;
    }
    
    .pricing-table th {
        font-size: 0.7rem;
    }
    
    .service-name {
        font-size: 0.8rem;
    }
    
    .loisir-col,
    .competition-col {
        font-size: 0.9rem;
    }
}

/* Smartphones en mode paysage */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px 20px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    section {
        padding: 60px 20px;
    }
}

/* Amélioration pour petits écrans en hauteur */
@media (max-height: 700px) {
    .hero {
        min-height: auto;
        padding: 70px 20px;
    }
}

/* Support pour les appareils tactiles */
@media (hover: none) and (pointer: coarse) {
    /* Feedback tactile au lieu de hover */
    .btn:active,
    .filter-btn:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    .social-link:active,
    .view-btn:active {
        transform: scale(0.95);
    }

    /* Augmenter les zones tactiles */
    .nav-link {
        padding: 15px 10px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hamburger {
        padding: 15px;
        min-width: 48px;
        min-height: 48px;
    }

    /* Désactiver les animations scale sur tactile */
    .gallery-item:hover img {
        transform: none;
        filter: none;
    }
}

/* Mode sombre (si activé dans le système) */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Optimisation pour impression */
@media print {
    .navbar,
    .hamburger,
    .hero-buttons,
    .gallery-filters,
    .social-media,
    .footer {
        display: none;
    }
    
    section {
        page-break-inside: avoid;
        padding: 20px 0;
    }
    
    .hero {
        background: var(--white);
        color: var(--text-color);
        min-height: auto;
        padding: 20px;
    }
    
    .pricing-table {
        page-break-inside: avoid;
    }
}
