﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    background: #8c7997;
}

a {
    color: white;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.site-shell {
    background: #8c7997;
}

    .site-shell.mbsr {
        background-color: #3da6c0;
    }

    .site-shell.einzelberatung {
        background-color: #a34130;
    }

    .site-shell.ubermich,
    .site-shell.impressum {
        background-color: #ac9eb4;
    }


.site-header {
    background: transparent;
    height: 144px;
    display: flex;
    align-items: center;
}

.ubermich .site-header,
.impressum .site-header {
    background: #8c7997;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

    .logo a {
        font-size: 1.5rem;
        font-weight: 400;
    }

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

    .nav a {
        padding: 10px 15px;
        border: 1px solid transparent;
        transition: 0.3s;
    }

        .nav a:hover,
        .nav a.active {
            border-color: white;
            background: rgba(255,255,255,0.1);
        }

.logo-item,
nav a.logo-item:hover {
    width: 64px;
    height: 64px;
    background-image: url('../images/DAP-Logo64.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: 0;
    background-color: transparent;
}

.hero,
.hero.mbsr,
.hero.einzelberatung,
.hero.ubermich,
.hero.kontakt {
    background-image: url('../images/lotusDimCover.jpg');
    background-size: cover;
    background-position: center;
    overflow: clip;
    min-height: 430px;
}

    .hero.mbsr {
        background-image: url('../images/MBSRCover.jpg');
    }

    .hero.einzelberatung {
        background-image: url('../images/coachingCover.jpg');
    }

    .hero.ubermich {
        background-image: none;
        background-color: #ac9eb4;
    }

    .hero.kontakt {
        background-image: url('../images/lotusCoverMono.jpg');
    }


.quote-section {
    background: #8c7997;
    padding: 0;
}

    .quote-section.dark,
    .mbsr .quote-section.dark,
    .einzelberatung .quote-section.dark {
        background: #584a60;
        color: white;
    }

.mbsr .quote-section.dark {
    background: #31859b;
}

.einzelberatung .quote-section.dark {
    background: #7b3124;
}

.ubermich #slideshow {
    margin: 0 auto;
}

.ubermich .quote-section.dark {
    background: #8c7997;
}



blockquote {
    margin: 0 auto 0px;
    font-size: 1.1rem;
    padding: 20px 0 20px 0;
}

    blockquote p {
        margin: 0 auto;
        width: 70%;
    }

    blockquote cite {
        display: block;
        margin: 20px auto 0px;
        opacity: 0.7;
        font-size: 0.9rem;
        width: 70%;
    }

.content-section {
    padding: 0px 0 20px 0;
}

.content {
    width: 70%;
    margin: auto;
    /* color: black; */
}

    .content p {
        margin: 0 auto;
    }

.darktext {
    color: #584a60;
}

strong {
    font-size: 1.1em;
}



.wp-block-list {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 auto;
    width: 70%;
    padding: 0;
}

#slideshow {
    position: relative;
    width: 420px; /* adjust as needed */
    height: 500px;
    overflow: hidden;
}

    #slideshow img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 1s ease-in-out; /* fade duration */
    }

        #slideshow img.visible {
            opacity: 1;
        }


.list-group-item {
    position: relative;
    display: block;
    padding: 10px;
    color: white;
    text-decoration: if($link-decoration == none, null, none);
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #adadad;
}

h5 {
    font-size: 1.8rem !important;
}

.btn-outline-secondary {
}

.list-group {
    padding-bottom: 40px;
}

.card,
.alert-success {
    --bs-alert-bg: #ecccff;
    background-color: #c6b0d2;
    --bs-alert-border-color: transparent;
}





@media (max-width: 768px) {

    .site-header {
        height: auto;
        padding: 20px 0;
    }

    .nav {
        flex-direction: column;
    }

        .nav a {
            padding: 0 20px 0 20px;
            margin: 0;
            gap: 0;
            width: 100%;
            text-align: center;
        }

            .nav a:hover,
            .nav a.active {
                border-color: white;
                background: rgba(255,255,255,0.1);
            }

.nav a.active {
    font-weight: bold;

}

    .content,
    blockquote {
        width: 90%;
    }

    p {
        width: 70%;
    }

    .hero {
        height: 300px;
    }

    #slideshow {
        width: 420px; /* adjust as needed */
    }
}
