html {
  scroll-behavior: smooth;
}

body {
  background-color: #cbcfd0;
  color: #33110f;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.parallax-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -10;
  filter: brightness(0.8);
}

.decorative-line {
  display: block;
  width: 100px;
  height: 2px;
  background-color: #5a493c;
  opacity: 0.5;
}

.decorative-shape {
  position: absolute;
  z-index: -5;
  background-color: #adc5d0;
  opacity: 0.3;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  transition: all 0.5s ease-out;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#mobile-menu {
  transition: transform 0.3s ease-in-out;
  transform: translateY(-100%);
}

#mobile-menu.is-open {
  transform: translateY(0);
}

#notification-popup {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  transition: bottom 0.5s ease-in-out;
  z-index: 100;
}

#notification-popup.show {
  bottom: 30px;
}

@media (max-width: 768px) {
  .parallax-element {
    transform: translateY(0) !important;
  }
}

.btn {
  @apply inline-block px-8 py-3 text-sm font-medium tracking-wide rounded-full transition-all duration-300 ease-out;
}
.btn-primary {
  @apply bg-color4 text-color2 hover:bg-color3 hover:shadow-lg;
}
.btn-secondary {
  @apply border-2 border-color5 text-color5 hover:bg-color5 hover:text-color2;
}

/* Cookie Popup Styles */
#cookie-popup {
  backdrop-filter: blur(10px);
}

#cookie-popup.show {
  transform: translateY(0);
}

#cookie-popup.hide {
  transform: translateY(100%);
}

@media (max-width: 768px) {
  #cookie-popup {
    padding: 1rem;
  }

  #cookie-popup .flex {
    flex-direction: column;
    gap: 1rem;
  }

  #cookie-popup .flex-shrink-0 {
    width: 100%;
  }

  #cookie-popup .flex-shrink-0 .btn {
    flex: 1;
    text-align: center;
  }
}

#contact-notification {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
}
#contact-notification.is-visible {
  opacity: 1;
  visibility: visible;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}
.faq-item.is-open .faq-answer {
  max-height: 500px;
}
.faq-question .faq-toggle {
  transition: transform 0.3s ease-out;
}
.faq-item.is-open .faq-question .faq-toggle {
  transform: rotate(45deg);
}
