:root {
    --color-bg: #0a0c0a; /* Sehr dunkles Grün/Schwarz */
    --color-surface: #121612;
    --color-primary: #8da47e; /* Gedecktes, elegantes Grün */
    --color-accent: #cfae70; /* Edles Gold */
    --color-text: #e8eae6;
    --color-text-muted: #a4a9a1;
    
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

.accent {
    color: var(--color-accent);
    font-style: italic;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 120px 0;
}

.text-center {
    text-align: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: background 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 12, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 5%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    color: var(--color-primary);
    font-weight: 400;
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 3px;
    display: block;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 300;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-primary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-primary);
    padding: 12px 28px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.btn-primary:hover {
    background: var(--color-primary);
    color: var(--color-bg);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Extra height for parallax */
    background: url('hero.png') center center/cover no-repeat;
    z-index: -2;
    transform-origin: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,12,10,0.3) 0%, rgba(10,12,10,0.8) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    margin-bottom: 20px;
    opacity: 0;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 300;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    margin-bottom: 50px;
    opacity: 0;
}

/* Scroll Button Animation */
.scroll-down-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
}

.scroll-down-btn span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-text-muted);
}

.mouse {
    width: 26px;
    height: 42px;
    border: 1px solid var(--color-text-muted);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: scroll 2s infinite var(--transition);
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 30px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 60px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.about-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    filter: brightness(0.85) contrast(1.1);
}

/* Glassmorphism */
.glass-card {
    background: rgba(18, 22, 18, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 30px 40px rgba(0,0,0,0.4);
}

.about-glass {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80%;
}

.about-glass h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--color-accent);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
    text-align: center;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.glass-panel {
    background: linear-gradient(145deg, rgba(30, 35, 30, 0.6) 0%, rgba(18, 22, 18, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--color-text-muted);
}

/* Parallax Block */
.parallax-quote {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('hero.png') center center/cover fixed; /* Fallback fixed */
    text-align: center;
    overflow: hidden;
}

.parallax-quote::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 12, 10, 0.7);
}

.quote-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.quote-content blockquote {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-style: italic;
    margin-bottom: 20px;
    color: var(--color-text);
}

.quote-content cite {
    font-size: 1.1rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer */
.footer {
    background-color: #050605;
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--color-text-muted);
    margin-top: 15px;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links p {
    margin-bottom: 10px;
    color: var(--color-text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    position: relative;
    text-align: center;
    max-width: 450px;
    width: 90%;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s var(--transition);
}
.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}
.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    color: var(--color-text-muted);
    transition: color 0.3s;
}
.close-modal:hover { color: var(--color-accent); }
.modal-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}
.modal-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.modal-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    color: var(--color-text);
}
.modal-btn small {
    font-size: 0.85rem;
    margin-left: 10px;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none; /* Simplification for brief code */
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .about-glass {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        margin-top: -40px;
    }
}
