/* ══════════════════════════════════════════════════
   PURA VIDA CASAS — events.css
   ══════════════════════════════════════════════════ */

.events-page {
  background-color: #fff;
}

/* --- Breadcrumbs --- */
.breadcrumb-wrap {
  padding: 100px 0;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  margin-bottom: 0;
  margin-top: 65px;
}

.breadcrumb-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.breadcrumb-wrap .container {
  position: relative;
  z-index: 2;
}

.breadcrumb-custom {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.breadcrumb-item-custom a {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.breadcrumb-item-custom a:hover {
  color: white;
}

.breadcrumb-item-custom.active {
  color: white;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.breadcrumb-item-custom.divider {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
}

/* --- Hero Section --- */
.events-hero {
  padding: 100px 0 80px;
  background-color: var(--white);
}

.events-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  color: var(--brown);
  font-weight: 500;
  margin-top: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  /* max-width: 900px; */
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.01em;
}

.events-hero-lead {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--text-mid);
  max-width: 800px;
  margin: 30px auto 0;
  line-height: 1.8;
}

/* --- Event Type Cards --- */
.event-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
  cursor: pointer;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.event-card.small {
  height: 380px;
}

.event-img {
  width: 100%;
  height: 100%;
  transition: transform 1.2s ease;
}

.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.3) 100%);
  backdrop-filter: blur(1px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  text-align: center;
  color: white;
  transition: all 0.4s ease;
}

.event-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 600;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
}

.event-overlay p {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 1;
  max-width: 100%;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.event-card:hover {
  transform: translateY(-8px);
}

.event-card:hover .event-img {
  transform: scale(1.1);
}

.event-card:hover .event-overlay {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

/* --- Venue Highlights --- */
.bg-cream {
  background-color: var(--cream);
}

.amenity-list {
  margin-top: 35px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.amenity-item i {
  color: var(--teal);
  font-size: 1.4rem;
}

.amenity-item span {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
}

.venue-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 500px;
}

.vsg-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.vsg-item:first-child {
  grid-row: span 2;
}

/* --- Inquiry Form --- */
.inquiry-card {
  max-width: 900px;
  background: white;
  padding: 60px;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

.form-label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 10px;
}

.form-control,
.form-select {
  padding: 12px 20px;
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  background-color: #fff;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(74, 155, 140, 0.1);
}

.btn-primary-pv {
  background-color: var(--teal);
  color: white;
  border: none;
  padding: 15px 45px;
  border-radius: 5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.btn-primary-pv:hover {
  background-color: var(--teal-dark);
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(74, 155, 140, 0.2);
  color: white;
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .venue-showcase-grid {
    height: 400px;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .inquiry-card {
    padding: 30px;
  }

  .event-card,
  .event-card.small {
    height: 400px;
  }

  .event-overlay h3 {
    font-size: 1.8rem;
  }

  .events-main-title {
    font-size: 2.2rem;
  }
}