@font-face {
  font-family: 'Le Petit Cochon';
  src: url('fonts/petit_cochon-webfont.woff2') format('woff2'),
       url('fonts/petit_cochon-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  background-color: #43469d;
  color: #fcf6bc;
  font-family: 'Lexend Peta', sans-serif;
  min-height: 100vh;
}
.disclaimer {
  text-align: center;
  color: #fcf6bc;
  font-family: 'Lexend Peta', sans-serif;
  font-size: 18px;
  padding: 10px 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.nav-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 0 12px;
}
.nav-buttons a {
  font-family: 'Lexend Peta', sans-serif;
  color: #fcf6bc;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  flex: 1 1 140px;
  min-width: 110px;
  max-width: 180px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.nav-buttons a:hover {
  background-color: rgba(252, 246, 188, 0.1);
}
.nav-buttons a.active {
  background-color: #fcf6bc;
  color: #43469d;
}
.title-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.image-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.image-link:hover .placeholder-image {
  opacity: 0.9;
}
.large-text {
  text-align: center;
  padding: 0 12px;
}
.large-text .first {
  font-family: 'Le Petit Cochon', serif;
  font-size: 66px;
  text-transform: uppercase;
  color: #fcf6bc;
  line-height: 1;
  margin: 0;
}
.large-text .second {
  font-family: 'Lexend Peta', sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  color: #fcf6bc;
  line-height: 1;
  margin: 0;
}
.content {
  padding: 20px 12px;
  text-align: center;
}
.content h2 {
  font-family: 'Lexend Peta', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.content p {
  font-size: 16px;
  line-height: 1.6;
}
.images-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px 12px 40px;
}
.image-item {
  flex: 1 1 260px;
  max-width: 420px;
}
.placeholder-image {
  width: 100%;
  height: 260px;
  background-color: #fcf6bc;
  margin-bottom: 10px;
}
.image-text {
  color: #fcf6bc;
  font-family: 'Lexend Peta', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  text-align: left;
  margin: 0;
}
.form-page {
  padding: 20px 12px 40px;
}
.event-form {
  max-width: 740px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.form-group,
.form-inline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-inline {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-inline > * {
  flex: 1 1 220px;
}
.form-inline label {
  margin-bottom: 4px;
}
label {
  font-size: 15px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(252, 246, 188, 0.5);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: #fcf6bc;
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  color: rgba(252, 246, 188, 0.7);
}
textarea {
  min-height: 100px;
  resize: vertical;
}
.fieldset-group {
  border: 1px solid rgba(252, 246, 188, 0.3);
  border-radius: 12px;
  padding: 14px;
}
.fieldset-group legend {
  font-size: 16px;
  margin-bottom: 10px;
}
.radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
}
.radio-option input {
  accent-color: #fcf6bc;
}
button[type="submit"] {
  font-family: 'Lexend Peta', sans-serif;
  background-color: #fcf6bc;
  color: #43469d;
  border: none;
  padding: 14px 18px;
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
}
button[type="submit"]:hover {
  opacity: 0.95;
}
@media (max-width: 640px) {
  .nav-buttons {
    gap: 8px;
  }
  .nav-buttons a {
    font-size: 14px;
    flex: 1 1 100%;
    max-width: none;
  }
  .large-text .first {
    font-size: 44px;
  }
  .large-text .second {
    font-size: 14px;
  }
  .placeholder-image {
    height: 200px;
  }
  .disclaimer {
    font-size: 14px;
  }
}