/* Albert Sans Font */
@font-face {
  font-family: 'Albert Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/AlbertSans/albert-sans-v4-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Albert Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/AlbertSans/albert-sans-v4-latin-700.woff2') format('woff2');
}

/* Square Peg Font */
@font-face {
  font-family: 'Square Peg';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/SquarePeg/square-peg-v7-latin-regular.woff2') format('woff2');
}

/* Global Styles */
:root {
  --primary-red: #800400;
  --black: #000000;
}

body {
  font-family: 'Albert Sans', sans-serif;
  color: var(--black);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
}

.logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 2rem;
}

.content-box {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 2rem auto;
}

.slogan {
  font-family: 'Square Peg', cursive;
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-top: 2rem;
  line-height: 1.4;
}

.contact-info {
  margin-top: 2rem;
}

.contact-info a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .logo {
    max-width: 200px;
  }
  
  .slogan {
    font-size: 2rem;
  }
  
  .content-box {
    padding: 1.5rem;
    margin: 1rem;
  }
}
