/* Reset de estilos básicos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Catamaran', sans-serif;
  background: linear-gradient(45deg, #665FEE, #27C2DE); /* Gradiente moderno */
  min-height: 100vh;
  color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  transition: background-color 0.5s ease;
}

/* Menú de navegación */
#topMenu {
  background: rgba(0, 0, 0, 0.7); /* Fondo transparente oscuro */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1em 0;
  z-index: 10;
}

#topMenu .inner {
  display: flex;
  justify-content: center;
}

#topMenu nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

#topMenu nav a {
  padding: 1em;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

#topMenu nav a:hover {
  color: #FFF;
  border-bottom: 2px solid #FFF;
}

/* Sección de introducción (Hero) */
#intro {
  background: url('hero-bg.jpg') no-repeat center center/cover;
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#intro h1 {
  font-size: 3rem;
  margin-bottom: 1em;
}

#intro p {
  font-size: 1.25rem;
}

/* Sección de contenido adicional */
.wrapper.style2 {
  background: rgba(0, 0, 0, 0.6);
  padding: 2em 0;
  color: #fff;
}

.wrapper .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.7);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 2em 0;
}

footer p {
  margin: 0;
  font-size: 1rem;
}

/* Media Queries */
@media (max-width: 768px) {
  #topMenu nav ul {
    flex-direction: column;
  }

  #intro h1 {
    font-size: 2.5rem;
  }

  #intro p {
    font-size: 1rem;
  }
}
