@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

@font-face { font-family: 'LinBiolinum'; src: url('schriftarten/LinBiolinum_aRL.ttf') format('truetype'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'LinBiolinum'; src: url('schriftarten/LinBiolinum_aSI.ttf') format('truetype'); font-weight: 400; font-style: italic; }
@font-face { font-family: 'LinBiolinum'; src: url('schriftarten/LinBiolinum_aSB.ttf') format('truetype'); font-weight: 600; font-style: normal; }
@font-face { font-family: 'LinBiolinum'; src: url('schriftarten/LinBiolinum_aBL.ttf') format('truetype'); font-weight: 700; font-style: normal; }

html { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar { display: none; width: 0 !important; background: transparent; }

:root {
    --primary-color: #6d8b74;
    --secondary-color: #f7f3e9;
    --text-color: #333;
    --background-dark: #1a1a1a;
    --text-light: #f4f4f4;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body.nav-active { overflow: hidden; }

.container { max-width: 1100px; margin: 0 auto; width: 100%; padding: 0 20px; }

header {
    position: fixed; top: 0; left: 0; width: 100%; height: 0;
    z-index: 1000; overflow: visible;
    background: transparent;
    pointer-events: none;
}

.logo {
    position: fixed; top: 25px; left: 25px; z-index: 3000; display: block;
    pointer-events: auto;
}
.logo img { height: 50px; width: auto; display: block; }

.hamburger {
    display: block !important;
    cursor: pointer;
    z-index: 3000;
    position: fixed;
    top: 25px;
    right: 25px;
    width: 35px;
    height: 30px;
    pointer-events: auto;
    background: transparent;
}

.hamburger .bar {
    display: block;
    width: 100%;
    height: 3px;
    margin: 6px 0;
    transition: 0.4s;
    border-radius: 3px;
}

.hamburger.active .bar { background-color: #fff !important; box-shadow: none; }
.hamburger.active .bar:nth-child(1) { transform: rotate(-45deg) translate(-6px, 7px); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: rotate(45deg) translate(-6px, -7px); }

.nav-links {
    position: fixed; top: 80px; right: 25px; width: 250px; height: auto;
    background-color: rgba(30, 30, 30, 0.95); backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 15px;
    display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 30px; gap: 15px; opacity: 0; visibility: hidden;
    transform: translateY(-10px) scale(0.95); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2999; box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    pointer-events: auto;
}
.nav-links.active { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.nav-links li { list-style: none; margin: 0; width: 100%; }
.nav-links a:not(.cta-button) {
    text-decoration: none; color: #fff; font-family: 'LinBiolinum', sans-serif;
    font-size: 1.1rem; font-weight: 500; display: block; width: 100%;
    transition: color 0.3s ease, padding-left 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 8px;
}
.nav-links a:not(.cta-button):hover { color: var(--primary-color); padding-left: 5px; }

.cta-button {
    display: inline-block; background-color: var(--primary-color); color: #fff !important;
    padding: 8px 20px;
    text-decoration: none; border-radius: 50px; font-weight: 600;
    font-size: 0.95rem; width: auto !important; text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease; margin-top: 5px; border: none;
}
.cta-button:hover { background-color: #5a7462; transform: scale(1.02); }

.deco-flower { position: absolute; pointer-events: none; }

footer { background-color: #111; color: #f4f4f4; padding: 60px 20px 20px 20px; border-top: 1px solid #444; font-size: 0.95rem; }
.footer-content { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1100px; margin: 0 auto; margin-bottom: 40px; }
.footer-col h4 { color: #fff; margin-bottom: 20px; border-bottom: 2px solid var(--primary-color); padding-bottom: 5px; display: inline-block; font-family: 'Playfair Display', serif; font-weight: 700; }
.footer-col p, .footer-col a { color: #ccc; text-decoration: none; display: block; margin-bottom: 10px; }
.footer-col a:hover { color: var(--primary-color); }
.social-icons a { font-size: 1.8rem; margin-right: 15px; display: inline-block; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #333; color: #888; font-size: 0.9rem; width: 100%; }

@media (max-width: 768px) {
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .cta-button { width: auto !important; max-width: 100%; }
}
