/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #0f172a;
  color: white;
}

h2 {
  font-family: "Libre Baskerville", serif;
}

/* HEADER */
.header {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  height: 60px;
}

/* CINTA */
.cinta {
  position: fixed;
  right: 0;
  top: 0;
  width: 50px;
  height: 100vh;
  background-image: url("imgs/cinta.jpg");
  background-repeat: repeat;
  opacity: 0.6;
  z-index: 1;
}

/* MAIN */
.main {
  padding: 20px 40px;
  max-width: 1200px;
  margin: auto;
}

.title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-family: "Playfair Display", serif;
}

/* LISTA */
.list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list-item {
  display: flex;
  gap: 20px;
  background: #1e293b;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
}

.list-item:hover {
  transform: translateY(-5px);
}

.list-item img {
  width: 250px;
  height: 180px;
  object-fit: cover;
}

/* CONTENIDO */
.list-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.list-content h2 {
  color: #38bdf8;
  margin-bottom: 10px;
}

.list-content p {
  opacity: 0.8;
  margin-bottom: 10px;
}

/* BOTÓN */
.btn_reservar {
  margin-top: 15px;
  padding: 10px 20px;
  background: #38bdf8;
  color: black;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.btn_reservar:hover {
  opacity: 0.9;
}

.btn_reservar:active {
  transform: scale(0.98);
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  background: black;
  margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .list-item {
    flex-direction: column;
  }

  .list-item img {
    width: 100%;
    height: 200px;
  }
}

#btn_estado {
  position: fixed;
  top: 15px;
  left: 15px;

  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: none;

  font-size: 1.3rem;
  text-decoration: underline;
  cursor: pointer;
  z-index: 200;

  transition: 0.2s;
}

#btn_estado:hover {
  color: rgba(255, 255, 255, 0.8);
}
