/* === HERO === */
.hero {
  height: 50vh;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 13, 20, 0.55) 0%, rgba(10, 13, 20, 0.75) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-replay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s var(--ease-fluid), transform 0.4s var(--ease-fluid), background 0.3s;
  pointer-events: none;
  z-index: 5;
}

.hero-replay.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-replay:hover {
  background: rgba(200, 169, 126, 0.3);
}

.hero-blob {
  position: absolute;
  border-radius: var(--radius-organic-1);
  filter: blur(80px);
  z-index: 2;
  animation: blobMorph 20s var(--ease-fluid) infinite, blobPulse 8s ease-in-out infinite;
}

.hero-blob-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(200,169,126,0.12), transparent 70%);
  top: 15%;
  right: 20%;
  animation-delay: -2s;
}

.hero-blob-2 {
  width: 220px;
  height: 220px;
  background: radial-gradient(ellipse, rgba(200,169,126,0.08), transparent 70%);
  bottom: 20%;
  left: 10%;
  animation-delay: -10s;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-text);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: 40px;
}

/* === RESERVATION SECTION === */
.reservation-container {
  max-width: 800px;
  margin: 100px auto;
  padding: 0 48px;
}

.reservation-heading {
  font-family: 'Cinzel', serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin-bottom: 16px;
  text-align: center;
}

.reservation-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* === FORM (Glass card) === */
.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 48px;
  border-radius: var(--radius-card);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

@supports not (backdrop-filter: blur(1px)) {
  .reservation-form {
    background: rgba(10, 13, 20, 0.85);
  }
}

/* === INFO SECTION === */
.info-section {
  max-width: 800px;
  margin: 0 auto 120px;
  padding: 0 48px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.info-block {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--color-gold);
  transition: border-color var(--duration-normal) var(--ease-fluid);
}

.info-block:hover {
  border-left-color: var(--color-gold-light);
}

.info-block h3 {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.info-block p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.info-block a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--duration-fast);
  text-decoration: none;
}

.info-block a:hover {
  color: var(--color-gold);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero h1 { font-size: 40px; }
  .reservation-container { padding: 0 32px; }
  .reservation-form { padding: 32px; }
  .info-section { padding: 0 32px; }
}

@media (max-width: 560px) {
  .hero { height: 40vh; min-height: 300px; }
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 9px; letter-spacing: 3px; }
  .hero-blob { display: none; }

  .reservation-container { padding: 0 20px; margin: 60px auto; }
  .reservation-heading { font-size: 28px; }
  .reservation-subtitle { font-size: 13px; }
  .reservation-form { padding: 24px; }

  .info-section { padding: 0 20px; margin-bottom: 80px; }
  .info-grid { grid-template-columns: 1fr; gap: 30px; }
  .info-block h3 { font-size: 18px; }
}
