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

/* About */
    .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
    .about-text p { font-size: 17px; color: #444; margin-bottom: 20px; }

    @media (max-width: 768px) {
      #about { padding: 50px 20px; }
      .about-content { grid-template-columns: 1fr; }
    }

/* Body */
    body { font-family: Arial, Helvetica, sans-serif; background: #f8f9fb; color: #222; line-height: 1.6; }
    img { display: block; max-width: 100%; height: auto; }
    a { text-decoration: none; }
    ul { list-style: none; }
    section { padding: 60px 80px; }

/* Footer */
    footer { padding: 50px 80px 20px; background: #111; color: white; }
    footer a { color: white; text-decoration: none; }
    footer h3 { font-size: 28px; margin-bottom: 10px; }
    footer h4 { margin-bottom: 15px; color: #c8102e; }
    footer p { color: rgba(255,255,255,0.8); margin-bottom: 8px; }
    footer ul { list-style: none; }
    footer li { margin-bottom: 10px; }
    .footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; max-width: 1300px; margin: 0 auto; }
    .footer-brand { display: flex; align-items: center; gap: 20px; }
    .footer-logo { width: 120px; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.15); margin-top: 40px; padding-top: 20px; text-align: center; }
    .footer-bottom a { color: white; font-weight: 700; transition: .2s; }
    .footer-bottom a:hover { color: #c8102e; }

    @media (max-width:768px) {
      footer { padding: 40px 20px 20px; }
      .footer-content { grid-template-columns: 1fr; gap: 35px; text-align: center; }
      .footer-brand { flex-direction: column; }
      .footer-logo { width: 90px; }
    } 
    
/* Hero */
    #hero { display: grid; grid-template-columns: 48% 52%; align-items: center; min-height: 520px; padding: 50px 60px 20px; background: linear-gradient(135deg,#111 0%,#2a2a2a 100%); overflow: hidden; }
    .hero-content h1 { font-size: clamp(34px,3vw,52px); font-weight: 800; color: white; margin-bottom: 24px; }
    .hero-content p { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 28px; max-width: 620px; }
    .hero-buttons { display: flex; gap: 14px; }
    .hero-image { display: flex; justify-content: center; }
    .hero-image img { width: 100%; max-width: 700px; }
    .primary-button { display: inline-block; padding: 14px 30px; border-radius: 10px; background: #c8102e; color: white; font-weight: 700; transition: 0.3s; }
    .primary-button:hover { transform: translateY(-3px); }
    .secondary-button { display: inline-block; padding: 14px 30px; border-radius: 10px; border: 2px solid white; color: white; font-weight: 700; transition: 0.3s; }
    .secondary-button:hover { background: rgba(255,255,255,0.1); }

    @media (max-width: 768px) {
      #hero { grid-template-columns: 1fr; padding: 40px 20px; text-align: center; gap: 30px; }
      .hero-content p { max-width: 100%; }
      .hero-buttons { flex-direction: column; }
      .primary-button, .secondary-button { width: 100%; text-align: center; }
      .hero-image { order: -1; }
    }  
    
/* Images */
    .about-image img, .training-image img, .coach-image img { width: 100%; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,.15); display: block; }    

/* Join */
    #join { padding: 90px 80px; background: linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)), url("assets/ground.jpg") center/cover; }
    .join-content { max-width: 700px; margin: 0 auto; text-align: center; }
    .join-content h2 { font-size: 46px; color: white; margin-bottom: 20px; }
    .join-content p { font-size: 19px; color: rgba(255,255,255,.9); margin-bottom: 35px; }
    .join-content .primary-button { font-size: 18px; padding: 16px 40px; }

    @media (max-width: 768px) {
      #join { padding: 60px 20px; }
      .join-content h2 { font-size: 34px; }
      .join-content p { font-size: 18px; }
      .join-content .primary-button { width: 100%; }
    }    

/* Navigation */
    nav { display: flex; justify-content: space-between; align-items: center; padding: 18px 60px; background: white; box-shadow: 0 2px 15px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; }
    .logo { display: flex; align-items: center; }
    .logo a { display: flex; align-items: center; text-decoration: none; gap: 14px; }
    .logo img { height: 60px; width: auto; }
    .logo span { color: #c8102e; font-size: 28px; font-weight: 800; }
    .nav-links { display: flex; align-items: center; gap: 30px; }
    .nav-links a { color: #222; font-size: 17px; font-weight: 600; transition: 0.3s; }
    .nav-links a:hover { color: #c8102e; }
    .join-button { background: #c8102e; color: white; padding: 14px 28px; border-radius: 8px; font-weight: 700; transition: 0.3s; }
    .join-button:hover { background: #a20d25; transform: translateY(-2px); }

    @media (max-width: 768px) {
      nav { padding: 15px 20px; flex-direction: column; gap: 15px; }
      .logo img { height: 50px; }
      .logo span { font-size: 22px; text-align: center; }
      .nav-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
      .join-button { width: 100%; text-align: center; }
    }

/* Schedule */
    .schedule-content { display: flex; align-items: center; gap: 35px; max-width: 1200px; margin: 0 auto; padding: 35px; background: white; border-radius: 18px; box-shadow: 0 10px 30px rgba(0,0,0,.08); }
    .schedule-image { flex: 0 0 380px; display: flex; justify-content: center; align-items: center; align-self: center; }
    .schedule-image img { width: 100%; border-radius: 14px; box-shadow: 0 8px 20px rgba(0,0,0,.15); }
    .schedule-text { flex: 0 1 720px; }
    .schedule-text h3 { font-size: 34px; margin-bottom: 15px; color: #222; }
    .schedule-text p { color: #555; margin-bottom: 25px; line-height: 1.7; }

    @media (max-width: 768px) {
      .schedule-content { flex-direction: column; padding: 25px; }
      .schedule-image { flex: auto; width: 100%; }
    }

/* Sections */
    .section-heading { text-align: center; margin-bottom: 30px; }
    .section-heading h2 { font-size: 48px; color: #c8102e; font-weight: 800; }

    @media (max-width: 768px) {
      .section-heading h2 { font-size: 36px; }
    }

/* Sponsors */
    #sponsors { padding: 80px; background: #f8f8f8; }
    .sponsors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
    .sponsor-card { background: white; border-radius: 14px; padding: 30px; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(0,0,0,.08); transition: .25s; }
    .sponsor-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,.12); }
    .sponsor-card img { width: 100%; max-width: 180px; height: auto; object-fit: contain; }

    @media (max-width: 768px) {
        #sponsors { padding: 60px 20px; }
        .sponsors-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
        .sponsor-card { padding: 20px; }
    } 
    
/* Tables */
    table { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 20px; background: #fafafa; border: 1px solid #e5e5e5; border-radius: 12px; overflow: hidden; }
    tbody tr:nth-child(even) { background: #f4f4f4; }
    td { border-bottom: 1px solid #e5e5e5; padding: 14px 16px; }
    th { background: #c8102e; color: white; font-weight: 700; padding: 14px 16px; text-align: left; }
    tr:last-child td { border-bottom: none; }

    @media (max-width: 768px) {
      table { font-size: 14px; }
      td, th { padding: 8px 4px; }
    }    

/* Team */
    .team-card { text-align: center; }
    .team-card h3 { font-size: 22px; color: #222; margin-top: 18px; }
    .team-card img { width: 100%; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,.15); }
    .team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; margin-top: 30px; }
    .team-grid-coaches { grid-template-columns: repeat(3,1fr); max-width: 900px; margin: 30px auto 0; }
    .team-text { max-width: 850px; margin: 0 auto 30px; }
    .team-text p { margin: 0; text-align: center; }
    
@media (max-width: 768px) {
      .team-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
      .team-card h3 { font-size: 18px; }
    }    

/* Training */
    .training-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
    .training-text h3 { font-size: 32px; margin-bottom: 20px; color: #222; }
    .training-text p { margin-bottom: 20px; }
    .training-text ul { margin-bottom: 30px; }
    .training-text li { margin-bottom: 10px; }

    @media (max-width: 768px) {
      #training { padding: 50px 20px; }
      .training-content { grid-template-columns: 1fr; }
    }

