:root {
    --primary: #00c4ff;
    --secondary: #2ecc71;
    --dark: #0a0a0a;
    --darker: #050505;
    --text: #ffffff;
    --text-secondary: #b3b3b3;
    --accent: #ff4d4d;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }

  body {
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
  }

  .hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
      url('https://res.cloudinary.com/dlbujedgz/image/upload/v1730477871/cancha_uzcjpr.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }

  .menu-toggle {
    display: none;
    /* Ocultarlo por defecto */
  }

  @media (max-width: 768px) {
    .nav-links {
      display: flex;
      /* Cambiar a flex para que el menú se acomode en columna si es necesario */
      flex-direction: column;
      /* Colocarlo en columna */
      position: absolute;
      /* Hacer el menú absoluto para que no ocupe espacio */
      top: 60px;
      /* Ajustar según sea necesario */
      left: 0;
      width: 100%;
      background: rgba(5, 5, 5, 0.95);
      display: none;
      /* Mantenerlo oculto */
    }

    .nav-links.active {
      display: flex;
      /* Mostrar el menú cuando sea necesario */
    }

    .menu-toggle {
      display: block;
      /* Mostrar el ícono de menú en móviles */
      color: #ffffff;
      font-size: 1.5rem;
      cursor: pointer;
    }
  }

  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
  }

  .nav-content {

    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 2rem;
  }


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

  .nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 50;
    transition: color 0.3s ease;
    padding: 0 2rem;
    font-size: 30px;
  }

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


  @keyframes float {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-20px);
    }
  }

  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2rem;
  }

  .cta-button {
    background: var(--primary);
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 196, 255, 0.2);
  }

  .section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

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

  .facility-card {
    background: var(--darker);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .facility-card:hover {
    transform: translateY(-10px);
  }

  .facility-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }

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

  .contact-info {
    background: var(--darker);
    border-radius: 15px;
    padding: 2rem;
  }

  .map-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
  }

  .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }

  .social-link {
    color: var(--text);
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }

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

  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }

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

    .section {
      padding: 3rem 1rem;
    }
  }