:root {
  --color1: #1e3054;
  --color-white: #ffffff;
  --color-soft-white: #f5f7fb;
  --color-text-muted: #d8deea;
  --color-accent: #f1a705;

  --font-title: "Bebas Neue", sans-serif;
  --font-body: "Inter", sans-serif;

  --container-width: 1180px;
  --section-padding: clamp(4rem, 8vw, 7rem);

  --radius-lg: 1.5rem;
  --radius-md: 1rem;

  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.22);
  --shadow-accent: 0 14px 32px rgba(241, 167, 5, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-white);
  background-color: var(--color1);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
a {
  font: inherit;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}
