/* -----------------------------------------------------------
   GLOBAL
----------------------------------------------------------- */

body {
    margin: 0;
    background: #111; /* Dunkler Hintergrund */
    font-family: system-ui, sans-serif;
    color: #eee; /* Helle Schrift */
}

:root {
    --primary: #f5b041;   /* Gold */
    --dark: #0d0f12;      /* Sehr dunkles Grau */
    --light: #1a1d22;     /* Dunkles Grau statt Weiß */
    --border: #333;       /* Dunkler Rand */
}

/* -----------------------------------------------------------
   BANNER
----------------------------------------------------------- */

.wp-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    background: #000; /* Falls Bild hell ist */
}

.wp-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* -----------------------------------------------------------
   NAVIGATION
----------------------------------------------------------- */

.wp-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: #000; /* Schwarz statt Weiß */
    border-bottom: 1px solid #222;
}

.wp-btn {
    padding: 10px 18px;
    background: var(--dark);
    border: 1px solid var(--primary);
    border-radius: 6px;
    color: #eee;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.25s;
}

.wp-btn:hover {
    background: var(--primary);
    color: #000;
}

/* -----------------------------------------------------------
   LAYOUT (MAIN + SIDEBAR)
----------------------------------------------------------- */

.wp-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

.wp-main {
    width: 100%;
}

.wp-sidebar {
    background: var(--light); /* Dunkel statt Weiß */
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: #eee;
}

/* -----------------------------------------------------------
   SIDEBAR BLOCKS
----------------------------------------------------------- */

.sidebar-block {
    margin-bottom: 30px;
}

.sidebar-block h3 {
    margin-top: 0;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 6px;
    margin-bottom: 12px;
    color: #eee;
}

.sidebar-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-block ul li {
    margin-bottom: 8px;
}

.sidebar-block ul li a {
    color: #ccc;
    text-decoration: none;
}

.sidebar-block ul li a:hover {
    color: var(--primary);
}

.sidebar-btn {
    display: inline-block;
    padding: 8px 14px;
    background: var(--primary);
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.sidebar-btn:hover {
    background: #fff;
    border: 1px solid var(--primary);
}

/* -----------------------------------------------------------
   SECTIONS
----------------------------------------------------------- */

.wp-section {
    background: var(--light); /* Dunkel statt Weiß */
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid var(--border);
    color: #eee;
}

.wp-alt {
    background: #16191d; /* leicht heller dunkler Ton */
}

.wp-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.wp-lead {
    font-size: 1.2rem;
    color: #ccc;
}

/* -----------------------------------------------------------
   GRID & CARDS
----------------------------------------------------------- */

.wp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.wp-card {
    background: var(--light);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
    color: #eee;
}

/* -----------------------------------------------------------
   YOUTUBE EMBED
----------------------------------------------------------- */

.wp-youtube {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #000;
}

.wp-youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */

.wp-footer {
    text-align: center;
    padding: 20px;
    background: #000; /* Schwarz statt Weiß */
    border-top: 1px solid #222;
    margin-top: 40px;
    color: #eee;
}

.wp-footer a {
    color: var(--primary);
    text-decoration: none;
}

.wp-footer a:hover {
    text-decoration: underline;
}

/* -----------------------------------------------------------
   COOKIE-HINWEIS
----------------------------------------------------------- */

.cookie-hint {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--dark);
    color: #eee;
    padding: 15px 20px;
    border: 1px solid var(--primary);
    border-radius: 8px;
    z-index: 9999;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-hint button {
    background: var(--primary);
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    color: #000;
}

.cookie-hint button:hover {
    background: #fff;
}

/* -----------------------------------------------------------
   RESPONSIVE
----------------------------------------------------------- */

@media (max-width: 900px) {

    .wp-layout {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .wp-sidebar {
        margin-top: 20px;
    }

    .wp-banner {
        height: auto;
    }
}
