/* ========================================
   SHARED-YIN.CSS - Yin-spezifische Styles
   ========================================
   Philosophie: Passiv, Intern, Sammeln
   Font: Kalam - Ruhig & Introspektiv
   Farben: Lila-Töne (Nacht, Reflexion)
*/

/* === GOOGLE FONTS - Kalam === */
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap');

/* === YIN TYPOGRAPHY === */
body.yin-page {
    font-family: 'Kalam', cursive;
    font-weight: 300;
}

/* === LAYOUT FIX === */
/* Override content-with-sidebar von shared-nav.css */
.yin-page .content-with-sidebar {
    height: auto !important;           /* Nicht auf 100vh fixieren */
    min-height: 100vh;      /* Mindestens volle Höhe */
    justify-content: flex-start !important;  /* Content startet oben */
    padding-top: 2rem;
    overflow-y: visible !important;    /* Scrolling erlauben */
}

/* === YIN COLOR OVERRIDES === */
.yin-page {
    --accent-yin: hsla(285, 100%, 55%, 0.8); /* Etwas intensiver */
}

/* === YIN HEADINGS === */
.yin-page h1,
.yin-page h2,
.yin-page h3 {
    font-family: 'Kalam', cursive;
    font-weight: 700;
}

/* === YIN LINKS === */
.yin-page a {
    color: var(--accent-yin);
    transition: all 0.3s ease;
}

.yin-page a:hover {
    color: var(--accent-yin-secondary);
    text-shadow: 0 0 8px var(--accent-yin-secondary);
}

/* === YIN CONTENT STYLING === */
.yin-page .content-with-sidebar {
    /* Sanfte, ruhige Gestaltung */
    line-height: 1.8;
}

.yin-page p {
    margin-bottom: 1.5rem;
}

/* === YIN NAVIGATION LIST === */
.yin-nav-list {
    list-style: none;
    padding: 0;
}

.yin-nav-section {
    margin-bottom: 2rem;
}

.yin-nav-section h3 {
    color: var(--accent-yin);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.yin-nav-list li {
    margin-bottom: 0.5rem;
}

.yin-nav-list a {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.yin-nav-list a:hover {
    background-color: var(--accent-yin-secondary);
    transform: translateX(5px);
}

/* === SOFT SHADOWS === */
.yin-page .card,
.yin-page .box {
    box-shadow: 0 2px 8px rgba(156, 39, 176, 0.15);
    transition: box-shadow 0.3s ease;
}

.yin-page .card:hover,
.yin-page .box:hover {
    box-shadow: 0 4px 16px rgba(156, 39, 176, 0.25);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .yin-page h1 {
        font-size: 2rem;
    }

    .yin-page h2 {
        font-size: 1.5rem;
    }

    .yin-page h3 {
        font-size: 1.25rem;
    }
}
