* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Special Elite';
  src: url('/fonts/SpecialElite-Regular.woff2') format('woff2'),
    url('/fonts/SpecialElite-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Special Elite', serif;
  line-height: 1.6;
  color: #333;
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 1140px;
  background-color: #111;
}

header {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem 0.5rem 1rem;
}

.herba-logo {
  max-height: 186px;
  width: auto;
}

h1 {
  color: #2c3e50;
  text-align: center;
  margin: 2rem 0;
  font-size: 2.5rem;
  font-weight: 300;
}

h2 {
  color: #edd3a1;
  text-align: center;
  margin: 0;
  font-size: 2.5rem;
}

p {
  color: #edd3a1;
  text-align: center;
  margin: 0.5rem 0;
  font-size: 1.5rem;
}

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

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

.herba-flyer {
  width: 100%;
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 2rem 0;
}
.social-icons a svg {
  width: 64px;
  height: 64px;
  fill: #edd3a1;
  transition: fill 0.2s ease;
}
.social-icons a:hover svg {
  fill: #444;
}

@media (max-width: 768px) {
  header {
    padding: 0;
  }

  .container {
    padding: 0;
  }

  .herba-logo {
    max-height: 90px;
  }

  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }
  .social-icons {
    padding: 0.5rem;
  }
  .social-icons a svg {
    width: 52px;
    height: 52px;
  }
}
