@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Montserrat:wght@400;700;900&display=swap');

:root {
/* Neues Farbschema: Dunkle, gedämpfte, marine-inspirierte Töne */
--color-bg: #141E30; /* Dunkles Hintergrundgrau-Blau */
--color-text: #DCE3E8; /* Helle Textfarbe */
--color1: #243B55; /* Primäre Hintergrund-Akzentfarbe (Marine) */
--color2: #DCE3E8; /* Helle Textfarbe */
--color3: #FFB347; /* Kräftige Akzentfarbe (Gold/Orange) */
--color4: #A8B9C8; /* Sekundäre Akzentfarbe/Linien (Helles Blau-Grau) */
--color5: #9AA9B8; /* Sekundäre/Gedämpfte Textfarbe */
}

/* Neue Schriftarten */
.font-sans {
font-family: 'Montserrat', sans-serif;
}
.font-serif {
font-family: 'DM Serif 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;
/* Stärkerer Dämpfungs-Effekt */
filter: brightness(0.25) grayscale(0.2);
}

.decorative-line {
display: block;
width: 100px;
height: 2px;
background-color: var(--color3); /* Akzent-Farbe für Linien */
opacity: 0.8;
}

.decorative-shape {
position: absolute;
z-index: -5;
background-color: var(--color4);
opacity: 0.15; /* Reduzierte Opazität */
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(--color-bg); /* Textfarbe, die vom Akzent abhebt */
}

#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(--color3); /* Gold/Orange Akzent */
color: var(--color-bg);
@apply hover:bg-color4 hover:shadow-lg;
}
.btn-secondary {
border: 2px solid var(--color4); /* Helles Blau-Grau Akzent */
color: var(--color4);
@apply hover:bg-color4 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);
}