/* Noor Casino — Coming Soon
   Simple, responsive hero centered over a video background
   with image fallback and an overlay for readability.
*/

/* Reset and base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --text: #eef2f7;
  --muted: rgba(255, 255, 255, 0.9);
  --link: #c0e0ff;
  --link-hover: #ffffff;
  --shadow: rgba(0, 0, 0, 0.35);
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  /* Image fallback if video can't play or is blocked */
  background: #000 url("assets/noorcasino-bg.png") center / cover no-repeat fixed;
  font-family: 'Sen', sans-serif;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Full-bleed video background */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  z-index: -2; /* behind overlay and content */
  background: transparent;
}

/* Overlay to ensure text contrast on bright scenes */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(100% 100% at 50% 0%, rgba(10, 15, 26, 0.6) 0%, rgba(10, 15, 26, 0.2) 60%, rgba(10, 15, 26, 0.55) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45));
}

/* Main layout */
.content {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Start a bit below the top like the mock */
  padding: clamp(48px, 18vh, 160px) 16px 48px;
  gap: 12px;
  text-align: center;
}

/* Brand row (logo + name) */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  filter: drop-shadow(0 1px 1px var(--shadow));
}

.logo {
  width: min(500px, 90vw); /* ~500px on desktop, scales down responsively */
  height: auto; /* keep logo proportions */
  display: block;
}


/* Headline */
.headline {
  margin: 18px 0 10px;
  font-family: 'Zilla Slab', serif;
  font-size: clamp(28px, 4vw + 8px, 44px);
  line-height: 1.15;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* Supporting text */
.cta {
  margin: 0;
  font-size: clamp(14px, 1.1vw + 10px, 18px);
  color: var(--muted);
}

/* Make the email link white */
.cta a {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.9);
}
.cta a:hover,
.cta a:focus-visible {
  color: #ffffff;
  text-decoration-color: #ffffff;
}

a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(192, 224, 255, 0.65);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover,
a:focus-visible {
  color: var(--link-hover);
  text-decoration-color: var(--link-hover);
  outline: none;
}

/* Accessibility preferences */
@media (prefers-reduced-motion: reduce) {
  .bg-video {
    display: none; /* rely on image fallback */
  }
}

/* Small screens */
@media (max-width: 380px) {
  .logo {
    width: 70vw;
    max-width: 320px;
    height: auto;
  }
}
