/* ============================================
   MZ TAKEOVER — style.css
   Black. Minimal. Massive BERLIN.
   ============================================ */

:root {
  --bg: #080808;
  --text-main: #F2F2F2;
  --text-secondary: #8A8A8A;
  --border: #2A2A2A;
  --btn-bg: #F2F2F2;
  --btn-text: #080808;
  --error: #E4574C;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
/*
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
*/
}

.body_img {
  background:
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
		url("images/berghain_background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



/* ---------- background texture ---------- */

.glow {
  position: fixed;
  top: 28%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
  z-index: 0;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* ---------- layout ---------- */

.wrap {
  position: relative;
  z-index: 2;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 24px 24px;
  max-width: 720px;
  margin: 0 auto;

}


.brand {
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--text-secondary);
  font-weight: 600;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0 32px;
  text-align: left;
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 0.92;
  margin-bottom: 20px;
}

.wake-up {
  font-size: clamp(28px, 8vw, 48px);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-main);
}

.berlin {
  font-size: clamp(72px, 22vw, 168px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.berlin .dot {
  color: var(--text-main);
}

.coming-soon {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 20px;
}

.tagline {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 340px;
  line-height: 1.5;
  margin-bottom: 28px;
}

/* ---------- form ---------- */

.signup-form {
  max-width: 420px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.field-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px;
  background: rgba(255,255,255,0.02);
}

@media (min-width: 520px) {
  .field-row {
    flex-direction: row;
    align-items: center;
  }
}

.email-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-main);
  font-size: 16px;
  padding: 14px 12px;
  font-family: inherit;
}

.email-input::placeholder {
  color: var(--text-secondary);
}

.enter-btn {
  background: var(--btn-bg);
  color: var(--btn-text);
  border: none;
  border-radius: 3px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  padding: 16px 24px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.enter-btn:hover {
  opacity: 0.85;
}

.enter-btn:active {
  transform: scale(0.98);
}

.enter-btn:disabled {
  opacity: 0.6;
  cursor: default;
}

.form-message {
  min-height: 18px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 10px;
}

.form-message.is-error {
  color: var(--error);
}

.privacy-note {
  font-size: 11px;
  color: var(--text-secondary);
  opacity: 0.7;
  line-height: 1.5;
  margin-top: 14px;
  max-width: 380px;
}

/* ---------- success state ---------- */

.success-state {
  max-width: 420px;
}

.access-granted {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.success-copy {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- event details ---------- */

.event-details {
  margin-top: 28px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}

.current-tour {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}
 
.current-tour a {
  color: var(--text-main);
  text-decoration: underline;
  text-underline-offset: 2px;
}
 
.current-tour a:hover {
  color: var(--text-secondary);
}

/* ---------- footer ---------- */

.contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
  padding-top: 16px;
}

.contact a {
  color: var(--text-secondary);
  text-decoration: none;
}

.contact a:hover {
  color: var(--text-main);
}

@media (min-width: 640px) {
  .contact {
    flex-direction: row;
    gap: 20px;
  }
}

/* ---------- animation ---------- */

.fade-in {
  opacity: 0;
  transform: translateY(8px);
  animation: fadeIn 0.7s ease forwards;
}

.delay-0 { animation-delay: 0.05s; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ---------- desktop refinement ---------- */

@media (min-width: 900px) {
  .wrap {
    padding: 56px 64px 40px;
    max-width: 960px;
  }
  .hero {
    padding: 64px 0 48px;
  }
}
