
@font-face {
	font-family: 'Great Vibes';
	src: url('/fonts/GreatVibes.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Permanent Marker';
	src: url('/fonts/PermanentMarker.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-bottom: 5px solid #FFD700;
}

header img {
  width: 100%;
  max-width: 150px;
  height: auto;
  align-items: center;
}

.header-right {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}

@media (min-width: 600px) {
  header { flex-direction: row; }
  .header-right { margin-left: 20px; }
}

@media (max-width: 600px) {
  header { flex-direction: column; }
  .header-right { margin-left: 0; }
}

.header-right .company-name {
  font-family: 'Great Vibes', cursive;
  font-size: 1.5rem;
  color: #000000;
}

.activities {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.activities span {
  font-family: 'Great Vibes', cursive;
  font-size: 1.2rem;
  color: #000000;
}


main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

  .list-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
    gap: 20px;
  }

  .list-card {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 20px;
  }

  main img {
    /*max-width: 100%;*/
    /*height: auto;*/
    width: 250px;
    height: 300px;
    object-fit: contain;
    margin-bottom: 10px;
  }

  h3 {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.5rem;
    color: #000000;
    margin: 10px;
  }

  p {
    font-size: 1rem;
    color: #333;
    margin: 0;
    overflow: hidden;
  }

  .description {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
  }

  .price {
    font-size: 1.1rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
  }

  a.button {
    display: inline-block;
    padding: 10px 20px;

    font-family: 'Permanent Marker', cursive;
    font-size: 1.2rem;
    background-color: #d6bfa9;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

  a.button:hover {
    background-color: #c0a78f;
  }

  .single-content {
    display: flex;
    flex-direction: row;
    max-width: 680px;
  }

  .single-content div {
    margin-bottom: 15px;
  }

  form img {
    max-width: 250px;
    height: auto;
    object-fit: contain;
    margin: 0 5px 10px;
    vertical-align: top;
  }

  form {
    /*display: inline-grid;*/
    /*grid-template-columns: max-content minmax(0, 2fr);*/
    gap: 5px;
    margin-left: 0;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    align-items: center;
    vertical-align: top;
  }

  .label,label {
    font-size: 1rem;
    color: #333;
    white-space: nowrap;
    display: block;
  }

  .choices-group {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 0;
    flex-wrap: wrap;
  }

  .choices-group label {
    padding: 8px 15px;
    border: 1px solid #d6bfa9;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
  }

  .choices-group input[type="radio"] {
    display: none;
  }

  .choices-group input[type="radio"]:checked + label {
    background-color: #d6bfa9;
    color: #fff;
  }

  .choices-details {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0;
    max-height: 100px;
    overflow: hidden;
    display: none;
  }

  input {
    padding: 8px;
    font-size: 1rem;
    border: 1px solid #d6bfa9;
    border-radius: 5px;
    width: 60px;
    text-align: center;
  }

  div.button {
    margin-top: 20px;
  }

  div.button button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #d6bfa9;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    opacity: 0.6;
    pointer-events: none;
  }

  div.button button.enabled {
    opacity: 1;
    pointer-events: auto;
  }

  div.button button:hover {
    background-color: #c0a78f;
  }

    footer {
      background-color: #d6bfa9;
      padding: 10px;
      text-align: center;
      color: #000000;
      font-size: 0.9rem;
    }
  
    footer .footer-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      max-width: 800px;
      margin: 0 auto;
    }
  
    footer .social-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }
  
    footer .social-links a {
      display: flex;
      align-items: center;
      color: #000000;
      text-decoration: none;
      transition: color 0.3s ease;
    }
  
    footer .social-links a:hover {
      color: #8B5A2B;
    }
  
    footer .social-links img,
    footer .social-links svg {
      width: 20px;
      height: 20px;
      vertical-align: middle;
    }
  
    footer .contact-legal {
      display: flex;
      gap: 10px;
      justify-content: center;
    }
  
    footer .contact-legal a {
      color: #000000;
      text-decoration: none;
      transition: color 0.3s ease;
    }
  
    footer .contact-legal a:hover {
      color: #8B5A2B;
    }
  
    .legal-content {
      max-width: 800px;
      margin: 0 auto;
      background-color: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: center;
    }
  
    .legal-content h2 {
      font-family: 'Great Vibes', cursive;
      font-size: 2rem;
      color: #000000;
      margin-bottom: 20px;
    }
  
    .legal-content p {
      font-size: 1rem;
      color: #333;
      margin-bottom: 10px;
    }
  
    .legal-content a {
      color: #000000;
      text-decoration: none;
      transition: color 0.3s ease;
    }
  
    .legal-content a:hover {
      color: #d6bfa9;
    }
