/* MONTSERRAT - Lokal eingebunden */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
}

/* PLAYFAIR DISPLAY - Lokal eingebunden */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/PlayfairDisplay-Bold.ttf') format('truetype');
}


/* --- GLOBALE VARIABLEN --- */
/* Reset und Basis-Styling */
:root {
    --primary-color: #a4303f; 
    --secondary-color: #f39c12; 
    --light-color: #f9f9f9;
    --dark-color: #222;
    --text-color: #444;
    --text-light: #ffffff;
    --font-main: 'Montserrat', sans-serif;
    --font-headings: 'Playfair Display', serif;
}

/* --- RESET & BASIS --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: var(--font-main); 
    line-height: 1.6; 
    color: var(--text-color); 
    background-color: #fff; 
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.container { max-width: 1200px; margin: auto; padding: 0 20px; }
section { padding: 80px 0; }
main { flex: 1; }

.section-title {
    text-align: center; font-size: 2.8rem; margin-bottom: 50px;
    font-family: var(--font-headings); color: var(--dark-color);
}

/* --- HEADER & NAVIGATION --- */
.main-header {
    background: #ffffff; padding: 5px 0; position: fixed; width: 100%; top: 0; left: 0;
    z-index: 1000; transition: all 0.4s ease-in-out;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
}
.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(5px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
}
.main-header .container { max-width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 0 40px; }
.main-header .logo-nav img { height: 60px; transition: height 0.4s ease-in-out; }
.main-header.scrolled .logo-nav img { height: 50px; }

.main-nav ul { list-style: none; display: flex; }
.main-nav ul li { margin-left: 25px; }
.main-nav ul li a {
    color: var(--dark-color); padding-bottom: 5px; font-weight: bold;
    text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem;
    position: relative; text-decoration: none;
}
.main-nav ul li a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--primary-color); transition: width 0.3s ease;
}
.main-nav ul li a:hover::after, .main-nav ul li a.active::after { width: 100%; }

.menu-toggle { display: none; cursor: pointer; font-size: 2rem; color: var(--dark-color); z-index: 1001; }

/* --- BUTTONS --- */
.cta-button {
    background-color: var(--primary-color); color: var(--text-light); padding: 15px 35px;
    text-decoration: none; font-weight: bold; border-radius: 5px;
    transition: all 0.3s ease; display: inline-block; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: none; cursor: pointer; font-family: var(--font-main); font-size: 1rem; text-align: center;
}
.cta-button:hover { background-color: #832632; transform: translateY(-3px); color: white; }

/* --- FOOTER --- */
.main-footer { background-color: var(--dark-color); color: #aaa; text-align: center; padding: 40px 0; margin-top: auto; }
.main-footer a { color: #aaa; text-decoration: underline; }
.main-footer a:hover { color: var(--text-light); }
.main-footer p { margin-bottom: 10px; }

/* --- RESPONSIVE NAVIGATION --- */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .main-nav {
        position: fixed; top: 0; right: 0; width: 70%; height: 100vh; background: #ffffff; 
        box-shadow: -2px 0 10px rgba(0,0,0,0.1); flex-direction: column; justify-content: center;
        align-items: center; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }
    .main-nav.active { transform: translateX(0); }
    .main-nav ul { flex-direction: column; align-items: center; }
    .main-nav ul li { margin: 20px 0; margin-left: 0; }
    .main-header .container { padding: 0 20px; }
}

/* --- Datenschutz und Impressum --- */

        .legal-box {
            background: #fff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            max-width: 800px;
            width: 100%;
        }

        .legal-box h1 {
            color: var(--primary-color);
            margin-bottom: 30px;
            font-size: 2.2rem;
            text-align: center;
            font-family: var(--font-headings);
        }

        .legal-box h2 {
            font-size: 1.3rem;
            margin-top: 30px;
            margin-bottom: 15px;
            color: var(--dark-color);
            border-bottom: 2px solid var(--light-color);
            padding-bottom: 5px;
            font-family: var(--font-headings);
        }
        
        .legal-box h3 {
            font-size: 1.1rem;
            margin-top: 20px;
            margin-bottom: 10px;
            color: var(--dark-color);
            font-family: var(--font-headings);
        }

        .legal-box p, .legal-box ul {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        
        .legal-box ul {
            padding-left: 20px;
        }

        .legal-box a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .legal-box a:hover {
            text-decoration: underline;
        }