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

body {
     background: #2d2d2d
}



/* CTA Section */
.cta-section {
    background: #f5f7f7;
    color: rgb(32, 117, 228);
    text-align: center;
    padding: 4rem 2rem;
}

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

.logo {
    color: #2c5282;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.nav-menu a:hover {
    color: #2c5282;
}

.mobile-menu-toggle {
    display: none;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 8%;
}

.hero-img {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Section */
.about-section {
    color: white;
    padding: 4rem 0;
    font-weight: 800;
}

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

.propos-section {
    background: #e6b800;
    padding: 2rem 0;
    text-align: center;
    color: #fff;
    font-weight: bold;
    border: 2px solid #fff;
    box-shadow: 
        0 0 10px #fff,
        0 0 20px #ffeb3b,
        0 0 40px #ffeb3b,
        0 0 80px #ffeb3b;
}

.propos-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 
        0 0 5px #fff,
        0 0 40px #ffeb3b,
        0 0 80px #ffeb3b;
}

.team-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a0c8e;
    text-transform: uppercase;
    text-shadow: 
        0 0 5px #fff,
        0 0 40px #5e12e1,
        0 0 80px #0d44ce;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.highlight {
    color: #63b3ed;
    font-weight: bold;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background: #f0f0f0;
}

.team-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5282;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    flex: 1;
    background: #ddd;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c5282, #63b3ed);
    color: white;
    font-size: 3rem;
}

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

.member-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c5282;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #63b3ed;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

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

.member-specialties {
    margin-bottom: 1.5rem;
}

.specialty-item {
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    position: relative;
    padding-left: 1rem;
}

.specialty-item::before {
    content: "•";
    color: #63b3ed;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.member-contact {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-info {
    font-size: 0.9rem;
    color: #666;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #2c5282;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: #63b3ed;
    transform: scale(1.1);
}

/* Stats Section */
.stats-section {
    background: #f8f9fa;
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c5282;
    display: block;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    margin-top: 0.5rem;
    color: #666;
    font-weight: 500;
}

/* Animation - CHANGED: Make visible by default, animate when 'visible' class is added */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.fade-in.animate {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Schedule Section CSS - Gold/Black Theme */
.schedule-section {
    background: #f5f5f5;
    padding: 0;
}

.schedule-header {
    background: linear-gradient(135deg, #b8962e 0%, #f4c430 50%, #fdb931 100%);
    color: white;
    text-align: center;
    padding: 2rem 0;
    position: relative;
}

.schedule-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.schedule-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    font-family: Arial, sans-serif;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.schedule-content {
    display: flex;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
}

.schedule-card {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.schedule-image {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    background-size: cover;
    background-position: center;
}

.schedule-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(2px);
    color: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.schedule-title {
    background: linear-gradient(135deg, #b8962e 0%, #f4c430 50%, #fdb931 100%);
    color: white;
    text-align: center;
    padding: 0.8rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.weekly-schedule {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    max-height: 280px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px;
}

/* Custom Scrollbar */
.weekly-schedule::-webkit-scrollbar {
    width: 6px;
}

.weekly-schedule::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.weekly-schedule::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #b8962e, #f4c430);
    border-radius: 10px;
}

.weekly-schedule::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f4c430, #fdb931);
}

.day-schedule {
    background: rgba(40, 40, 40, 0.95);
    border-radius: 8px;
    padding: 0.8rem 0.5rem;
    text-align: center;
    border: 1px solid rgba(244, 196, 48, 0.3);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.day-schedule:hover {
    border-color: rgba(244, 196, 48, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 196, 48, 0.2);
}

.day-header {
    background: linear-gradient(135deg, #b8962e, #f4c430);
    color: white;
    padding: 0.4rem 0.2rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.time-slot {
    font-size: 0.65rem;
    line-height: 1.2;
    margin-bottom: 0.4rem;
    background: rgba(244, 196, 48, 0.1);
    padding: 0.3rem;
    border-radius: 4px;
    font-weight: 500;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(244, 196, 48, 0.2);
    transition: all 0.2s ease;
}

.time-slot:hover {
    background: rgba(244, 196, 48, 0.2);
    border-color: rgba(244, 196, 48, 0.4);
}

.time-slot:last-child {
    margin-bottom: 0;
}

.time-slot strong {
    color: #fdb931;
}

.semaine-label {
    font-size: 0.6rem;
    margin-top: 0.2rem;
    opacity: 0.8;
    color: #f4c430;
}

.booking-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.booking-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 450px;
    width: 100%;
    border: 2px solid rgba(244, 196, 48, 0.2);
}

.booking-card h3 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
    line-height: 1.3;
}

.booking-card p {
    color: #2d2d2d;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: bold;
}

.booking-btn {
    background: linear-gradient(135deg, #b8962e 0%, #f4c430 50%, #fdb931 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}



/* Responsive Design */
@media (max-width: 991px) {
    .schedule-content {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

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

    .weekly-schedule {
        grid-template-columns: repeat(2, 1fr);
        max-height: 350px;
    }

    .schedule-image {
        height: auto;
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .schedule-header h2 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .schedule-content {
        padding: 2rem 1rem;
    }

    .weekly-schedule {
        grid-template-columns: 1fr;
        max-height: 300px;
    }

    .booking-card {
        padding: 2rem 1.5rem;
    }

    .booking-card h3 {
        font-size: 1.5rem;
    }

    .booking-card p {
        font-size: 1.1rem;
    }

    .booking-btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
}

/* End Coach schedule */
/* Default transparent header (for homepage hero) */
.home-page .header-area {
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 999;
    padding: 5px;
}

/* Solid header for other pages */
.contact-page .header-area,
.other-page .header-area {
    background: #04051a;
    position: relative;
    padding: 5px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-member {
        flex-direction: column;
    }

    .member-image {
        min-height: 250px;
    }

    .schedule-content {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .schedule-image {
        height: 350px;
    }

    .weekly-schedule {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .day-schedule {
        padding: 0.6rem 0.4rem;
    }

    .time-slot {
        font-size: 0.6rem;
        padding: 0.25rem;
    }

    .booking-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        padding: 2rem;
    }

    .nav-menu.active {
        display: flex;
    }

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

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

    .hero-section {
        margin-top: 26%;
    }

    .member-info {
        padding: 1.5rem;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

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

    .member-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .schedule-header h2 {
        font-size: 1.8rem;
    }

    .weekly-schedule {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .booking-card h3 {
        font-size: 1.4rem;
    }

    .booking-card p {
        font-size: 1.1rem;
    }
}


