@font-face {
  font-family: 'Goldenbook';
  src: url('fonts/Goldenbook-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Adventures';
  src: url('fonts/AdventuresUnlimited-ScriptRg.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Goldenbook', serif;
  background-color: #f2efe8;
  color: #333;
  text-align: center;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 20px;
}

.logo {
  max-width: 680px;
  width: 100%;
  height: auto;
  margin: 0 auto 50px;
  display: block;
}

.intro {
  font-size: 38px;
  line-height: 1.8;
  font-family: 'Goldenbook', serif;
  margin-bottom: 5px;
}

.signature {
  font-family: 'Adventures', cursive;
  font-size: 68px;
  margin-bottom: 80px;
  color: #935937;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  margin-bottom: 100px;
}

.black-btn {
  background-color: #222;
  color: white;
  text-decoration: none;
  padding: 20px 0;
  width: 380px;
  display: inline-block;
  font-size: 68px; /* ⬅ zwiększony rozmiar tekstu */
  font-family: 'Adventures', cursive;
  border-radius: 16px;
  transition: background 0.3s;
  text-align: center;
}

.black-btn:hover {
  background-color: #444;
}

.catalog-heading {
  font-size: 38px;
  margin-bottom: 30px;
  font-family: 'Goldenbook', serif;
}

.catalog-btn {
  background-color: #935937;
  color: white;
  text-decoration: none;
  padding: 20px 0;
  width: 380px;
  display: inline-block;
  font-size: 68px; /* ⬅ zwiększony rozmiar tekstu */
  font-family: 'Adventures', cursive;
  border-radius: 16px;
  transition: background 0.3s;
  text-align: center;
}

.catalog-btn:hover {
  background-color: #a35f40;
}
