/*
Theme Name: Kuttel Ahoi Theme
Author: Dein KI Partner
Version: 1.0
Description: Ein buntes Podcast-Theme für Bernie & Piwi.
*/

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;700&display=swap');

/* --- Grundfarben aus dem Cover --- */
:root {
    --himmel-blau: #ADD8E6; /* Der Himmel */
    --kutter-holz: #8B5A2B; /* Das Boot */
    --gondel-rot: #D32F2F;  /* Die Gondel & T-Shirt */
    --wiese-gruen: #6B8E23; /* Die Wiese */
    --papier-weiss: #ffffff;
    --text-dunkel: #2c3e50;
}

body {
    background-color: var(--himmel-blau);
    font-family: 'Nunito', sans-serif;
    color: var(--text-dunkel);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Container für den Inhalt (wie ein Blatt Papier) */
.container {
    max-width: 900px;
    margin: 40px auto;
    background: var(--papier-weiss);
    padding: 40px;
    border-radius: 15px; /* Runde Ecken */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* Sanfter Schatten */
    border: 3px solid var(--text-dunkel); /* Comic-hafter Rand */
}

/* --- Typografie --- */
h1, h2, h3, h4 {
    font-family: 'Fredoka One', cursive;
    color: var(--kutter-holz);
    margin-top: 0;
}

h1 a {
    text-decoration: none;
    color: var(--kutter-holz);
    font-size: 2.5rem;
    text-shadow: 2px 2px 0px #fff, 4px 4px 0px var(--text-dunkel); /* Comic-Effekt */
}

a {
    color: var(--gondel-rot);
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* --- Header & Navigation --- */
header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px dashed var(--himmel-blau);
    margin-bottom: 30px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

nav ul li {
    display: inline-block;
    margin: 0 10px;
}

nav ul li a {
    color: var(--text-dunkel);
    font-size: 1.2rem;
    text-transform: uppercase;
    background: #eee;
    padding: 5px 15px;
    border-radius: 20px;
    border: 2px solid var(--text-dunkel);
}

nav ul li a:hover {
    background: var(--gondel-rot);
    color: white;
}

/* --- Artikel --- */
article {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.meta-info {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
    display: block;
}

/* --- Footer --- */
footer {
    text-align: center;
    margin-top: 50px;
    font-size: 0.8rem;
    color: var(--kutter-holz);
}
/* --- Logo Styling --- */
.site-logo {
    margin-bottom: 20px;
}

.custom-logo-link img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Leicht abgerundete Ecken für das Bild */
    border: 3px solid var(--text-dunkel); /* Comic-Rahmen um das Bild */
    box-shadow: 5px 5px 0px rgba(0,0,0,0.1); /* Comic-Schatten */
    display: block;
    margin: 0 auto; /* Zentrieren */
}

/* Den Text-Titel ausblenden, wenn ein Logo da ist? 
   Entferne die Kommentarzeichen unten, wenn das Logo den Text schon enthält */
/*
.site-branding {
    display: none;
}
*/