/*
Theme Name: Intelecta Consultoría Navegación Desplegable
Description: Tema con logo grande, menú superior y contenido desplegable
Version: 2.1
*/

html {
  scroll-behavior: smooth;
  background-image: url('./assets/puzzle-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

body {
  margin: 0;
  background: transparent;
  color: white;
  font-size: 1.2rem;
  line-height: 1.9;
  font-family: sans-serif;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 51, 102, 0.9);
  padding: 10px 0;
  z-index: 1000;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
}

nav a:hover {
  text-decoration: underline;
}

section {
  display: none;
  padding: 4rem 2rem 2rem;
  max-width: 1000px;
  margin: auto;
  animation: fadeIn 0.5s ease-in-out;
}

section.active {
  display: block;
}

#inicio {
  display: block;
  text-align: center;
  padding-top: 6rem;
}

#inicio img {
  max-width: 1200px;
}

a.button {
  display: inline-block;
  margin-top: 10px;
  margin-right: 10px;
  padding: 10px 20px;
  background-color: #ffffff;
  color: #003366;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
