section:target::before {
  content: "";
  display: block;
  height: 70px;
  margin-top: -70px;
  width: 1px;
  pointer-events: none;
}

.scroll-fadeup {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 1.6, 0.6, 1), transform 2s cubic-bezier(0.4, 1.6, 0.6, 1);
  will-change: opacity, transform;
}

.scroll-fadeup.is-in {
  opacity: 1;
  transform: translateY(0);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: clamp(14px, 3vw, 18px);
}

body {
  background-color: #E0E0E0;
  color: #898989;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8784313725);
}
header h1 {
  max-width: 400px;
  width: 40vw;
  height: auto;
  margin: 0 auto;
  padding: 30px 0 0 0;
}
header h1 img {
  width: 100%;
  height: auto;
}
header nav {
  font-size: 1.2rem;
}
header nav ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}
header nav ul li {
  list-style: none;
}
header nav ul li a {
  text-decoration: none;
  font-weight: bold;
  padding-bottom: 5px;
}
header nav ul li a:hover {
  color: rgba(82, 157, 181, 0.8);
  border-bottom: 5px solid rgba(82, 157, 181, 0.8);
}

section {
  padding: 50px 0px;
  text-align: center;
  margin-bottom: 100px;
  position: relative;
}
section .content {
  padding: 40px 10px;
  color: #FFF;
  line-height: 200%;
}
section .content .wrapper {
  max-width: 1100px;
  margin: 0 auto;
}
section .content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: left;
  margin: 0 auto 40px auto;
  width: fit-content;
}
section .content button {
  background-color: #FFFFFF;
  color: rgba(82, 157, 181, 0.8);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}
section .content button:hover {
  background-color: rgba(63.5141700405, 127.8866396761, 148.4858299595, 0.8);
}

.image-gallery {
  position: relative;
  user-select: none;
  min-width: 350px;
  max-width: 800px;
  margin: 0 auto;
}
.image-gallery img {
  width: 100%;
  height: auto;
  margin-top: -40px;
}

#funfunny {
  background: rgba(82, 157, 181, 0.8);
  margin-top: -50px;
}
#funfunny .content {
  background: rgba(82, 157, 181, 0.8);
}
#funfunny .content h2 {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
}
#funfunny .content h2 span:nth-child(2) {
  text-align: right;
  margin-top: 20px;
}
#funfunny .content #cta-button {
  margin: 50px auto 0px auto;
  border-radius: 100px;
  padding: 18px 38px;
  background: #FFFFFF;
  color: rgba(82, 157, 181, 0.8);
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 4px 16px 0 rgba(82, 157, 181, 0.18);
  max-width: 370px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: transform 0.15s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.2s, background 0.3s;
  border: 2px solid #fff;
  animation: cta-pop 1.2s cubic-bezier(0.4, 2, 0.6, 1) 1;
}
#funfunny .content #cta-button a {
  text-decoration: none;
  color: inherit;
}
#funfunny .content #cta-button a:hover {
  color: #fff;
}
#funfunny .content #cta-button:hover, #funfunny .content #cta-button:focus {
  transform: scale(1.04) translateY(-1px);
  box-shadow: 0 8px 24px 0 rgba(82, 157, 181, 0.22);
  background: rgba(82, 157, 181, 0.8);
  border: 2px solid #fff;
  color: #fff;
}
@keyframes cta-pop {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  60% {
    transform: scale(1.05);
    opacity: 1;
  }
  80% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}

#about {
  background: rgba(228, 201, 134, 0.6666666667);
}
#about .content {
  background: rgba(228, 201, 134, 0.6666666667);
  margin: 0 auto;
}
#about .content .about-text {
  background-color: #FFFFFF;
  border-radius: 10px;
  width: 100%;
  color: #333;
  padding: 20px;
}
#about .content h2 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
#about .content h2 span {
  font-size: 5.5rem;
  font-style: italic;
}
#about .content .about-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  #about .content .about-features {
    flex-direction: column;
    align-items: center;
  }
}
#about .content .about-features .feature {
  width: 350px;
  height: 350px;
  color: #333;
  border-radius: 10px;
  border: 10px solid #FFF;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #about .content .about-features .feature {
    width: 100%;
  }
}
#about .content .about-features .feature h3 {
  margin-top: 20px;
  font-size: 2rem;
  color: #FFF;
  text-align: right;
  padding-right: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
#about .content .about-features .feature p {
  line-height: 1.8;
  font-size: 1rem;
  color: #333;
  background-color: rgba(255, 255, 255, 0.7333333333);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  padding: 20px 20px;
}
#about .content .about-features #about_01 {
  border-color: rgba(228, 201, 134, 0.6666666667);
  background-image: url(img/about_01.png);
}
#about .content .about-features #about_02 {
  border-color: rgba(228, 201, 134, 0.6666666667);
  background-image: url(img/about_02.png);
}
#about .content .about-features #about_03 {
  border-color: rgba(228, 201, 134, 0.6666666667);
  background-image: url(img/about_03.png);
}

#services {
  background: rgba(170, 186, 79, 0.8);
}
#services .content {
  background: rgba(170, 186, 79, 0.8);
}
#services .services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  padding: 0 10px;
}
@media (max-width: 768px) {
  #services .services-grid {
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 1100px) {
  #services .services-grid {
    max-width: 1100px;
    margin: 20px auto 0;
  }
}
#services .services-grid .service-item {
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  #services .services-grid .service-item {
    width: 100%;
  }
}
@media (min-width: 769px) {
  #services .services-grid .service-item {
    flex: 0 1 calc(50% - 10px);
  }
}
#services .services-grid .service-item ul {
  list-style-type: none;
}
#services .services-grid .service-item ul li {
  padding: 0 0 10px 0;
}
#services .services-grid .service-item .service-image {
  margin-bottom: 15px;
}
#services .services-grid .service-item .service-image img {
  width: 100px;
  height: auto;
}
#services .services-grid .service-item h3 {
  margin-bottom: 10px;
}
#services .services-grid .service-item p {
  font-size: 0.9rem;
  line-height: 1.4;
}

#contact {
  background: rgba(189, 120, 134, 0.8);
}
#contact .content {
  background: rgba(189, 120, 134, 0.8);
}
#contact .contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
#contact .contact-content .contact-qrcode p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}
#contact .contact-content .contact-qrcode img {
  width: 200px;
  height: auto;
}

footer .footer-logo {
  max-width: 300px;
  width: 40vw;
  height: auto;
  margin: 0 auto;
}
footer .footer-logo img {
  width: 100%;
  height: auto;
}
footer .footer-links ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 0 30px 0;
}
footer .footer-links ul li {
  list-style: none;
}
footer .footer-links ul li a {
  text-decoration: none;
  font-weight: bold;
  padding-bottom: 5px;
}
footer .footer-links ul li a:hover {
  color: rgba(82, 157, 181, 0.8);
  border-bottom: 5px solid rgba(82, 157, 181, 0.8);
}
footer .footer-bottom {
  background-color: #F0F0F0;
  padding: 10px 0;
  font-size: 0.8rem;
  color: #A0A0A0;
  text-align: center;
}