
h2, h3 {
    color: #333;
}
h4{
  color: white;
  font-size: 1rem;
  font-style: italic;
}
::-webkit-scrollbar {
  width: 12px; 
  height: 12px;
  width: 1rem;
}
::-webkit-scrollbar-track {
  background: var(--secondary-color);
  width: 1.2rem;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border: 2px solid var(--secondary-color); 
  width: 1rem;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(230, 209, 18, 0.8); 
  cursor: pointer; 
}
::-webkit-scrollbar-horizontal {
  height: 10px; 
}
input[type="text"], input[type="password"], textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 20px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

#comentarios {
    border-top: 1px solid #ccc;
    padding-top: 10px;
}
:root{
  --primary-color: rgb(230, 209, 18);
    --secondary-color: #141414;
    --font-family: "Staatliches", serif;
  }
  *{
      margin: 0;
      font-family: "Staatliches", serif;
  }
  body { 
    font-family: Arial, sans-serif; margin: 0; 
    height: auto;
  }
  
  /*Navbar*/
  .nav {
      background-color: #000000;
      width: 100%; /* Ensure full width */
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg stroke='%23C3A00F' stroke-width='100' stroke-opacity='0.2' %3E%3Ccircle fill='%23000000' cx='0' cy='0' r='1800'/%3E%3Ccircle fill='%23330d00' cx='0' cy='0' r='1700'/%3E%3Ccircle fill='%23371900' cx='0' cy='0' r='1600'/%3E%3Ccircle fill='%233d2500' cx='0' cy='0' r='1500'/%3E%3Ccircle fill='%23463000' cx='0' cy='0' r='1400'/%3E%3Ccircle fill='%23503c00' cx='0' cy='0' r='1300'/%3E%3Ccircle fill='%235b4800' cx='0' cy='0' r='1200'/%3E%3Ccircle fill='%23685400' cx='0' cy='0' r='1100'/%3E%3Ccircle fill='%23756000' cx='0' cy='0' r='1000'/%3E%3Ccircle fill='%23836d00' cx='0' cy='0' r='900'/%3E%3Ccircle fill='%23927900' cx='0' cy='0' r='800'/%3E%3Ccircle fill='%23a18600' cx='0' cy='0' r='700'/%3E%3Ccircle fill='%23b09400' cx='0' cy='0' r='600'/%3E%3Ccircle fill='%23c0a100' cx='0' cy='0' r='500'/%3E%3Ccircle fill='%23cfaf00' cx='0' cy='0' r='400'/%3E%3Ccircle fill='%23dfbd00' cx='0' cy='0' r='300'/%3E%3Ccircle fill='%23efcb01' cx='0' cy='0' r='200'/%3E%3Ccircle fill='%23FFD923' cx='0' cy='0' r='100'/%3E%3C/g%3E%3C/svg%3E");
      background-attachment: fixed;
      background-size: cover;
      background: var(--secondary-color );
      height: auto;
      z-index: 1000;
  }
  .nav input {
    background: var(--secondary-color);
    border: none;
    color:white;
    padding: 12px;
    text-align: center;
    margin: 1rem;
    margin-right: 0;
  }
  .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px;
      color: white;
  }
  .btn-primary{
    position: relative;
    background: var(--primary-color);
    border: none;
    padding: 12px 25px;
    transition: ease .3S;
    text-decoration: none;
    color: black; /* Ensure the text color is black */
    font-size: 1.2rem;
    margin-right: 1rem;
  }
  .btn-primary:hover{
    cursor: pointer;
    transform: scale(1.1);
    box-shadow: 1px 1px 10px rgb(109, 107, 10);
    background: black;
    color: var(--primary-color);
  }
  .navbar .nav-enlaces {
      color: white;
      text-decoration: none;
      margin: 0 75px;
      margin-bottom: -1remw;
      font-size: 1.5rem;
      transition: ease .3S;
  }
  .navbar .nav-enlaces:hover {
    color: var(--primary-color);
    text-decoration: none;
    transform: scale(1.4);
  }
  .navbar .logo {
    margin-top: 0.5rem;
      width: 75px;
      filter: drop-shadow(0 0 15px rgb(136, 136, 136));
  }
  @media (max-width: 600px){
    .nav input{
      padding: 7px 2px;
      text-align: center;
      margin: 6px;
      margin-right: 0;
    }
    .nav input::placeholder{
      font-size: 10px;
    }
  .navbar .logo {
    width: 45px;
    margin: 0;
  }
  .navbar a:hover {
    transform: scale(1.1);
  }
  .nav {
    height: auto;
    z-index: 2000;
    width: 100%;
  }
  .btn-primary{
    position: relative;
    border: none;
    padding: 9px 15px;
    transition: ease .3S;
    text-decoration: none;
    color: black; /* Ensure the text color is black */
    font-size: 0.7rem;
    margin-right: 1rem;
  }
  .btn-primary:hover{
    transform: scale(1.1);
  }
  .nav .nav-enlaces {
    font-size: 11px;
    margin: 0 8px;
  }
  }
  @media (min-width: 601px) and (max-width: 1024px){
  
  }
  /*Sections*/
  section{
      text-align: center;
      width: 100%;
      height: auto;
      margin: 0;
      background-color: #161616;
      background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v20h2v2H20v-1.5zM0 20h2v20H0V20zm4 0h2v20H4V20zm4 0h2v20H8V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2z' fill='%23383838' fill-opacity='0.24' fill-rule='evenodd'/%3E%3C/svg%3E");
  }
  h2{
    padding-top: 3rem;
      color: white;
      font-size: 5rem;
      font-style: italic;
      z-index: 1001;
  }
  @media (max-width: 600px){
    h2{
      font-size: 2.6rem;
      padding-top: 2rem;
    }
  }
  
  /*home*/
  .home {
    background-image: url('./Images/background-valhalla.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100vh; 
    text-align: start;
    view-timeline: --scroll;
    justify-content: center;
    align-items: center;
    text-align: center;
    justify-items: center;
    width: 100%;
  }
  .home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8); 
    z-index: 1; 
  }
  .h1 {
    position: relative;
    max-width: 100%;
    top: 26rem;
    left: 0;
    right: 0;
    bottom: 0; 
    z-index: 2; 
    font-size: 10rem;
    color: var(--primary-color);
    letter-spacing: 4px;
    font-style: italic;
    -webkit-animation: text-flicker-in-glow 4s linear both;
    animation: text-flicker-in-glow 4s linear both;
    padding: 0;
    margin: 0;
    top: 15rem;
  }
  .h1:first-child {
    animation: fade-away both linear;
    animation-timeline: --scroll;
    animation-range: exit 20% exit 70%;
    padding: 0;
    margin: 0;
  }
  .h1:last-child {
    animation: 
      scale-up both ease-in-out,
      fade-away both linear;
      animation-timeline: --scroll;
      animation-range:
        exit 0% exit 80%,
        exit 20% exit 60%;
        padding: 0;
        margin: 0;
  }    
  @media (max-width: 600px){
    .home {
      height: 70vh;
      align-items: center;
      justify-content: center;
      text-align: center;
      justify-items: center;
       }
    .h1 {
      font-size: 4rem;
      padding: 0;
      
      margin: 0;
      width: 100%;
    }
    }
  
  @keyframes scale-up {
    to {scale: 1.5;}
  }
  @keyframes fade-away {
    to {opacity: 0;}
  }
  
            /* about */
  .about {
    text-align: center;
    justify-content: center;
    justify-items: center;
    height: auto;
    width: 100%;
  }
  .about .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    justify-items: center;
    align-items: center;
  }
  .about p{
    margin-top: 2rem;
    color: white;
    width: 55%;
    text-align: justify;
    text-align-last:  center;
    font-size: 28px;
  
  }
  
  
  .box{
    width: 500px;
    height: 500px;
    margin: 2rem;
    background-color: var(--secondary-color);
    -webkit-box-shadow: 1px 1px 12px #000;
    box-shadow: 1px 1px 12px #000000;
    -webkit-transform: preserve-3d;
    -ms-transform: preserve-3d;
    transform: preserve-3d;
    -webkit-perspective: 2000px;
    perspective: 2000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #000;
  }
  .box img {
    object-fit: cover;
    width: 500px;
    height: 500px;
  }
  .cover {
    top: 0;
    position: absolute;
    background-color: lightgray;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
    -webkit-box-shadow: 1px 1px 12px #000;
    box-shadow: 1px 1px 12px #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    
  }
  .box:hover {
    box-shadow: 1px 1px 12px var(--primary-color);
  }
  .box:hover .cover {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: rotatey(-80deg);
    -ms-transform: rotatey(-80deg);
    transform: rotatey(-80deg);
  
  }
  .cover p {
    font-size: 20px;
    font-weight: bolder;
  }
  @media (max-width: 600px){
    .about {
      height: auto;
    }
    .about h2 {
      margin-bottom: 2rem;
    }
    .about p{
      font-size: 11px;
      width: 40%;
      margin-top: 0;
    }

    .about #row {
      width: 126px;
      height: 126px;
      margin: 1rem;
    }
    .box img {
      object-fit: cover;
      width: 126px;
      height: 126px;
    }
  }
  @-webkit-keyframes text-flicker-in-glow {
      0% {
        opacity: 0;
      }
      10% {
        opacity: 0;
        text-shadow: none;
      }
      10.1% {
        opacity: 1;
        text-shadow: none;
      }
      10.2% {
        opacity: 0;
        text-shadow: none;
      }
      20% {
        opacity: 0;
        text-shadow: none;
      }
      20.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(37, 36, 17, 0.25);
      }
      20.6% {
        opacity: 0;
        text-shadow: none;
      }
      30% {
        opacity: 0;
        text-shadow: none;
      }
      30.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(37, 36, 17, 0.45), 0 0 60px rgba(37, 36, 17, 0.25);
      }
      30.5% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(37, 36, 17, 0.45), 0 0 60px rgba(37, 36, 17, 0.25);
      }
      30.6% {
        opacity: 0;
        text-shadow: none;
      }
      45% {
        opacity: 0;
        text-shadow: none;
      }
      45.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(37, 36, 17, 0.45), 0 0 60px rgba(37, 36, 17, 0.25);
      }
      50% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(37, 36, 17, 0.45), 0 0 60px rgba(37, 36, 17, 0.25);
      }
      55% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(37, 36, 17, 0.45), 0 0 60px rgba(37, 36, 17, 0.25);
      }
      55.1% {
        opacity: 0;
        text-shadow: none;
      }
      57% {
        opacity: 0;
        text-shadow: none;
      }
      57.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(37, 36, 17, 0.55), 0 0 60px rgba(37, 36, 17, 0.35);
      }
      60% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(37, 36, 17, 0.55), 0 0 60px rgba(37, 36, 17, 0.35);
      }
      60.1% {
        opacity: 0;
        text-shadow: none;
      }
      65% {
        opacity: 0;
        text-shadow: none;
      }
      65.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(37, 36, 17, 0.55), 0 0 60px rgba(37, 36, 17, 0.35), 0 0 100px rgba(37, 36, 17, 0.1);
      }
      75% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(37, 36, 17, 0.55), 0 0 60px rgba(37, 36, 17, 0.35), 0 0 100px rgba(37, 36, 17, 0.1);
      }
      75.1% {
        opacity: 0;
        text-shadow: none;
      }
      77% {
        opacity: 0;
        text-shadow: none;
      }
      77.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(37, 36, 17, 0.55), 0 0 60px rgba(37, 36, 17, 0.4), 0 0 110px rgba(37, 36, 17, 0.2), 0 0 100px rgba(37, 36, 17, 0.1);
      }
      85% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(37, 36, 17, 0.55), 0 0 60px rgba(37, 36, 17, 0.4), 0 0 110px rgba(37, 36, 17, 0.2), 0 0 100px rgba(37, 36, 17, 0.1);
      }
      85.1% {
        opacity: 0;
        text-shadow: none;
      }
      86% {
        opacity: 0;
        text-shadow: none;
      }
      86.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(37, 36, 17, 0.6), 0 0 60px rgba(37, 36, 17, 0.45), 0 0 110px rgba(37, 36, 17, 0.25), 0 0 100px rgba(37, 36, 17, 0.1);
      }
      100% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(37, 36, 17, 0.6), 0 0 60px rgba(37, 36, 17, 0.45), 0 0 110px rgba(37, 36, 17, 0.25), 0 0 100px rgba(37, 36, 17, 0.1);
      }
    }
    
              /* training */
  .training .container{
    display: flex;
    flex-wrap: wrap;
    justify-items: center;
    justify-content: center;
    width: 100%;
  }
  .training h2 {
    margin-bottom: 2rem;
  }
  .training .container #row{
    border: 2px solid white;
    width: 25%;
    height: 80vh;
    margin: 2rem;
  }

  @media (max-width: 600px){
    .training {
      height: auto;
    }
    .training .container #row{
      margin: 0.3rem;
      height: 30vh; 
      padding: 0;
      width: 28%;
    }
  }
  
  /* instalaciones */
  .instalaciones {
    height: auto;
    width: 100%;
  }
  .instalaciones .container .row {
    border: 2px solid white;
    width: 400px;
    height: 400px;
    margin: 1rem;
    transition: ease .3S;
  }
  .instalaciones-img {
    object-fit: cover;
    width: 400px;
    height: 400px;
  }
  .instalaciones .row {
    object-fit: cover;
  }
  .instalaciones .container .row:hover{
    transform: scale(1.1);
    cursor: pointer;
    box-shadow: 0 0 13px var(--primary-color);
  }
  .instalaciones .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem 1rem;  
  }
  .instalaciones .load_videos {
    position: relative;
    background: var(--primary-color);
    border: none;
    padding: 12px 25px;
    transition: ease .3S;
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 2rem;
  }
  .instalaciones .load_videos:hover{
    cursor: pointer;
    transform: scale(1.1);
    box-shadow: 1px 1px 10px rgb(109, 107, 10);
    background: black;
    color: var(--primary-color);
  }
  .Lol {
    padding: 4rem;
  }
  @media (max-width: 600px){
    .instalaciones {
      height: auto;
    }
    .instalaciones .container{
      padding: 2rem 1rem;
      justify-content: space-around;
      justify-items: center;
      align-items: center;
      height: auto;
      background-color: #161616;
      background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v20h2v2H20v-1.5zM0 20h2v20H0V20zm4 0h2v20H4V20zm4 0h2v20H8V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2z' fill='%23383838' fill-opacity='0.24' fill-rule='evenodd'/%3E%3C/svg%3E");
    }
    .instalaciones .container .row{
      width: 100px;
      height:100px;
      margin: 0.4rem 0.4rem;
      object-fit: cover;
    } 
    .instalaciones-img{
      width: 100px;
      height:100px;
    } 
  
  .instalaciones .load_videos {
    margin-bottom: 1rem; 
    }
  .Lol {
    padding: 2rem;
  }
  .instalaciones .load_videos {
    padding: 8px 15px;
    font-size: 14px;
  }
  }
  footer{
    width: 100%;
    color: white;
  }
  .footer-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      align-items: center;
      justify-content: center;
      background-color: #161616;
      color: white;
      padding: 20px;
  }
  
  .social-media, .contact-info {
      margin: 10px 0;
  }
  
  .social-media img {
      width: 30px; /* Tamaño de los iconos */
      margin: 0 10px; /* Espaciado entre iconos */
  }
  
  .trademark {
      margin-top: 20px;
      font-size: 14px;
  }
  @media (max-width: 600px){
  h4{
    font-size: 0.8rem;
    margin: 0;
  }
  p {
    font-size: 0.6rem;
  }
  }
  
  @keyframes show-box {
    from {
      opacity: 0; scale: 10%;
    }
    to {
      opacity: 1; scale: 100%;
    }
  }
  #row {
    view-timeline-name: --reveal;
    animation-name: show-box;
    animation-fill-mode: both;
  
    animation-timeline: --reveal;
    animation-range: entry 25% cover 50%;
  }
  i {
    color: white;
  }
