/*
Theme Name: BoldKite Custom
Author: BoldKite
Version: 1.2
Description: Minimalistisches High-Performance Theme für BoldKite Studios.
*/

/* 1. Grund-Einstellungen */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f9f9f9;
    color: #1a1a1a;
    line-height: 1.6;
}

/* 2. Der Header (Die Top-Bar) */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    padding: 10px 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alles beginnt links */
    max-width: 1600px;
    margin: 0 auto;
}

/* 1. Logo Bereich - Fix gegen Abschneiden beim Hover */
.logo-area {
    display: flex;
    align-items: center;
    /* Wir nehmen width/height hier weg, damit das Scaling Platz hat */
    flex-shrink: 0; 
}

img.main-logo {
    height: 50px !important; /* Deine Wunschhöhe */
    width: auto !important;   /* Behält 16:9 bei */
    display: block;
    transition: transform 0.3s ease; /* Weicher Übergang */
    transform-origin: left center; /* Das Logo wächst nach rechts/oben/unten, nicht nach links aus dem Bild */
}

img.main-logo:hover {
    transform: scale(1.05); /* 5% Vergrößerung */
}

/* 4. Haupt-Navigation (Studio & Analytics) */
.main-nav {
    margin-left: 20px; /* Ordentlicher Margin zum Logo wie gewünscht */
    display: flex;
    gap: 10px;
}

/* 5. Buttons Styling */
.nav-btn {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    padding: 10px 10px;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background: #f4f4f4;
    color: #000;
}

/* Sekundäre Buttons (Kontakt & Datenschutz) */
.nav-btn.secondary {
    font-weight: 500;
    font-size: 0.85rem;
    color: #666;
}

.nav-btn.secondary:hover {
    color: #1a1a1a;
    background: transparent;
    text-decoration: underline;
}

/* 6. Rechter Bereich (Kontakt, Datenschutz, Dropdown) */
.right-area {
    margin-left: auto; /* Schiebt diesen gesamten Block an den rechten Rand */
    display: flex;
    align-items: center;
    gap: 0px;
}

.utility-nav {
    display: flex;
    align-items: center;
    gap: 0px;
}

/* 7. Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: #f8f8f8;
    border: 1px solid #ddd;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 4px;
    border-radius: 6px;
    transition: border-color 0.2s;
}

.dropbtn:hover {
    border-color: #999;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    border-radius: 8px;
    margin-top: 10px;
    overflow: hidden;
}

.dropdown-content a {
    color: #333;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background-color: #f8f8f8;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* 8. Hero Section (Inhalt unter der Leiste) */
.hero-section {
    text-align: center;
    padding: 120px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-section p {
    font-size: 1.2rem;
    color: #555;
}

.nav-btn.active {
    background: #1a1a1a;
    color: #fff;
}

.content-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

.page-content h1 {
    font-size: 2.5rem;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Spezifische Styles für die Startseite (front-page) */

.large-logo-banner {
    width: 100%;
    padding: 0px 0; /* Großer Abstand oben und unten */
    background: transparent; /* Da der Hintergrund bereits weiß ist, brauchen wir hier nichts */
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-container {
    max-width: 1400px; /* Begrenzt die maximale Breite */
    width: 100%;
    text-align: center;
}

.large-hero-logo {
    width: 70%; /* Das Logo nimmt 80% des Containers ein */
    max-width: 500px; /* Es wird aber niemals breiter als 600px, damit es elegant bleibt */
    height: auto; /* Behält das Seitenverhältnis bei */
    display: block;
    margin: 0 auto;
}

.hero-description {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 80px;
}

.hero-description p {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

/* --- Footer Styling --- */

.site-footer {
    margin-top: 80px; /* Abstand zum Inhalt oben */
    width: 100%;
}

.footer-gray-bar {
    background-color: #f2f2f2; /* Das hellgraue Rechteck */
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between; /* Links Navigation, rechts Copyright */
    align-items: center;
}

.footer-nav {
    display: flex;
    gap: 25px;
}

.footer-nav a {
    text-decoration: none;
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #1a1a1a; /* Wird beim Hovern dunkler */
}

.footer-copyright {
    color: #999;
    font-size: 0.8rem;
}

/* Mobile Optimierung: Untereinander auf dem Handy */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-nav {
        justify-content: center;
    }
}