/* --- Lokale Webfonts --- */

/* Cinzel - Regular */
@font-face {
    font-display: swap;
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/cinzel-v26-latin-regular.woff2') format('woff2');
}

/* Cinzel - Bold */
@font-face {
    font-display: swap;
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/cinzel-v26-latin-700.woff2') format('woff2');
}

/* Montserrat - Light (300) */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/montserrat-v31-latin-300.woff2') format('woff2');
}

/* Montserrat - Regular (400) */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/montserrat-v31-latin-regular.woff2') format('woff2');
}

/* Montserrat - SemiBold (600) */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/montserrat-v31-latin-600.woff2') format('woff2');
}

/* --- Farbpalette & Grund-Setup --- */
:root {
    --bg-dark: #0a0b0d;       /* Extrem tiefes, mystisches Schwarz */
    --gold: #D4AF37;          /* Klassisches Niffler-Gold */
    --gold-bright: #FBF5B7;   /* Helles, glänzendes Gold */
    --text-light: #E2E8F0;    /* Weiche, gut lesbare Schrift */
    --font-magic: 'Cinzel', serif;
    --font-sans: 'Montserrat', sans-serif;
}

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

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

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

/* --- Wabernde Rauchschwaden --- */
.smoke-container {
    position: fixed;
    /* Etwas größer als der Bildschirm, damit man keine harten Kanten vom Blur sieht */
    top: -10%;
    left: -10%;
    width: 120vw;
    height: 120vh;
    z-index: -2;
    background-color: var(--bg-dark);
    overflow: hidden;
    /* Der magische Trick: Lässt die Schwaden organisch verschmelzen */
    filter: blur(60px); 
}

.plume {
    position: absolute;
    border-radius: 50%;
    /* Weicher, weiß-goldener Verlauf für die einzelnen Schwaden */
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(212, 175, 55, 0.04) 40%, transparent 70%);
    opacity: 0.8;
}

/* --- Wabernde Rauchschwaden --- */
.smoke-container {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 120vw;
    height: 120vh;
    z-index: -2;
    background-color: var(--bg-dark);
    overflow: hidden;
    filter: blur(30px); 
}

.plume {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(212, 175, 55, 0.08) 40%, transparent 70%);
    opacity: 1;
}

/* Schwade 1 */
.plume-1 {
    width: 70vw;
    height: 70vh;
    top: 10%;
    left: 0;
    animation: drift-1 6s infinite alternate ease-in-out;
}

/* Schwade 2 */
.plume-2 {
    width: 80vw;
    height: 80vh;
    top: 30%;
    right: 10%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(255, 255, 255, 0.06) 50%, transparent 70%);
    animation: drift-2 8s infinite alternate ease-in-out;
}

/* Schwade 3 */
.plume-3 {
    width: 90vw;
    height: 60vh;
    bottom: 0;
    left: 20%;
    animation: drift-3 10s infinite alternate ease-in-out;
}

/* Schwade 4 */
.plume-4 {
    width: 50vw;
    height: 50vh;
    top: 50%;
    left: 50%;
    animation: drift-4 5s infinite alternate ease-in-out;
}

/* --- HIER SIND DIE FEHLENDEN KEYFRAMES --- */
@keyframes drift-1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30vw, 15vh) scale(1.3); }
}

@keyframes drift-2 {
    0% { transform: translate(0, 0) scale(1.1); }
    100% { transform: translate(-40vw, 20vh) scale(0.9); }
}

@keyframes drift-3 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20vw, -30vh) scale(1.4); }
}

@keyframes drift-4 {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-20%, -80%) scale(1.2); }
}

/* --- Detaillierte 3D-Rosenranken --- */
.detailed-vine {
    position: fixed;
    top: 0;
    height: 100vh;
    width: auto; /* Behält die originalen Proportionen deines Bildes bei */
    max-width: 250px; /* Verhindert, dass sie zu wuchtig wird */
    z-index: -1;
    pointer-events: none;
    
    /* Hier entsteht der 3D-Look! 
       1. Ein harter, dunkler Schatten für die Tiefe
       2. Ein weicher, schwarzer Schatten für den Abstand zur Wand
       3. Ein leichter, goldener Glow für magische Ausstrahlung */
    filter: drop-shadow(3px 5px 4px rgba(0, 0, 0, 0.9)) 
            drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.6))
            drop-shadow(-1px -1px 2px rgba(251, 245, 183, 0.3));
}

/* --- Magischer 3D-Rahmen --- */
.magic-frame {
    position: fixed;
    top: -10vh;
    left: -10vw;
    width: 120vw;
    height: 110vh;
    /* object-fit: cover sorgt dafür, dass der Rahmen immer bis zum Rand geht, 
       egal ob auf einem breiten Monitor oder am Laptop */
    object-fit: cover; 
    z-index: -1;
    pointer-events: none; /* Macht die Mitte des Rahmens durchklickbar */
    
    /* Der 3D- und Magie-Effekt bleibt */
    filter: drop-shadow(3px 5px 4px rgba(0, 0, 0, 0.9)) 
            drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.6))
            drop-shadow(-1px -1px 2px rgba(251, 245, 183, 0.3));
            
    /* Ein sanftes "Atmen" des gesamten Rahmens */
    animation: frame-breathe 15s infinite alternate ease-in-out;
}

/* --- Organisches Atmen des Rahmens --- */
@keyframes frame-breathe {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}


/* --- Header & Navigation --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background-color: rgba(10, 11, 13, 0.85);
    backdrop-filter: blur(8px); /* Macht die Nav im Hintergrund milchig-edel */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.logo {
    font-family: var(--font-magic);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

nav a {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    margin-left: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

nav a:hover {
    color: var(--gold-bright);
    text-shadow: 0 0 8px rgba(251, 245, 183, 0.6);
}

/* --- Hero Section (Startbereich) --- */
#hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: var(--font-magic);
    font-size: 4rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.hero-content h2 {
    font-family: var(--font-magic);
    font-size: 2.2rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* --- Buttons --- */
.cta-button {
    font-family: var(--font-magic);
    background: linear-gradient(135deg, #BF953F, #AA771C);
    color: var(--bg-dark);
    padding: 16px 36px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(170, 119, 28, 0.4);
    transition: all 0.4s ease;
    display: inline-block;
}

.cta-button:hover {
    background: linear-gradient(135deg, #FCF6BA, #BF953F);
    box-shadow: 0 0 25px rgba(251, 245, 183, 0.7);
    transform: translateY(-3px);
}

/* --- Impressum & Legal Pages --- */
.legal-page {
    padding-top: 150px;
    min-height: 80vh;
    display: flex;
    justify-content: center;
}

.legal-content {
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
}

.legal-content h1 {
    font-family: var(--font-magic);
    color: var(--gold);
    font-size: 3rem;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.legal-content h2 {
    font-family: var(--font-magic);
    color: var(--gold-bright);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-weight: 300;
    margin-bottom: 20px;
}

/* --- Platzhalter Sektion --- */
.placeholder-section {
    padding: 120px 50px;
    text-align: center;
    min-height: 50vh;
}

.placeholder-section h2 {
    font-family: var(--font-magic);
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* --- Dynamischer Footer --- */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    background-color: rgba(10, 11, 13, 0.95);
    font-size: 0.9rem;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--gold);
}

.separator {
    color: rgba(212, 175, 55, 0.3);
    margin: 0 10px;
}}