/*
Theme Name: Padel24 Temporary Landing Page
Theme URI: https://padel24.ae
Author: Padel24.ae
Description: Temporary coming-soon landing page for Padel24.ae.
Version: 1.0
License: GPLv2 or later
Text Domain: padel24-temp
*/

:root {
  --gold: #d8a42e;
  --gold-light: #ffd56a;
  --white: #ffffff;
  --muted: #cfcfcf;
  --black: #030303;
}

* { box-sizing: border-box; }

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at center top, rgba(216,164,46,.16), transparent 36%), #000;
  color: var(--white);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  overflow: hidden;
}

.hero {
  width: min(980px, 100%);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle, rgba(255,213,106,.13), transparent 62%);
  filter: blur(16px);
  pointer-events: none;
}

.logo {
  width: min(520px, 88vw);
  height: auto;
  display: block;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(216,164,46,.35));
}

.eyebrow {
  color: var(--gold-light);
  letter-spacing: .42em;
  text-transform: uppercase;
  font-size: 14px;
  margin: 0 0 18px;
  position: relative;
  z-index: 1;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
  line-height: .95;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.lead {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.28;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.lead strong { color: var(--gold-light); }

.stats {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(760px, 100%);
  position: relative;
  z-index: 1;
}

.stats div {
  border: 1px solid rgba(216,164,46,.38);
  background: rgba(255,255,255,.035);
  border-radius: 18px;
  padding: 22px 14px;
  backdrop-filter: blur(8px);
}

.stats strong {
  display: block;
  color: var(--gold-light);
  font-size: 30px;
  margin-bottom: 7px;
}

.stats span {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer {
  margin-top: 42px;
  color: var(--gold-light);
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: 13px;
  position: relative;
  z-index: 1;
}

@media (max-width: 680px) {
  .page { padding: 34px 16px; }
  .stats { grid-template-columns: 1fr; }
  .eyebrow { letter-spacing: .25em; font-size: 12px; }
}
