/* --- Botanical 3D Variables --- */
:root {
    --bg-cream: #F3F1EC;
    --bg-white: #FFFFFF;
    --primary-green: #3A4D39; /* Deep Moss */
    --accent-sage: #8AA899;   /* Soft Sage */
    --text-dark: #2C2C2C;
    --text-light: #6D6D6D;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    /* The 3D Magic: Soft, deep shadows */
    --shadow-3d: 0 20px 40px -5px rgba(58, 77, 57, 0.15);
    --shadow-hover: 0 30px 60px -10px rgba(58, 77, 57, 0.25);
    --radius: 12px;
}

/* --- Imports --- */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* --- Reset & Base --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }
img { width: 100%; height: auto; display: block; object-fit: cover; }

/* --- Typography --- */
h1, h2, h3 { font-family: var(--font-heading); color: var(--primary-green); font-weight: 600; margin-bottom: 1rem; }
h1 { font-size: 3.5rem; line-height: 1.2; }
h2 { font-size: 2.5rem; }
p { color: var(--text-light); margin-bottom: 1.5rem; font-weight: 300; }

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; position: relative; }

/* --- Navigation (Floating) --- */
header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: 0.3s;
    background: rgba(243, 241, 236, 0.9);
    backdrop-filter: blur(10px);
}

.nav-flex { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    letter-spacing: 1px;
}

.nav-links { display: flex; gap: 40px; }
.nav-links a { 
    font-size: 0.9rem; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0;
    width: 0; height: 1px; background: var(--primary-green); transition: 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* --- 3D Components --- */
.card-3d {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-3d);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
    border: 1px solid rgba(255,255,255,0.5);
}

.card-3d:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-green);
    color: white;
    font-family: var(--font-heading);
    border-radius: 50px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(58, 77, 57, 0.2);
}
.btn:hover {
    background-color: var(--accent-sage);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(58, 77, 57, 0.3);
}

/* --- Hero Section (Layered 3D) --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-img-wrapper {
    position: relative;
    z-index: 1;
}

.hero-img {
    border-radius: 100px 100px 0 0; /* Arch shape */
    box-shadow: var(--shadow-3d);
}

.floating-badge {
    position: absolute;
    bottom: 40px; left: -40px;
    background: var(--bg-white);
    padding: 20px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-3d);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* --- Grids --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* --- Footer --- */
footer {
    background-color: var(--primary-green);
    color: #e0e0e0;
    padding: 80px 0 30px;
    margin-top: 50px;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.footer h4 { color: #fff; margin-bottom: 20px; font-family: var(--font-heading); }
.footer a { display: block; margin-bottom: 10px; color: #a0b0a0; }
.footer a:hover { color: #fff; }
.german-phone { font-size: 1.2rem; color: #fff; font-weight: bold; }

/* --- Mobile Menu --- */
.burger { display: none; cursor: pointer; }
.burger div { width: 25px; height: 2px; background: var(--primary-green); margin: 6px; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links {
        position: absolute; top: 70px; right: 0;
        height: 100vh; width: 70%;
        background: var(--bg-cream);
        flex-direction: column; align-items: center; justify-content: center;
        transform: translateX(100%); transition: 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    .nav-links.active { transform: translateX(0); }
    .burger { display: block; }
    
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    h1 { font-size: 2.5rem; }
    .floating-badge { left: 50%; transform: translateX(-50%); bottom: -30px; width: 80%; animation: none; }
    .hero-img { border-radius: 20px; }
}