/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  hyphens: auto;
}

p {
  overflow-wrap: break-word;
}

/* ===== CSS Variables ===== */
:root {
  /* Colors */
  --color-bg: #0a0a0f;
  --color-accent: #8b0000;
  --color-secondary: #c9a05b;
  --color-text: #e0dcd0;
  --color-link: #c9a05b;
  --color-link-hover: #ffd700;

  /* Typography */
  --font-heading: 'Cinzel', 'Georgia', serif;
  --font-body: 'Arial', 'Helvetica', sans-serif;

  /* Sizes */
  --header-height: 70px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}
