@font-face {
  font-family: "DINNextArabic";
  src: url("./assets/fonts/ArbFONTS-DINNextLTArabic-Regular-2.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: #9ca3af;
  --line: #27272a;
  --accent: #f5c542;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DINNextArabic", Arial, Helvetica, sans-serif;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  width: 100%;
  min-height: 65px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
}

.qbc-logo {
  width: auto;
  height: 32px;
  display: block;
}

.hero {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 32px 24px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 3.75rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.7;
  color: var(--muted);
}

.picture-page {
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
}

.picture-main {
  position: fixed;
  inset: 0;
  padding: 0;
  margin: 0;
}

.picture-wrapper {
  display: block;
  width: 100vw;
  height: 100vh;
  line-height: 0;
}

.picture-image {
  display: block;
  width: 100vw;
  height: 100vh;
  max-width: none;
  object-fit: fill;
}

body.picture-only {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.picture-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

.overlay-text {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #ffffff;
  text-align: center;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.site-footer {
  width: 100%;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.social-link {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.social-link:hover {
  color: var(--accent);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.copyright {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .topbar {
    min-height: 60px;
    padding: 14px 20px;
  }

  .qbc-logo {
    height: 28px;
  }

  .hero {
    gap: 20px;
    padding: 28px 18px;
  }

  .picture-main {
    inset: 0;
  }

  .site-footer {
    padding: 20px 16px;
    gap: 14px;
  }

  .socials {
    gap: 20px;
  }
}
