/* Ideas */
/* Color botones vino
toques dorados en los marcos
bordes redondeados en cards y botones
 */








/* 📌 Fuente elegante */
body {
    font-family: "Playfair Display", serif;
    background: #f4f1ea; /* fondo crema suave */
    color: #333;
    overflow-x: hidden;
}
/* Section Hero */
.hero-image {
    position: relative;
    display: inline-block;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 8px rgba(0,0,0,0.7);
}

/* Cartas 

/* Footer */
.footer {
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #ddd;
}


/* Animaciones Varias */


/* 📌 Animaciones de aparición */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ✨ Hero Text */
.hero-text {
    animation: fadeInUp 2s ease forwards;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* 🪄 Animación para tarjetas */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.alojamiento-img {
  height: 220px;        /* misma altura para todas */
  width: 100%;
  object-fit: cover;
}

/* Card contenedora Drive */
.drive-card {
  max-width: 1200px;   /* más ancho */
  margin: 0 auto;
  border-radius: 20px;
  padding: 16px;
}

/* Iframe Drive */
.drive-folder {
  width: 100%;
  height: 650px;       /* más alto */
  border: 0;
}

/* Desktop grande */
@media (min-width: 1200px) {
  .drive-folder {
    height: 750px;
  }
}

/* Móvil */
@media (max-width: 768px) {
  .drive-folder {
    height: 420px;
  }
}
