@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Inter:wght@300;400;600&display=swap');

:root{
  --gold: #e6c37a;
  --text: #f5f0e6;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #000;
}

/* Full-screen gate background */
@media (max-height: 750px) {
.gate {
  min-height: 100vh;
  width: 100%;
  display: grid;
  place-items: center;
  position: relative;

  /* 🔥 Make sure this path matches where your image is */
  background-image: url("/images/arcolia-gate.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-size: 120%;
  background-position: center 30%;

  filter: brightness(1.05) saturate(1.08);
}

/* Dark cinematic veil for readability */
.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.45) 65%,
    rgba(0,0,0,0.60) 100%
  );
}

/* Center panel (glass + stone vibe) */
.panel {
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(720px, 92vw);
  padding: 38px 28px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.30);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.55);
}

.panel h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4rem);
  letter-spacing: 1.5px;
  margin: 0 0 10px 0;
  color: var(--gold);
  text-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.tagline {
  margin: 0 0 18px 0;
  font-size: 1.05rem;
  opacity: 0.92;
}

.intro {
  margin: 0 0 26px 0;
  line-height: 1.65;
  font-size: 1.02rem;
  opacity: 0.92;
}

/* Real overlay button (not baked into image) */
.enter-btn {
  background: linear-gradient(135deg, #d6b46d, #8f6b2d);
  border: none;
  border-radius: 14px;
  padding: 16px 42px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  color: #0b0b0b;
  box-shadow: 0 18px 45px rgba(214,180,109,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.enter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(214,180,109,0.55);
  filter: brightness(1.05);
}

.hint {
  margin: 18px 0 0 0;
  font-size: 0.92rem;
  opacity: 0.75;
}

/* Ensure no scrolling unless screen is tiny */
@media (max-height: 650px) {
  .panel { padding: 28px 22px; }
  .intro { display: none; } /* hides intro on very short screens */
}
