/* Standalone stylesheet for the AudiRadio "we've moved" redirect page.
   Deliberately self-contained (colors/fonts/logo/lang-switch rules copied in, not linked
   from /assets/site.css) - this folder is meant to be relocated to a different server, so it
   must never depend on anything outside itself except the Google Fonts CDN. Keep this file's
   copied rules in sync with assets/site.css by eye if the main site's look changes; there is
   no automated link between the two. */

:root {
  --bg: #17130f;
  --surface: #221c16;
  --surface-hover: #2b2319;
  --border: rgba(243,236,224,0.12);
  --border-strong: rgba(243,236,224,0.22);
  --text-primary: #f3ece0;
  --text-secondary: #b7a996;
  --text-muted: #8a7d6c;
  --amber: #e8a33d;
  --amber-strong: #f5c169;
  --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-body: "Karla", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html, body { overflow-x: hidden; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

a { color: inherit; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header / logo - copied verbatim from the main site's site.css */
.site-header { padding: 28px 0 20px; }
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark { width: 40px; height: 40px; flex-shrink: 0; }
.logo-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.logo-word span { color: var(--amber); }

/* Language switcher - same look/behaviour as the main site's header dropdown */
.lang-switch { position: relative; }
.lang-switch summary {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 7px 12px;
  transition: color .15s ease, border-color .15s ease;
}
.lang-switch summary::-webkit-details-marker { display: none; }
.lang-switch summary:hover { color: var(--text-primary); border-color: var(--amber); }
.lang-switch[open] summary { color: var(--text-primary); border-color: var(--amber); }
.lang-switch__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 170px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.6);
  z-index: 20;
}
.lang-switch__menu button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.lang-switch__menu button:hover { background: var(--surface-hover); color: var(--text-primary); }
.lang-switch__menu button.is-current { color: var(--amber); font-weight: 600; }

.flag-icon, .flag-current svg {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.14);
}

/* Centered highlighted rectangle with the "we've moved" notice */
.redirect-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 80px;
}
.notice-box {
  width: 100%;
  max-width: 540px;
  background: var(--surface);
  border: 1px solid var(--amber);
  border-radius: 16px;
  padding: 44px 40px;
  text-align: center;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.65), 0 0 0 1px rgba(232,163,61,0.15);
}
.notice-box h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-wrap: balance;
}
.notice-box p {
  margin: 0 0 10px;
  color: var(--text-secondary);
  font-size: 16px;
}
.notice-box p a { color: var(--amber); font-weight: 600; text-decoration: underline; }
.btn-primary {
  display: inline-block;
  margin: 18px 0 16px;
  padding: 13px 28px;
  background: var(--amber);
  color: #1c1409;
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s ease;
}
.btn-primary:hover { background: var(--amber-strong); }
.countdown {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .notice-box { padding: 32px 24px; }
  .notice-box h1 { font-size: 24px; }
}
