:root {
--color-bg: #0A1931;
--color-text: #ECECEC;
--color1: #1D2E49; 
--color2: #ECECEC;
--color3: #FFD700;
--color4: #47A8BD;
--color5: #8AA6B8;
}

.font-sans {
font-family: 'Roboto', sans-serif;
}
.font-serif {
font-family: 'Playfair Display', serif;
}

html {
scroll-behavior: smooth;
}

body {
background-color: var(--color-bg);
color: var(--color-text);
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.4);
}

.decorative-line {
display: block;
width: 100px;
height: 2px;
background-color: var(--color4);
opacity: 0.8;
}

.decorative-shape {
position: absolute;
z-index: -5;
background-color: var(--color4);
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%);
background-color: var(--color1);
}

#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;
background-color: var(--color3);
color: var(--color1);
}

#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 {
background-color: var(--color4);
color: var(--color-bg);
@apply hover:bg-color3 hover:shadow-lg;
}
.btn-secondary {
border: 2px solid var(--color5);
color: var(--color5);
@apply hover:bg-color5 hover:text-color-bg;
}

#cookie-popup {
background-color: var(--color1);
color: var(--color5);
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);
}