/* ========================================
   FINANZREISE – STARTSEITE STYLING
   Schwarz/Weiß-Wechsel mit Brand-Farben
   ======================================== */

/* RESET & BASICS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #181716;
    --color-white: #ffffff;
    --color-gold: #FED080;
    --color-gold-light: #FFF0C0;
    --color-gray: #666666;
    --color-gray-light: #f5f5f5;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Open Sans', sans-serif;
    
    --spacing-xs: 1rem;
    --spacing-sm: 2rem;
    --spacing-md: 4rem;
    --spacing-lg: 6rem;
    --spacing-xl: 8rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-black);
    background: var(--color-white);
    line-height: 1.7;
    font-size: 18px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* TYPOGRAPHY */
h1, h2, h3 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.highlight {
    color: var(--color-gold);
    font-weight: 600;
}

/* HEADER */
.header {
    background: var(--color-black);
    border-bottom: 1px solid #333;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-butterfly {
    width: 35px;
    height: auto;
    opacity: 0.9;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--color-white);
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--color-gold);
    color: var(--color-black) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.hero h1 {
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--color-gray);
}

.hero-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--color-gray);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
    box-shadow: 0 4px 15px rgba(254, 208, 128, 0.3);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(254, 208, 128, 0.4);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

/* SECTIONS */
.section {
    padding: var(--spacing-lg) 0;
}

/* Schwarz/Weiß-Wechsel */
.section-white {
    background: var(--color-white);
    color: var(--color-black);
}

.section-black {
    background: var(--color-black);
    color: var(--color-white);
}

.section-black h2,
.section-black h3 {
    color: var(--color-white);
}

.section-black p,
.section-black li {
    color: #cccccc;
}

.section-black .highlight {
    color: var(--color-gold);
}

.section-black .section-intro {
    color: #cccccc;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}

/* Schmetterlinge in Section Headers */
.section-butterfly-left,
.section-butterfly-right {
    position: absolute;
    top: 0;
    width: 40px;
    height: auto;
    opacity: 0.7;
}

.section-butterfly-left {
    left: 10%;
}

.section-butterfly-right {
    right: 10%;
}

.section-butterfly-single {
    width: 45px;
    height: auto;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    color: var(--color-gray);
}

/* FEATURES */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-black .feature h3 {
    color: var(--color-white);
}

.section-black .feature p {
    color: #cccccc;
}

.section-white .feature h3 {
    color: var(--color-black);
}

.section-white .feature p {
    color: var(--color-gray);
}

/* TALK SECTION */
.talk-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.talk-text ul {
    list-style: none;
    margin: 1.5rem 0;
}

.talk-text li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--color-gray);
}

.talk-text li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

.talk-text strong {
    color: var(--color-gold);
}

.talk-price {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--color-gray-light);
    border-left: 4px solid var(--color-gold);
    border-radius: 8px;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-black);
}

.price-amount {
    color: var(--color-gold);
    font-size: 2rem;
}

.price-note {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-gray);
}

.profile-image {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* QUEST SECTION */
.quest-worlds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.quest-card {
    background: var(--color-white);
    border: 2px solid #333;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.quest-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(254, 208, 128, 0.2);
}

.quest-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quest-card h3 {
    color: var(--color-black);
    margin-bottom: 0.75rem;
}

.quest-card p {
    color: var(--color-gray);
    font-size: 1rem;
}

.quest-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #cccccc;
}

/* ABOUT SECTION */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--color-gray);
}

.about-text strong {
    color: var(--color-gold);
}

/* CTA SECTION */
.section-cta {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.cta-content {
    text-align: center;
}

.cta-butterfly {
    width: 50px;
    height: auto;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.section-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #cccccc;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #999999;
}

/* FOOTER */
.footer {
    background: var(--color-gray-light);
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.footer-butterfly {
    width: 30px;
    height: auto;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--color-gray);
    transition: color 0.3s ease;
}

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

.footer-copy {
    color: var(--color-gray);
    font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-butterfly-left,
    .section-butterfly-right {
        display: none;
    }
    
    .talk-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quest-worlds {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

/* CUSTOM FEATURES LAYOUT - 3 oben, 1 unten zentriert */
.features-custom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.features-custom .feature:nth-child(4) {
    grid-column: 2 / 3;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .features-custom {
        grid-template-columns: 1fr;
    }
    
    .features-custom .feature:nth-child(4) {
        grid-column: 1;
    }
}