/* ============ Banner Padel — opening soon ============ */

:root {
  --navy: #061633;
  --navy-2: #0a2044;
  --yellow: #ffd502;
  --yellow-soft: rgba(255, 213, 2, 0.12);
  --white: #f4f7fb;
  --muted: #9fb0c6;
  --line: rgba(255, 255, 255, 0.1);
  --font-head: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1.25rem 0;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.topnav {
  width: min(640px, 100%);
  margin-bottom: 2.5rem;
}
.topnav nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.topnav a {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.topnav a:hover { color: var(--white); }
.topnav a[aria-current="page"] {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.page {
  width: min(640px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.logo {
  width: 260px;
  height: auto;
  margin-bottom: 2.2rem;
}

.photo {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  margin-bottom: 2.2rem;
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  background: var(--yellow-soft);
  border: 1px solid rgba(255, 213, 2, 0.3);
  border-radius: 999px;
  padding: 0.45rem 1.2rem;
  margin-bottom: 1.6rem;
}

h1 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.opening {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.opening strong { color: var(--yellow); font-family: var(--font-head); }

.list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin-bottom: 2.2rem;
  text-align: left;
}
.list li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--white);
}
.list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--yellow);
}
.list li::after {
  content: "";
  position: absolute;
  left: 3.5px; top: calc(0.5em + 3.5px);
  width: 6px; height: 3.5px;
  border-left: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(-45deg);
}

/* ---------- About page ---------- */
.prose {
  text-align: left;
  margin-bottom: 2.2rem;
}
.prose p { color: var(--muted); margin-bottom: 1.1rem; }
.prose h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--yellow);
  margin: 1.8rem 0 0.8rem;
}
.prose .list { margin-bottom: 1.1rem; }

.cta {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 213, 2, 0.3);
}

.social-note {
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 1rem;
}
.social {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2.6rem;
}
.social a {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.social a:hover { color: var(--yellow); border-color: var(--yellow); transform: translateY(-2px); }
.social__handle {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--yellow);
  margin-left: 0.3rem;
}

.signup {
  width: 100%;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem 1.6rem 1.6rem;
  margin-bottom: 2.5rem;
}
.signup h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 0.6rem;
}
.signup p { color: var(--muted); font-size: 0.97rem; max-width: 460px; margin: 0 auto 1.5rem; }
.signup form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 400px;
  margin: 0 auto;
}
.signup input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--navy);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s ease;
}
.signup input::placeholder { color: rgba(159, 176, 198, 0.7); }
.signup input:focus { border-color: var(--yellow); }
.signup button {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: var(--yellow);
  color: var(--navy);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.signup button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 213, 2, 0.3);
}
.signup__note { margin-top: 0.9rem; font-size: 0.9rem; }
.signup__note:empty { display: none; }

.footer {
  width: 100%;
  border-top: 1px solid var(--line);
  padding: 1.3rem 0 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 2rem;
}
.footer p { font-size: 0.84rem; color: rgba(159, 176, 198, 0.75); }
.footer a { color: var(--yellow); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
