.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #cc7a52;
  color: #f6f6f6;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background-color: #fafafa;
  color: #333;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #ffe6cc;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 50px;
  margin-right: 10px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.site-nav li {
  margin: 0 15px;
}

.site-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: #ff9966;
}

.hero-section {
  background-color: #ffcc99;
  padding: 80px 20px;
  text-align: center;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.hero-content h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.hero-button {
  text-decoration: none;
  background-color: #ff9966;
  color: #fff;
  padding: 12px 20px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #cc7a52;
}

.about-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.6em;
}

.cookies-section {
  margin: 20px;
  text-align: center;
}

.cookies-div {
  display: inline-block;
  padding: 15px;
  border: 1px solid #ccc;
  background-color: #fff;
}

.cookies-button {
  margin: 0 5px;
  padding: 8px 12px;
  border: none;
  background-color: #ff9966;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookies-button:hover {
  background-color: #cc7a52;
}

.site-footer {
  background-color: #ffe6cc;
  padding: 20px;
  text-align: center;
  margin-top: 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-logo,
.footer-contact,
.footer-hours {
  margin: 10px;
  min-width: 200px;
}

.footer-logo img {
  width: 40px;
}

.footer-socials {
  margin: 10px 0;
}

.footer-socials a {
  margin: 0 5px;
}

.footer-socials img {
  width: 24px;
  vertical-align: middle;
}

.footer-links {
  margin: 10px 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  display: inline-block;
  margin: 0 5px;
}

.footer-links a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff9966;
}

.footer-bottom {
  margin-top: 10px;
  font-size: 0.9rem;
}

.gallery-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.gallery-container {
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}

.gallery-section p {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #666;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: start;
}

.gallery-item {
  background-color: #ffe6cc;
  border-radius: 4px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  max-width: 100%;
  border-radius: 4px;
  margin-bottom: 10px;
}

.gallery-item h3 {
  font-size: 1.2em;
  margin: 0;
  color: #333;
}

.services-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.services-container {
  max-width: 1000px;
  margin: 0 auto;
}

.services-container h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 20px;
}

.services-container p {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: #ffe6cc;
  border-radius: 4px;
  padding: 30px 20px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 1.4em;
  color: #333;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1em;
  color: #333;
  margin-bottom: 10px;
}

.price {
  font-weight: 700;
  color: #ff9966;
}

.services-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 20px;
  background-color: #ff9966;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.services-button:hover {
  background-color: #cc7a52;
}

.testimonials-section {
  padding: 60px 20px;
  background-color: #fafafa;
  text-align: center;
}

.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials-container h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 20px;
}

.testimonials-container p {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background-color: #ffe6cc;
  border-radius: 4px;
  padding: 30px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-size: 1em;
  color: #333;
  margin-bottom: 10px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: #ff9966;
}

.booking-section {
  padding: 60px 20px;
  background-color: #fafafa;
  text-align: center;
}

.booking-section h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 20px;
}

.booking-section p {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 40px;
}

.booking-form-container {
  max-width: 600px;
  margin: 0 auto;
}

#frm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#frm input,
#frm select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

#frm button {
  padding: 12px;
  border: none;
  border-radius: 4px;
  background-color: #ff9966;
  color: #fff;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#frm button:hover {
  background-color: #cc7a52;
}

.services-detailed-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.services-detailed-container {
  max-width: 1000px;
  margin: 0 auto;
}

.services-detailed-container h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 20px;
}

.services-detailed-container p {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 40px;
}

.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-detailed-card {
  background-color: #ffe6cc;
  border-radius: 4px;
  padding: 30px 20px;
  transition: transform 0.3s ease;
  text-align: left;
}

.service-detailed-card:hover {
  transform: translateY(-5px);
}

.service-detailed-card h3 {
  font-size: 1.4em;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.service-detailed-card ul {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: disc;
}

.service-detailed-card li {
  font-size: 1em;
  color: #333;
  margin-bottom: 10px;
}

.about-rules-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.about-rules-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-rules-container h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 20px;
}

.about-rules-container p {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 40px;
}

.about-rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  text-align: left;
}

.about-details,
.rules-details {
  background-color: #ffe6cc;
  border-radius: 4px;
  padding: 30px;
  transition: transform 0.3s ease;
}

.about-details:hover,
.rules-details:hover {
  transform: translateY(-5px);
}

.about-details h3,
.rules-details h3 {
  font-size: 1.4em;
  color: #333;
  margin-bottom: 15px;
}

.about-details p {
  margin-bottom: 15px;
  line-height: 1.6em;
  color: #333;
}

.rules-details ul {
  list-style: disc;
  margin: 0;
  padding: 0 0 0 20px;
}

.rules-details li {
  font-size: 1em;
  color: #333;
  margin-bottom: 10px;
}

.clients-gallery-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.clients-gallery-container {
  max-width: 1000px;
  margin: 0 auto;
}

.clients-gallery-container h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 20px;
}

.clients-gallery-container p {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 40px;
}

.clients-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.client-item {
  background-color: #ffe6cc;
  border-radius: 4px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.client-item:hover {
  transform: translateY(-5px);
}

.client-item img {
  max-width: 100%;
  border-radius: 4px;
  margin-bottom: 10px;
}

.client-item h3 {
  font-size: 1.2em;
  color: #333;
  margin: 0;
}

.title_background {
  background-color: #f9f9f9;
  padding: 60px 0;
  text-align: center;
}

.title_background .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.title_background .title {
  font-size: 2em;
  font-weight: 700;
  color: #333;
}

.text_background {
  background-color: #fff;
  padding: 40px 0;
}

.text_background .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.text_background .text {
  font-size: 1em;
  line-height: 1.6em;
  color: #333;
}
