/* =========================
SANIELYA HOME STYLE
========================= */

body {
    background: #fcfaf7;
    color: #4a4a4a;
    font-family: "Raleway", sans-serif;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* =========================
SECTION SPACING
========================= */

.section-soft {
    padding: 90px 0;
}

.section-soft-sm {
    padding: 70px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.section-heading .eyebrow {
    font-size: 15px;
    font-style: italic;
    color: #7b7b7b;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-family: "Lora", serif;
    font-size: 36px;
    font-weight: 400;
    color: #3e4741;
    margin-bottom: 12px;
}

.section-heading p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: #66706a;
}

/* =========================
HERO
========================= */

.hero-soft {
    padding: 95px 0 75px;
    background: linear-gradient(180deg, #dfe8f1 0%, #e7eee4 50%, #f1e7dc 100%);
}

.hero-soft-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.hero-soft-image {
    margin-bottom: 20px;
}

.hero-soft-image img {
    width: 280px !important;
    max-width: 280px !important;
    height: auto !important;
    border-radius: 18px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.hero-soft-kicker {
    font-size: 16px;
    font-style: italic;
    color: #7a7a7a;
    margin-bottom: 16px;
}

.hero-soft-title {
    font-family: "Lora", serif;
    font-size: 48px;
    line-height: 1.22;
    font-weight: 400;
    color: #3f4742;
    margin-bottom: 22px;
}

.hero-soft-text {
    font-size: 18px;
    line-height: 1.9;
    color: #5f665f;
    max-width: 720px;
    margin: 0 auto 30px;
}

/* =========================
BUTTONS
========================= */

.soft-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-soft-primary,
.btn-soft-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: all .25s ease;
    font-size: 14px;
}

.btn-soft-primary {
    background: #aebfd1;
    color: #fff;
}

.btn-soft-primary:hover {
    background: #9aaec4;
    color: #fff;
}

.btn-soft-secondary {
    border: 1px solid #b7c7b0;
    color: #5d685b;
    background: transparent;
}

.btn-soft-secondary:hover {
    background: #b7c7b0;
    color: #fff;
}

/* =========================
ENTRY CARDS
========================= */

.entry-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform .25s ease, box-shadow .25s ease;
}

.entry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}

.entry-card h3 {
    font-family: "Lora", serif;
    font-size: 24px;
    margin-bottom: 14px;
    color: #3e4741;
}

.entry-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #66706a;
    margin-bottom: 18px;
}

.entry-card a {
    color: #7f9777;
    font-weight: 600;
}

.entry-card a:hover {
    color: #61755b;
}

/* =========================
POST CARDS
========================= */

.post-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 28px rgba(0,0,0,0.05);
    transition: transform .3s ease, box-shadow .3s ease;
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.post-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.post-card .card-body {
    padding: 24px;
}

.post-meta {
    font-size: 13px;
    color: #8b8b8b;
    margin-bottom: 12px;
}

.post-category {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .3px;
    color: #8aa184;
    margin-bottom: 12px;
    font-weight: 600;
}

.post-category:hover {
    color: #6e8468;
}

.post-card h3,
.post-card h5 {
    font-family: "Lora", serif;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.post-card h3 a,
.post-card h5 a {
    color: #3e4741;
}

.post-card h3 a:hover,
.post-card h5 a:hover {
    color: #6e8468;
}

.post-excerpt {
    font-size: 16px;
    line-height: 1.8;
    color: #66706a;
    margin-bottom: 18px;
}

.soft-link {
    color: #7f9777;
    font-weight: 600;
}

.soft-link:hover {
    color: #61755b;
}

/* =========================
FEATURE POST
========================= */

.hero-feature {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0,0,0,0.06);
}

.hero-feature img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.hero-feature-content {
    padding: 35px;
    background: #fffdf9;
}

.hero-feature-content h2 {
    font-family: "Lora", serif;
    font-size: 34px;
    line-height: 1.35;
    margin-bottom: 14px;
    color: #3e4741;
}

.hero-feature-content h2 a {
    color: #3e4741;
}

.hero-feature-content h2 a:hover {
    color: #6e8468;
}

/* =========================
ABOUT
========================= */

.about-soft {
    background: #f5efe8;
    border-radius: 24px;
    padding: 45px;
}

.about-soft h2 {
    font-family: "Lora", serif;
    font-size: 34px;
    margin-bottom: 16px;
    color: #3e4741;
}

.about-soft p {
    font-size: 17px;
    line-height: 1.9;
    color: #626b65;
    margin-bottom: 18px;
}

.about-soft-image {
    width: 100%;
    max-width: 300px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

/* =========================
SAFE SPACE
========================= */

.safe-space-grid .safe-box {
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.05);
    height: 100%;
}

.safe-space-grid h3 {
    font-family: "Lora", serif;
    font-size: 24px;
    margin-bottom: 12px;
    color: #3e4741;
}

.safe-space-grid p {
    font-size: 16px;
    line-height: 1.8;
    color: #66706a;
    margin: 0;
}

/* =========================
POST CONTENT (single.php)
========================= */

.post-content {
    max-width: 720px;
    margin: auto;
    font-size: 18px;
    line-height: 1.95;
    color: #4a4a4a;
}

