
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}


#main-header {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#main-header.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

body, p, a, li, span, input, textarea, button, select {
  font-family: 'Source Sans 3', sans-serif;
}


input, textarea, select {
  background-color: #1E1E1E;
  border: 1px solid #333333;
  color: #F5F5F5;
  padding: 0.75rem 1rem;
  width: 100%;
  border-radius: 0.125rem;
  transition: border-color 0.3s;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #D4AF37;
}

input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
}

button, .button {
  background-color: #D4AF37;
  color: #0A0A0A;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.125rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover, .button:hover {
  background-color: #E5DCC3;
}


#cookie-consent-banner {
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1), 0 -2px 4px -1px rgba(0, 0, 0, 0.06);
}


.iti {
  width: 100%;
}


.animated {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animated.visible {
  opacity: 1;
  transform: translateY(0);
}


[data-animation="fade-up"] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animation="slide-up"] {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

[data-animation="slide-right"] {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

[data-animation="slide-left"] {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

[data-animation="zoom-in"] {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

[data-animation="reveal"] {
  position: relative;
  overflow: hidden;
}

[data-animation="reveal"]::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #D4AF37;
  transform: translateX(0);
  z-index: 1;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

[data-animation="reveal"].visible::after {
  transform: translateX(100%);
}


.image-hover {
  overflow: hidden;
}

.image-hover img {
  transition: transform 0.5s ease;
}

.image-hover:hover img {
  transform: scale(1.05);
}


@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  [data-animation="slide-right"],
  [data-animation="slide-left"] {
    transform: translateY(40px);
  }
  
  [data-animation="slide-right"].visible,
  [data-animation="slide-left"].visible {
    transform: translateY(0);
  }
}


::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1E1E1E;
}

::-webkit-scrollbar-thumb {
  background: #333333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #D4AF37;
}


#cookie-settings-modal {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}


.faq-toggle {
  transition: background-color 0.3s;
}

.faq-toggle:hover {
  background-color: #292929;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-content:not(.hidden) {
  max-height: 1000px;
}


.parallax-container {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 0;
  transform: translateY(0);
  will-change: transform;
}


a:focus, button:focus, input:focus, textarea:focus, select:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

a:focus:not(:focus-visible), 
button:focus:not(:focus-visible), 
input:focus:not(:focus-visible), 
textarea:focus:not(:focus-visible), 
select:focus:not(:focus-visible) {
  outline: none;
}


a, button {
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, transform 0.3s;
}


#parallax-hero {
  position: relative;
}

#parallax-hero .container {
  position: relative !important;
  z-index: 10;
}