/* GENERAL */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Georgia', serif;
  overflow-x: hidden;
}

/* ENCABEZADO */
h1 {
  font-size: 2.2rem;
  letter-spacing: 4px;
  font-weight: 300;
}

.logo {
  max-width: 50px;
}

@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  .logo { max-width: 40px; }
}

/* VIDEO */
.video-container {
  width: 100%;
  height: 85vh;
  position: relative;
  overflow: hidden;
}

.video-desplazado {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0; left: 0;
}

/* CARRUSEL */
.habitacion-img {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

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

/* SOCIAL ICONS */
.social-icon {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .social-icon {
    width: 60px;
    height: 60px;
  }
}