.post-content p {
    margin-bottom: 22px;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    font-family: "Lora", serif;
    color: #3e4741;
    margin-top: 36px;
    margin-bottom: 14px;
}

.post-content img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    margin: 30px 0;
}

.blog-img-main img {
    max-height: 500px;
}

/* =========================
ARCHIVE PAGE
========================= */

.archive-soft-header {
    padding: 80px 0 50px;
    background: linear-gradient(180deg, #e7eee4 0%, #f3eadf 100%);
}

.archive-soft-inner {
    max-width: 760px;
    margin: 0 auto;
}

.archive-soft-kicker {
    font-size: 15px;
    font-style: italic;
    color: #7a7a7a;
    margin-bottom: 12px;
}

.archive-soft-title {
    font-family: "Lora", serif;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 400;
    color: #3f4742;
    margin-bottom: 14px;
}

.archive-soft-text {
    font-size: 17px;
    line-height: 1.8;
    color: #626b65;
}

.archive-empty {
    padding: 60px 20px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.05);
}

.archive-empty h2 {
    font-family: "Lora", serif;
    font-size: 32px;
    color: #3e4741;
    margin-bottom: 12px;
}

.archive-empty p {
    font-size: 16px;
    color: #66706a;
    margin-bottom: 20px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {
    .hero-soft-title {
        font-size: 38px;
    }

    .hero-feature img {
        height: 320px;
    }

    .hero-feature-content {
        padding: 28px;
    }
}

@media (max-width: 767px) {
    .hero-soft {
        padding: 75px 0 55px;
    }

    .hero-soft-title,
    .section-heading h2,
    .about-soft h2,
    .archive-soft-title {
        font-size: 30px;
    }

    .hero-soft-text,
    .post-excerpt,
    .about-soft p,
    .section-heading p,
    .archive-soft-text {
        font-size: 15px;
    }

    .post-card img {
        height: 220px;
    }

    .about-soft {
        padding: 30px 24px;
    }
}
/* =========================
HEADER LAYOUT FIX
========================= */

/* Top Header */
.top-header{
    padding:10px 0 !important;
    background:#fcfaf7;
    border-bottom:1px solid rgba(0,0,0,0.05);
}

/* Zeile */
.top-header .row{
    min-height:auto;
    align-items:center;
}

/* Logo */
.brand-name{
    display:flex;
    align-items:center;
}

.brand-name img{
    max-height:110px !important;
    height:auto !important;
    width:auto !important;
    display:block;
}

/* Navbar */
.kavya-navbar{
    padding:10px 0 !important;
    background:#fcfaf7 !important;
    border-bottom:1px solid rgba(0,0,0,0.05);
}

/* Menü */
.kavya-navbar .nav-menu{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:28px;
}

/* Menü Links */
.kavya-navbar .nav-menu .nav-item a{
    color:#5f665f !important;
    font-size:14px !important;
    font-weight:500 !important;
}

/* Hover Farbe */
.kavya-navbar .nav-menu .nav-item:hover .nav-link{
    color:#7f9777 !important;
}

/* Dropdown Menü */
.kavya-navbar .drop-menu{
    background:#fff !important;
    border-radius:14px;
    box-shadow:0 12px 28px rgba(0,0,0,0.08) !important;
}

/* Dropdown Links */
.kavya-navbar .drop-menu-item a{
    color:#5f665f !important;
}

.kavya-navbar .drop-menu-item a:hover{
    color:#7f9777 !important;
    background:#f7f3ee !important;
}

/* Mobile Anpassung */
@media (max-width:991px){

.top-header{
text-align:center;
}

.brand-name{
justify-content:center;
}

.kavya-navbar .nav-menu{
flex-direction:column;
gap:10px;
}

}
/* =========================
REMOVE ORANGE
========================= */

.kavya-navbar .nav-menu .nav-item a:hover{
    color:#7f9777 !important;
}

.kavya-navbar .nav-menu .nav-item:hover .arrow-icon span{
    background:#7f9777 !important;
}

.kavya-navbar .drop-menu-item a:hover{
    background:#f7f3ee !important;
    color:#7f9777 !important;
}

/* Dropdown Pfeile */
.arrow-icon span{
    background:#7f9777 !important;
}

/* Falls irgendwo orange border ist */
.kavya-navbar .drop-menu{
    border-top:2px solid #7f9777 !important;
}
/* =========================
SINGLE PAGE ORANGE OVERRIDE
========================= */

.category-tag-list .category-tag-name a {
    color: #7f9777 !important;
}

.category-tag-list .category-tag-name a:hover {
    color: #6e8468 !important;
}

.category-tag-list .category-tag-name:after {
    color: #b7c7b0 !important;
}

/* Titel und Links in empfohlenen Beiträgen */
.related-posts .post-card h5 a,
.related-posts .post-card h3 a,
.related-posts .post-card a {
    color: #3e4741 !important;
}

.related-posts .post-card h5 a:hover,
.related-posts .post-card h3 a:hover,
.related-posts .post-card a:hover {
    color: #7f9777 !important;
}

/* Falls irgendwo noch orange Hover-Farbe von altem Template sitzt */
.blog-title-wrap a:hover,
.blog-desc a:hover,
.related-posts a:hover {
    color: #7f9777 !important;
}
.post-content {
    font-size: 18px;
    line-height: 2;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
}
.question-box {
    margin-top: 40px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 12px;
}