/* ============================================================
   🔹 FRONT PAGE
   Hero, About, Calendario, Paquetes
   ============================================================ */

/* 🔹 HERO */
.hero {
  position: relative;
  width: 100%;
  height: 55vh;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-text {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 600;
}

/* Texto del HERO — tamaño y negrita */
.hero-text p {
  font-size: 28px;
  font-weight: 700; /* negrita fuerte */
  text-shadow: 0 3px 10px rgba(0,0,0,0.55);
}

/* 🔹 ABOUT */
section.about-section {
  background-color: #ECE6DF;
  width: 100%;
  padding: 80px 0;
}

.about {
  max-width: 900px;
  margin: 120px auto;
  text-align: center;
  line-height: 1.8;
  font-size: 15px;
  color: #737373;
  padding: 60px 20px;
}

.about img {
  max-width: 300px;
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto 30px;
}

/* 🔹 Botón "Reservar" en ABOUT */
.about .btn {
  background-color: #2A5287; /* azul fuerte */
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.about .btn:hover {
  background-color: #1e3f6d; /* azul más oscuro */
  transform: translateY(-2px);
}

/* 🔹 CALENDARIO */
.barre-schedule-section {
  background-color: #ECE6DF;
  padding: 100px 20px;
  text-align: center;
}

.barre-schedule-section h2 {
  color: #2A5287;
  font-size: 32px;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

/* Grid de tarjetas */
.barre-schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Flip Cards */
.barre-card {
  perspective: 1000px;
  display: block;
  text-decoration: none;
  color: inherit;
}

.barre-card-inner {
  position: relative;
  width: 100%;
  height: 180px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.barre-card:hover .barre-card-inner {
  transform: rotateY(180deg);
}

.barre-card-front,
.barre-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  background-color: #FFFFFF;
  border: 1px solid #dcdcdc;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.barre-card-front {
  color: #2A5287;
}

.barre-card-back {
  transform: rotateY(180deg);
  color: #737373;
  font-size: 14px;
}

/* 🔹 PAQUETES */
.packages-section {
  background-color: #ECE6DF;
  padding: 100px 20px;
  text-align: center;
}

.packages-section h2 {
  color: #2A5287;
  font-size: 32px;
  margin-bottom: 50px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.package {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.package.highlight {
  border: 2px solid #2A5287;
  background-color: #92B1E7;
  color: white;
}

.hero-text p {
  color: white !important;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.5px;
}


