* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #eee;
  line-height: 1.6;
  font-size: 16px;
}

/* Hero */
header.hero {
  position: relative;
  background: url('../assets/interior1.jpg') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 12px;
}

.logo {
  max-width: 120px;
  margin-bottom: 15px;
}

h1 {
  font-size: 2em;
  color: #fff;
  margin-bottom: 0.5em;
}

p {
  font-size: 1.1em;
  color: #ccc;
}

.language-btn {
  background: #ffc107;
  border: none;
  padding: 8px 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
}

.navbar {
  background-color: #222;
  padding: 10px 0;
  text-align: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.navbar a:hover {
  color: #ffc107;
}

/* Sections */
section {
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.price-list {
  list-style: none;
  padding: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  background: #222;
  margin: 10px 0;
  padding: 12px 20px;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  transition: background 0.3s ease;
}

.price-list li:hover {
  background-color: #333;
}

.map-container iframe {
  width: 100%;
  border-radius: 12px;
}

footer.footer {
  background: #000;
  text-align: center;
  padding: 20px;
  color: #aaa;
  font-size: 14px;
}

/* ✅ BOTONES FLOTANTES NUEVOS */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #333;
  color: white;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.floating-btn:hover {
  filter: brightness(1.1);
}

.floating-btn.reservar {
  background-color: #ff9800;
}

.floating-btn.facebook {
  background-color: #1877f2;
}

.floating-btn.whatsapp {
  background-color: #25d366;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .price-list li {
    flex-direction: column;
    align-items: center;
  }

  .navbar ul {
    flex-direction: column;
    gap: 15px;
  }

  header.hero {
    height: 70vh;
  }

  h1 {
    font-size: 1.5em;
  }

  .floating-buttons {
    right: 15px;
    bottom: 15px;
  }
}
