/* ==========================================================================
   Global Variables & Resets
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary: #d12230;
  /* Crimson Red */
  --primary-hover: #b81d2a;
  --secondary: #741532;
  /* Dark Burgundy */
  --accent: #545d66;
  /* Slate Grey */
  --accent-light: #848e98;
  --yellow: #fede3f;
  /* Golden Yellow */
  --yellow-hover: #e8c92a;

  /* Neutral Palette */
  --bg-light: #ffffff;
  --bg-subtle: #f8f9fa;
  --bg-dark: #121518;
  --bg-darker: #0a0c0e;

  --text-dark: #1e2327;
  --text-muted: #666654;
  --text-light: #ffffff;

  /* Borders */
  --border-light: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Effects */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease-in-out;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--yellow);
  font-weight: 700;
  line-height: 1.2;
}

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

a:hover {
  color: var(--primary-hover);
}

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

ul {
  list-style: none;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-yellow {
  color: var(--yellow);
}

.text-accent {
  color: var(--accent);
}

.bg-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
  color: var(--text-light);
}

.bg-subtle {
  background-color: var(--bg-subtle);
}

.bg-secondary {
  background-color: var(--secondary);
  color: var(--text-light);
}

.section-padding {
  padding: var(--spacing-xl) 0;
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */
@media (max-width: 768px) {
  .section-padding {
    padding: var(--spacing-lg) 0;
  }
}