/* --- FARBEN & GRUNDLAGEN --- */
:root {
    --green: #71857C;
    --creme: #EEEFEA;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--green);
    background-color: var(--creme);
    line-height: 1.8;
    font-size: 16px;
    overflow-x: hidden;
}

/* --- TYPOGRAFIE --- */
h1, h2, h3, h4, .signature {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
}

h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 40px;
}

.highlight-text {
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-top: 30px;
}

.signature {
    font-size: 1.4rem;
    font-style: italic;
    margin-top: 20px;
}

.text-center { text-align: center; }
.margin-top-large { margin-top: 60px; }

/* --- SEKTIONEN & CONTAINER --- */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-creme {
    background-color: var(--creme);
    color: var(--green);
    padding: 100px 0;
}

.section-green {
    background-color: var(--green);
    color: var(--creme);
    padding: 100px 0;
}

.text-block p {
    margin-bottom: 20px;
}
.text-block p:last-child {
    margin-bottom: 0;
}

/* --- NAVIGATION (Inkl. Sticky) --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 4%;
    position: fixed; /* Geändert für Sticky Header */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

/* Wenn man scrollt: Leichter Milchglas-Effekt */
nav.scrolled {
    background-color: rgba(238, 239, 234, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 10px 4%; /* Wird etwas schmaler */
}

.nav-logo-img {
    height: 90px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: all 0.4s ease;
}

nav.scrolled .nav-logo-img {
    height: 60px; /* Logo wird beim Scrollen kleiner */
}

.nav-logo a:hover .nav-logo-img {
    transform: scale(1.03);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: var(--green);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.btn-nav {
    border: 1px solid var(--green);
    padding: 8px 20px;
    border-radius: 30px;
}

/* --- HAMBURGER MENU (Versteckt auf Desktop) --- */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--green);
    transition: all 0.3s ease;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero-logo {
    width: 150px;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--green);
    color: var(--creme);
    text-decoration: none;
    border-radius: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--green);
}

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

.section-green .btn-primary {
    background-color: var(--creme);
    color: var(--green);
    border-color: var(--creme);
}

.section-green .btn-primary:hover {
    background-color: transparent;
    color: var(--creme);
}

/* --- GRID LAYOUTS --- */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.grid-item p {
    margin-bottom: 20px;
}

/* --- PREISE & FORMATE (Mit Tiefen-Effekt / Hover) --- */
.intro-text {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

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

.price-card {
    padding: 50px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease; /* Hover-Effekt */
}

/* Visuelle Tiefe bei Hover */
.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(113, 133, 124, 0.15);
}

.price-card.outline {
    border: 1px solid var(--green);
    background-color: var(--creme);
}

.price-card.filled {
    background-color: var(--green);
    color: var(--creme);
}

/* Der grüne Block braucht einen anderen Schatten */
.price-card.filled:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.price {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 10px;
    display: inline-block;
}

.sub-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.price-card p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.addon-card {
    border: 1px dashed var(--green);
    padding: 40px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-5px);
    background-color: rgba(113, 133, 124, 0.03);
}

/* --- TERMS --- */
.terms-text {
    font-size: 0.9rem;
}

.terms-text p {
    margin-bottom: 15px;
}

/* --- ANIMATIONEN (Fade-In) --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE DESIGN (Handy) --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .grid-2-col, .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
    .price-card { padding: 30px; }
    .hero { padding: 20px; }

    /* Navigation auf Handy anpassen */
    nav { padding: 15px 5%; }
    .nav-logo-img { height: 70px; }
    nav.scrolled .nav-logo-img { height: 50px; }

    /* Hamburger Icon anzeigen */
    .hamburger { display: flex; }

    /* Hamburger Kreuz-Animation wenn aktiv */
    .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Mobile Menu Fullscreen Overlay */
    .nav-links {
        position: fixed;
        top: 0;
        left: 100%; /* Versteckt ausserhalb des Bildschirms */
        width: 100%;
        height: 100vh;
        background-color: var(--creme);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.4s ease;
    }

    .nav-links.active {
        left: 0; /* Menu fährt rein */
    }

    .nav-links a {
        font-size: 1.5rem; /* Größere Schrift auf dem Handy-Menü */
    }
}