/* Fondo con imagen y desenfoque */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  color: #fff;
  background: url('COLOGNEEEEE.webp') no-repeat center center fixed;
  background-size: cover;
  position: relative;
  overflow-x: hidden;
}

/* Capa oscura con desenfoque encima del fondo */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: -1;
}

/* Encabezado principal */
h1 {
  font-size: 3rem;
  margin: 30px 0 10px;
  color: #ffd700;
  text-shadow: 2px 2px 8px #000;
}

/* Subtítulos */
h2 {
  font-size: 2rem;
  margin-top: 40px;
  border-bottom: 2px solid #555;
  padding-bottom: 10px;
  color: #eee;
}

/* Párrafos */
p {
  max-width: 700px;
  margin: 10px auto 40px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #ddd;
}

/* Secciones tipo tarjeta */
section {
  margin: 60px auto;
  max-width: 900px;
  padding: 30px 20px;
  background: rgba(20, 20, 20, 0.85);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

/* Imágenes */
section img {
  width: 250px;
  height: auto;
  margin: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

section img:hover {
  transform: scale(1.05);
}

/* Contenedores internos */
section div {
  margin-bottom: 30px;
}

/* Enlaces */
section a {
  display: inline-block;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #80caff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s, text-shadow 0.3s;
}

section a:hover {
  color: #ffcc00;
  text-shadow: 0 0 5px #fff;
}
