@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;600;700;800;900&display=swap");

:root {
  --background: #0a0a09;
  --foreground: #f7f4ee;
  --primary: #c9963b;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  color-scheme: dark;
}

body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #080807;
}
::-webkit-scrollbar-thumb {
  background: #312e29;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #c9963b;
}

/* Text Selection */
::selection {
  background: rgba(249, 115, 22, 0.35);
  color: #ffffff;
}

:focus-visible {
  outline: 2px solid #c9963b;
  outline-offset: 3px;
}

/* Accordion Animation */
details summary svg {
  transition: transform 0.2s ease;
}
details[open] summary svg {
  transform: rotate(180deg);
}
