/* Reset et base */
:root {
    --primary: #b70000;
    --primary-dark: #900000;
    --secondary: #333333;
    --accent: #d4af37;
    --light: #f5f5f5;
    --dark: #222222;
    --grey: #777777;
    --light-grey: #eeeeee;
    --font-main: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-heading: 'Noto Serif', Georgia, 'Times New Roman', Times, serif;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  ul {
    list-style: none;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Typographie */
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--secondary);
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  p {
    margin-bottom: 1.5rem;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
  }
  
  .section-title:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
  }
  
  .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--grey);
    font-size: 1.1rem;
  }
  
  /* Composants */
  .btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: white;
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
  }
  
  .btn-secondary {
    background-color: var(--secondary);
    color: white;
  }
  
  .btn-secondary:hover {
    background-color: #444;
    color: white;
  }
  
  .btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
  }
  
  .btn-outline:hover {
    background-color: var(--primary);
    color: white;
  }
  
  /* Header et Navigation */
  .site-header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
  }
  
  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }
  
  .logo img {
    height: 60px;
    width: auto;
  }
  
  .main-nav {
    display: flex;
    align-items: center;
  }
  
  .nav-list {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
  }
  
  .nav-link:hover, 
  .nav-link.active {
    color: var(--primary);
    background-color: rgba(183, 0, 0, 0.05);
  }
  
  .nav-link.external {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .nav-link.external:after {
    content: '↗';
    font-size: 0.9em;
  }
  
  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
  }
  
  .mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 5px 0;
    transition: var(--transition);
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    min-height: 550px;
    background-color: #f9f9f9;
    position: relative;
  }
  
  .hero-content {
    flex: 1;
    padding: 60px 20px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    color: var(--grey);
  }
  
  .hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
  }
  
  .hero-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* Sections */
  section {
    padding: 80px 0;
  }
  
  .about {
    background-color: white;
  }
  
  .about-content {
    display: flex;
    gap: 40px;
    align-items: center;
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  .disciplines {
    background-color: #f9f9f9;
  }
  
  .disciplines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .discipline-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .discipline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  .discipline-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  
  .discipline-card h3 {
    padding: 20px 20px 10px;
  }
  
  .discipline-card p {
    padding: 0 20px 20px;
    color: var(--grey);
  }
  
  .discipline-card .btn {
    margin: 0 20px 20px;
  }
  
  .why-us {
    background-color: var(--dark);
    color: white;
  }
  
  .why-us .section-title {
    color: white;
  }
  
  .why-us .section-title:after {
    background-color: var(--accent);
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .feature {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
  }
  
  .feature:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .feature-icon {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: var(--accent);
  }
  
  .feature h3 {
    color: white;
    margin-bottom: 15px;
  }
  
  .feature p {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .pricing {
    background-color: #f9f9f9;
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .pricing-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
  }
  
  .pricing-card h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-grey);
  }
  
  .pricing-list {
    margin-bottom: 30px;
  }
  
  .pricing-list li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
  }
  
  .schedule h4 {
    margin-top: 20px;
    margin-bottom: 15px;
  }
  
  .schedule ul li {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
  }
  
  .schedule ul li span {
    color: var(--primary);
    font-weight: 500;
  }
  
  .cta-box {
    background-color: var(--primary);
    color: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
  }
  
  .cta-box h3 {
    color: white;
    margin-bottom: 15px;
  }
  
  .cta-box p {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .cta-box .btn {
    background-color: white;
    color: var(--primary);
  }
  
  .cta-box .btn:hover {
    background-color: var(--accent);
    color: var(--dark);
  }
  
  .location {
    background-color: white;
  }
  
  .location-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .address-box {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 500px;
    width: 100%;
  }
  
  .address-box h3 {
    margin-bottom: 15px;
  }
  
  .address-box address {
    margin-bottom: 15px;
    font-style: normal;
  }
  
  /* Page intérieures */
  .page-header {
    background-color: var(--dark);
    color: white;
    padding: 60px 0;
    text-align: center;
  }
  
  .page-header h1 {
    color: white;
    margin-bottom: 1rem;
  }
  
  .page-header p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
  }
  
  /* Page Équipe */
  .team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
  }
  
  .team-members {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  
  .team-member {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  .team-member.featured {
    background-color: rgba(183, 0, 0, 0.05);
    border: 1px solid rgba(183, 0, 0, 0.1);
  }
  
  .member-image {
    height: 100%;
  }
  
  .member-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
  .member-info {
    padding: 30px;
  }
  
  .member-intro {
    margin-bottom: 30px;
    color: var(--grey);
    font-size: 1.1rem;
  }
  
  .qualifications-group {
    margin-bottom: 30px;
  }
  
  .qualifications-group h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  
  .qualifications {
    list-style: disc;
    padding-left: 20px;
  }
  
  .qualifications li {
    margin-bottom: 8px;
  }
  
  /* Page Taiji Tanglang */
  .art-intro {
    margin-bottom: 0;
  }
  
  .art-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  .art-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  .history-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .master-image {
    margin-top: 30px;
    text-align: center;
  }
  
  .master-image img {
    border-radius: 8px;
    margin: 0 auto;
    box-shadow: var(--shadow);
  }
  
  .caption {
    margin-top: 10px;
    color: var(--grey);
    font-style: italic;
  }
  
  .techniques-content {
    margin-top: 40px;
  }
  
  .techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }
  
  .technique-group {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  
  .technique-group h4 {
    margin-bottom: 15px;
    color: var(--primary);
  }
  
  .technique-group ul {
    list-style: disc;
    padding-left: 20px;
  }
  
  .technique-group li {
    margin-bottom: 10px;
  }
  
  .weapons {
    margin-top: 40px;
  }
  
  .weapons-list {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: var(--shadow);
  }
  
  .weapons-list ul {
    columns: 2;
    column-gap: 30px;
    list-style: disc;
    padding-left: 20px;
  }
  
  .weapons-list li {
    margin-bottom: 10px;
    break-inside: avoid;
  }
  
  .children-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  .children-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  .children-text ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
  }
  
  .children-schedule {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
  }
  
  .children-schedule h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
  }
  
  .children-schedule ul {
    list-style: none;
    padding-left: 0;
  }
  
  .join-us {
    background-color: var(--primary);
    color: white;
    text-align: center;
  }
  
  .join-us h2 {
    color: white;
  }
  
  .join-us p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 30px;
  }
  
  .join-us .btn {
    background-color: white;
    color: var(--primary);
  }
  
  .join-us .btn:hover {
    background-color: var(--accent);
    color: var(--dark);
  }
  
  /* Page Sanda */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .benefit-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
  }
  
  .benefit-card h3 {
    margin-bottom: 10px;
  }
  
  .techniques-grid {
    margin-top: 30px;
  }
  
  .technique-card {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  
  .technique-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
  }
  
  .comparison-content,
  .gateway-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .comparison-list,
  .gateway-list {
    list-style: disc;
    padding-left: 20px;
    margin: 20px 0;
  }
  
  .comparison-list li,
  .gateway-list li {
    margin-bottom: 10px;
  }
  
  .schedule-content {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .schedule-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  
  .schedule-card h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-grey);
  }
  
  .schedule-list {
    margin-bottom: 25px;
  }
  
  .schedule-list li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
  }
  
  .price-info {
    background-color: rgba(183, 0, 0, 0.05);
    padding: 15px;
    border-radius: 4px;
  }
  
  .price-info p {
    margin-bottom: 10px;
  }
  
  .price-info ul {
    list-style: disc;
    padding-left: 20px;
  }
  
  .price-info li {
    margin-bottom: 5px;
  }
  
  /* Page 404 */
  .error-page {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .error-content h1 {
    font-size: 6rem;
    color: var(--primary);
    margin-bottom: 0;
  }
  
  .error-content h2 {
    margin-bottom: 20px;
  }
  
  .error-content p {
    margin-bottom: 30px;
  }
  
  /* Footer */
  .site-footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-logo {
    text-align: center;
  }
  
  .footer-logo img {
    margin: 0 auto 20px;
    height: 80px;
    width: auto;
  }
  
  .footer-logo h3 {
    color: white;
    margin-bottom: 5px;
  }
  
  .footer-logo p {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .contact-info h4,
  .horaires h4 {
    color: white;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .contact-info p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .horaires ul {
    margin-bottom: 20px;
  }
  
  .horaires li {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .horaires li span {
    color: var(--accent);
    font-weight: 500;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    h1 {
      font-size: 2.2rem;
    }
    
    h2 {
      font-size: 1.8rem;
    }
    
    .hero {
      flex-direction: column;
      min-height: auto;
    }
    
    .hero-content {
      padding: 60px 20px 30px;
    }
    
    .hero-image {
      height: 300px;
    }
    
    .hero-image img {
      position: static;
      height: 100%;
      object-fit: cover;
    }
    
    .about-content,
    .art-content,
    .children-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .about-content {
      flex-direction: column;
    }
    
    .about-text {
      order: 1;
      width: 100%;
    }
    
    .about-image {
      order: 2;
      width: 100%;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
    }
    
    .footer-logo {
      margin-bottom: 20px;
    }
    
    .team-member {
      grid-template-columns: 1fr;
    }
    
    .member-image {
      max-height: 400px;
    }
  }
  
  @media (max-width: 768px) {
    section {
      padding: 60px 0;
    }
    
    .mobile-menu-toggle {
      display: block;
    }
    
    .nav-list {
      position: fixed;
      top: 90px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 90px);
      flex-direction: column;
      background-color: white;
      padding: 20px;
      transition: var(--transition);
      z-index: 1000;
      box-shadow: var(--shadow);
      align-items: stretch;
    }
    
    .nav-list.show {
      left: 0;
    }
    
    .nav-link {
      padding: 15px;
      width: 100%;
      text-align: center;
      justify-content: center;
    }
    
    .footer-info {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .weapons-list ul {
      columns: 1;
    }
  }
  
  /* Icônes pour les éléments sans image */
  .icon-medal:before,
  .icon-group:before,
  .icon-star:before,
  .icon-coordination:before,
  .icon-speed:before,
  .icon-strength:before,
  .icon-cardio:before,
  .icon-reflex:before,
  .icon-mental:before {
    font-family: Arial, sans-serif;
    display: inline-block;
  }
  
  .icon-medal:before { content: '🏅'; }
  .icon-group:before { content: '👥'; }
  .icon-star:before { content: '⭐'; }
  .icon-coordination:before { content: '🤹'; }
  .icon-speed:before { content: '⚡'; }
  .icon-strength:before { content: '💪'; }
  .icon-cardio:before { content: '❤️'; }
  .icon-reflex:before { content: '⚡'; }
  .icon-mental:before { content: '🧠'; }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .hero,
  .section-title,
  .about-content,
  .discipline-card,
  .feature,
  .pricing-card,
  .team-member,
  .art-content,
  .benefit-card,
  .technique-card {
    animation: fadeIn 0.8s ease-in-out;
  }
  
  /* Polices */
  @import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&family=Noto+Serif:wght@400;500;600;700&display=swap');