/* Custom styles reflecting the new luxury, nature-inspired palette */

/* --- Farbvariablen --- */
:root {
    --color-bg: #fdf9f3; /* Sonnendurchflutetes Creme */
    --color-text: #3d3328; /* Dunkles, erdiges Braun */
    --color-primary-dark: #3b4a29; /* Tiefes Waldgrün für Kontraste (z.B. Navi) */
    --color-primary-mauve: #794a61; /* Tiefer Pflaumen/Mauve-Ton */
    --color-accent-gold: #e6a75a; /* Warmes, sonniges Gold */
    --color-beige: #f4efe8; /* Helles, warmes Beige für Karten */
    --color-cream: #fdf9f3;
}

/* --- Grundlegende Stile --- */
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    background-color: var(--color-bg);
    color: var(--color-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
}

/* --- Hero Sektion --- */
.hero-bg {
    background-image: url('alternate_forest.png');
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    /* Verlauf von tiefem Mauve zu warmem Gold, um Sonnenuntergang/Aufgang zu simulieren */
    background: linear-gradient(0deg, rgba(59, 74, 41, 0.7) 0%, rgba(121, 74, 97, 0.5) 60%, rgba(230, 167, 90, 0.4) 100%);
}

/* --- Navigation --- */
.bg-primary-dark { background-color: var(--color-primary-dark); }
.text-accent-gold { color: var(--color-accent-gold); }
.text-cream { color: var(--color-cream); }
.nav-link {
    color: var(--color-cream);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    position: relative;
}
.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-accent-gold);
    transition: all 0.3s ease;
}
.nav-link:hover { color: var(--color-accent-gold); }
.nav-link:hover:after {
    width: 80%;
    left: 10%;
}
.burger-line {
    width: 22px;
    height: 2px;
    background-color: var(--color-cream);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* --- Allgemeine Komponenten --- */
.section-title {
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-align: center;
}
.text-primary-mauve { color: var(--color-primary-mauve); }
.text-text-main { color: var(--color-text); }
.bg-beige { background-color: var(--color-beige); }

.card {
    background-color: var(--color-beige);
    border-radius: 0.5rem;
    padding: 1.75rem;
    box-shadow: 0 4px 12px rgba(82, 46, 65, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--color-primary-mauve);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 20px rgba(82, 46, 65, 0.12);
}
.card:first-child { /* Hebt das Notfall-Angebot hervor */
    border-top-color: var(--color-accent-gold);
}
.card h3 {
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.primary-btn {
    background-color: var(--color-primary-mauve);
    color: var(--color-cream);
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}
.primary-btn:hover {
    background-color: #613a4d; /* Dunklere Variante von Mauve */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(82, 46, 65, 0.15);
}

/* --- Über Mich Sektion --- */

/* Bild-Styling: Rechteckig mit nebligem Verlauf */
.profile-image-foggy {
  -webkit-mask-image: 
    linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%),
    linear-gradient(to right,  transparent 0%, black 18%, black 82%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-image: 
    linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%),
    linear-gradient(to right,  transparent 0%, black 18%, black 82%, transparent 100%);
  mask-composite: intersect;

}

.quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    line-height: 1.6;
    color: #5a4d3a;
}

/* --- Angebote & Kontakt --- */
.testimonial {
    background-color: rgba(121, 74, 97, 0.05); /* Mauve mit Transparenz */
    border-radius: 0.5rem;
    padding: 1.5rem;
    border-top: 2px solid var(--color-primary-mauve);
}

/* --- Hilfsklasse für Float-Layouts --- */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.qr-code-image {
    width: 80px;
    height: 80px;
    border-radius: 0.25rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* --- Karte & Footer --- */
.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 0.5rem;
    border: 1px solid var(--color-beige);
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.footer-link {
    color: var(--color-accent-gold);
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: #ffdda8; /* Helleres Gold */
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-beige); }
::-webkit-scrollbar-thumb { background: var(--color-primary-mauve); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #613a4d; }
