/* Fondo elegante con imagen difuminada */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: url('leipzigfondo.jpeg') no-repeat center center fixed;
  background-size: cover;
  color: #f5f5f5;
  text-align: center;
  position: relative;
}

/* Capa semitransparente sobre fondo para legibilidad */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: -1;
}

/* Título principal */
h1 {
  font-size: 3em;
  margin-top: 40px;
  color: #ffe164;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Secciones tipo tarjeta */
section {
  margin: 50px auto;
  max-width: 850px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}

/* Subtítulos */
h2 {
  font-size: 2em;
  margin-bottom: 15px;
  color: #ffd95c;
}

/* Párrafos */
p {
  font-size: 1.2em;
  color: #e8e8e8;
  line-height: 1.6;
  margin: 0 15px 20px;
}

/* Imágenes */
img {
  width: 250px;
  height: auto;
  margin: 12px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.2);
}

/* Enlaces */
a {
  color: #4ecbff;
  text-decoration: none;
  font-weight: bold;
  display: block;
  font-size: 1.1rem;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

a:hover {
  color: #aeefff;
}
