@import url('./css/navigation.css');
@import url('./css/sections.css');
@import url('./css/components.css');
@import url('./css/footer.css');
@import url('/css/header.css');
@import url('./css/layout.css');
@import url('./css/responsive.css');
@import url('./css/utilities.css');


/* Base Styles - Fonts, Variables, Reset, Typography */
@font-face {
  font-family: "tommy";
  src: url(../assets/fonts/made-tommy/MADE\ TOMMY\ Black_PERSONAL\ USE.otf);
}

@font-face {
  font-family: "merich";
  src: url(../assets/fonts/merich/Merich.otf);
}

:root {
  --accent: #c02c19;
  --accent-hover: #a02515;
  --accent-2: #c87004;
  --accent-2-hover: #b05d03;
  --muted: #5a5a5a;
  --muted-light: #8a8a8a;
  --bg: #fbf8f4;
  --bg-alt: #f5f2ed;
  --white: #ffffff;
  --container: 1200px;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
  --shadow-xl: 0 12px 60px rgba(0, 0, 0, 0.25);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  background: var(--bg);
  color: #222;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1 {
  font-family: "merich", serif;
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  font-family: "tommy", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-family: "tommy", sans-serif;
  font-weight: 600;
  line-height: 1.4;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

*:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}


