/* ============================================
   Home Page Styles - Krachtig Succes Hotel & Casino
   ============================================ */

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  background: url('/assets/images/hero-lobby.webp') center/cover no-repeat;
  border-bottom-left-radius: var(--radius-2xl);
  border-bottom-right-radius: var(--radius-2xl);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 26, 0.2) 0%,
    rgba(10, 15, 26, 0.65) 60%,
    rgba(10, 15, 26, 0.85) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 880px;
  text-align: center;
  margin: 0 auto;
}

.hero .tagline {
  font-size: var(--font-size-lg);
  color: var(--color-gray-200);
}

.hero-ctas {
  margin-top: var(--space-6);
  display: inline-flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.search-panel {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-3);
  background: rgba(36, 41, 56, 0.85);
  padding: var(--space-3);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-md);
}

.section + .section {
  border-top: 1px solid rgba(201, 169, 97, 0.1);
}

.media-figure img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.gallery-grid figure img {
  border-radius: var(--radius-lg);
}

/* Utilities for responsive order */
@media (min-width: 1025px) {
  .order-2-desktop { order: 2; }
}

/* Newsletter form tweaks */
#newsletter-form .items-end { align-items: end; }

/* Booking form spacing in card */
#booking-form .items-end { align-items: end; }
