/*
Theme Name: deniseNew
Author: Denise
Description: Optimiertes Breitbild-Layout für Achtsam-Sensibel.
Version: 1.2.0
*/

/* --- 1. GRUNDGERÜST & RESETS --- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans', sans-serif;
    overflow-x: hidden;
    background-color: #fcfcfc;
}

/* --- 2. NAVBAR (Maximale Breite & Zentrierung) --- */
.navbar {
    padding: 10px 4% !important; /* Nutzt 92% der Breite, lässt links/rechts nur 4% Luft */
    transition: all 0.4s ease-in-out;
    background-color: transparent !important;
    border: none;
    z-index: 1000;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3 Operatoren%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
}

.navbar.scrolled {
    background-color: #bc8a84 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 5px 4% !important;
}

.navbar > .container,
.navbar > .container-fluid {
    display: flex !important;
    justify-content: space-between !important;
    max-width: 100% !important;
    padding: 0 !important;
}

.navbar-brand {
    font-family: 'Mrs Saint Delafield', cursive;
    font-size: 38px !important;
    color: #bc8a84 !important;
    margin: 0 !important;
}

.navbar.scrolled .navbar-brand {
    color: #ffffff !important;
}

.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px;
}

.nav-link {
    color: #f2f2f2 !important;
    padding: 8px 12px !important;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.site-header {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -85px;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.content-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 1200px;
}

.content-overlay h1 {
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.6);
    line-height: 1.1;
}

.hero-link {
    background-color: #bc8a84;
    color: white !important;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: bold;
    display: inline-block;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* --- 4. HOMEPAGE POSTS (Endlich breit!) --- */
.homepage-post {
    padding: 40px 0;
}

.post-content {
    width: 92% !important;
    margin: 0 auto;
    padding: 50px;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

/* Stellt sicher, dass Bilder in den Boxen nicht alles sprengen */
.post-content img {
    max-width: 350px;
    height: auto;
    border-radius: 8px;
}

/* --- 5. RESPONSIVE --- */
@media (max-width: 991px) {
    .navbar { padding: 10px 2% !important; }
    .nav-link { font-size: 14px; padding: 5px 8px !important; }
}

@media (max-width: 767px) {
    .navbar-collapse {
        background-color: #bc8a84;
        padding: 20px;
        margin-top: 15px;
    }
    .post-content { padding: 25px; }
    .content-overlay h1 { font-size: 2rem; }
}

.screen-reader-text {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px; width: 1px;
    margin: -1px; padding: 0; border: 0;
}
/* Macht das Footer-Menü wieder sichtbar und schick */
.footer-links-inline {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex; /* Erzwingt die Ausrichtung nebeneinander */
    flex-wrap: wrap; /* Zeilenumbruch auf dem Handy */
    justify-content: center; /* Zentriert die Links */
}

.footer-links-inline li {
    margin: 0 15px; /* Abstand zwischen den Wörtern */
}

.footer-links-inline a {
    color: #ffffff !important; /* Weißer Text */
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
}

.footer-links-inline a:hover {
    color: #bc8a84 !important;
}

@media (max-width: 767px) {
    .navbar-toggler {
        border: 2px solid rgba(255, 255, 255, 0.8) !important;
        padding: 4px 8px;
    }

    .navbar-toggler-icon {
        background-image: none !important;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        width: 1.5em;
        height: 1.2em;
        position: relative;
    }

    .navbar-toggler-icon::before
   {
        content: '';
        display: block;
        width: 25px;
        height: 2px;
        background-color: white;
        box-shadow: 0 7px 0 0 white, 0 -7px 0 0 white;
    }
}