/* Fondo con imagen desenfocada y capa oscura */
body {
  margin: 0;
  padding: 20px;
  font-family: Arial, sans-serif;
  background: url('FONDO DRESDE.jpeg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  text-align: center;
  position: relative;
}

/* Capa oscura y difuminada encima del fondo */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  z-index: -1;
}

/* Título principal */
h1 {
  font-size: 3rem;
  margin-top: 30px;
  color: #ffdd57;
  text-shadow: 2px 2px 6px #000;
}

/* Secciones con estilo de tarjeta */
section {
  margin: 50px auto;
  padding: 25px;
  max-width: 900px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

/* Subtítulos */
h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ffd95c;
}

/* Imágenes estilizadas */
img {
  width: 300px;
  height: auto;
  margin: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

/* Enlaces dentro de h3 */
h3 a {
  color: #00cfff;
  text-decoration: none;
  transition: color 0.3s ease;
}

h3 a:hover {
  color: #aef5ff;
  text-decoration: underline;
}
