/* Phantasia Numerica - Global Design System 2.0 */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Lora:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --night-violet: #1a0b2e;
    --night-violet-light: #2d144d;
    --amber-orange: #ff8c00;
    --light-gold: #f1d592;
    --text-light: #e0e0e0;
    --border-gold: rgba(241, 213, 146, 0.4);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animations */
@keyframes glow-gold {
    0%, 100% { filter: drop-shadow(0 0 10px var(--amber-orange)); opacity: 0.5; }
    50% { filter: drop-shadow(0 0 30px var(--light-gold)); opacity: 0.9; }
}

@keyframes float-magic {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-5deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--night-violet);
    background: radial-gradient(circle at center, var(--night-violet-light) 0%, #0f061a 100%);
    color: var(--text-light);
    font-family: 'Lora', serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand-font {
    font-family: 'Cinzel', serif;
    color: var(--light-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* MAGICAL SYMBOLS - THE SOUL OF THE PAGE */
.magic-symbol {
    position: fixed;
    color: var(--light-gold);
    pointer-events: none;
    user-select: none;
    z-index: -1;
    animation: glow-gold 6s infinite ease-in-out, float-magic 12s infinite ease-in-out;
    opacity: 0.6;
}

.sym-1 { top: 10%; left: 3%; font-size: 8rem; } /* Rune ᚠ */
.sym-2 { top: 25%; right: 4%; font-size: 10rem; color: var(--amber-orange); } /* Compass ❂ */
.sym-3 { top: 45%; left: 2%; font-size: 7rem; } /* Scroll 📜 */
.sym-4 { top: 65%; right: 2%; font-size: 9rem; } /* Rune ᛟ */
.sym-5 { bottom: 10%; left: 5%; font-size: 6rem; color: var(--amber-orange); } /* Rune ᚦ */
.sym-6 { top: 15%; right: 40%; font-size: 5rem; opacity: 0.3; } /* Small Rune */
.sym-7 { bottom: 30%; left: 40%; font-size: 6rem; opacity: 0.3; } /* Small Rune */

/* Layout */
.container { width: 100%; max-width: 900px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; text-align: center; border-bottom: 1px solid rgba(241, 213, 146, 0.05); }

/* Header & Navigation */
header {
    padding: 25px 0;
    background: rgba(10, 10, 12, 0.98);
    border-bottom: 1px solid var(--border-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
}
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.4rem; color: var(--light-gold); font-family: 'Cinzel'; }
nav a { color: var(--light-gold) !important; font-family: 'Cinzel', serif; font-size: 1rem; margin-left: 30px; transition: var(--transition-smooth); }
nav a:hover { color: var(--amber-orange) !important; text-shadow: 0 0 10px var(--amber-orange); }

/* Hero Section - Radikaler Fokus auf Elisabeth */
.hero { padding: 40px 0; animation: fadeIn 2s ease-out; }
.hero-flex { 
    display: flex; 
    align-items: center; 
    gap: 60px; 
    text-align: left; 
    margin-top: 20px; 
}

.hero-img-container {
    flex: 0 0 45%; /* Das Bild nimmt fast die Hälfte des Platzes ein */
    height: 600px;
    overflow: hidden;
    border-radius: 40px;
    border: 2px solid var(--light-gold);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.6);
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Starker Zoom auf Elisabeth - wir schneiden die Umgebung weg */
    object-position: 40% 15%; 
    transform: scale(2.2); 
    transition: var(--transition-smooth);
}

.hero-text-block { 
    flex: 1;
}

.hero-text-block p {
    font-size: 1.2rem !important;
    line-height: 1.7 !important;
}

@media (max-width: 900px) {
    .hero-flex { flex-direction: column; text-align: center; gap: 40px; }
    .hero-img-container { width: 100%; height: 400px; }
    .hero-img { transform: scale(1.8); }
}

/* Buttons */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--amber-orange), #d4af37);
    color: #000 !important;
    padding: 18px 45px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.5);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 10;
}
.btn:hover { transform: translateY(-5px) scale(1.05); filter: brightness(1.2); box-shadow: 0 20px 60px rgba(255, 140, 0, 0.8); }

/* Offer Cards */
.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.offer-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-gold);
    padding: 40px;
    border-radius: 25px;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}
.offer-card:hover { border-color: var(--amber-orange); transform: translateY(-10px); background: rgba(255, 255, 255, 0.08); }
.price { font-size: 2rem; color: var(--amber-orange); display: block; margin: 20px 0; font-family: 'Cinzel'; font-weight: 700; }

/* Quick Rechner */
.quick-rechner {
    background: rgba(26, 11, 46, 0.7);
    border: 2px solid var(--amber-orange);
    padding: 50px;
    border-radius: 30px;
    max-width: 700px;
    margin: 40px auto;
    box-shadow: 0 0 60px rgba(0,0,0,0.6);
}
.quick-input {
    background: #000;
    border: 1px solid var(--light-gold);
    color: #fff;
    padding: 15px;
    font-size: 1.5rem;
    text-align: center;
    border-radius: 10px;
    margin: 10px;
    width: 120px;
}

footer { padding: 80px 0; border-top: 1px solid var(--border-gold); background: rgba(10, 10, 12, 0.98); }

@media (max-width: 768px) {
    .magic-symbol { font-size: 4rem !important; opacity: 0.4; }
    .hero h1 { font-size: 1.8rem; }
    .hero-img { width: 140px; height: 140px; }
}
	a {
  color: gold !important;
}

a:visited {
  color: gold !important;
}
a:hover {
  color: #f5c542 !important;
}