/* Font Faces */
@font-face {
  font-family: 'Bolota Bold';
  src: url('../fonts/Bolota-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Donut Hole';
  src: url('../fonts/DonutHole.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

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

a {
  color: var(--color-orange);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-orange-dark);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font-family: var(--font-body);
  font-size: var(--text-base);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-orange);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-md);
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-orange { color: var(--color-orange); }
.text-gold { color: var(--color-gold); }
.text-green { color: var(--color-green); }
.text-cream { color: var(--color-cream); }
.text-white { color: var(--color-white); }

.font-display { font-family: var(--font-display); }
.font-accent { font-family: var(--font-accent); }

.bg-cream { background-color: var(--color-cream); }
.bg-orange { background-color: var(--color-orange); }
.bg-gold { background-color: var(--color-gold); }
.bg-white { background-color: var(--color-white); }

/* Section Spacing */
.section {
  padding: var(--space-4xl) 0;
}

.section--cream {
  background-color: var(--color-cream);
}

.section--white {
  background-color: var(--color-white);
}

.section--orange {
  background-color: var(--color-orange);
  color: var(--color-cream);
}

.section--orange h2,
.section--orange h3 {
  color: var(--color-gold);
}

.section--green {
  background-color: var(--color-green);
  color: var(--color-cream);
}

.section--green h2 {
  color: var(--color-cream);
}

.section--green .tagline {
  color: var(--color-black);
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
