/* Empire Dogs - Main Stylesheet */
  @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Nunito:wght@300;400;600;700&display=swap');

  :root {
    --ed-gold: #E9BB82;
    --ed-gold-dark: #d4a46d;
    --ed-black: #000000;
    --ed-dark: #1a1a1a;
    --ed-gray: #2d2d2d;
    --ed-light-gray: #f5f5f5;
    --ed-white: #ffffff;
  }

  *, ::before, ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
  }

  html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    font-family: 'Nunito', ui-sans-serif, system-ui, sans-serif;
  }

  body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    color: var(--ed-dark);
    line-height: 1.6;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: inherit;
    font-weight: inherit;
  }

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

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

  .btn-primary {
    background-color: var(--ed-gold);
    color: var(--ed-black);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .btn-primary:hover {
    background-color: var(--ed-gold-dark);
  }

  .section-padding {
    padding: 5rem 0;
  }

  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
  }