/* Fondo con imagen borrosa elegante */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
   background: url('HAMBURGOOOO.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #f4f4f4;
  position: relative;
}

/* Capa oscura y desenfocada encima del fondo */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(6px);
  z-index: -1;
}

/* Contenedor principal */
.contenido {
  max-width: 1000px;
  margin: auto;
  padding: 50px 20px;
  text-align: center;
}

/* Título principal */
h1 {
  font-size: 3.5rem;
  margin-bottom: 40px;
  color: #f9c846;
  text-shadow: 2px 2px 10px #000;
}

/* Secciones con tarjetas */
.tarjeta {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Subtítulos */
h2 {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 20px;
}

/* Texto normal */
p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e0e0e0;
}

/* Galería de imágenes */
img {
  width: 240px;
  max-width: 100%;
  border-radius: 14px;
  margin: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Enlaces */
a {
  color: #9bdfff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: inline-block;
  margin-bottom: 10px;
}

a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Divs internos de secciones */
section div {
  margin-top: 20px;
}
