/* =====================================================
   GRUNDLAGEN
   ===================================================== */

   :root {
    --accent-color: rgb(219, 3, 252);
    --text-color: #000000;
    --bg-light: #ffffff;
    --bg-dark: #000000;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.7;
}

.handwritten {
    color: #0932b1;
    font-family: 'Great Vibes', sans-serif;
    font-size: 33px;
    font-style: normal;
    font-weight: 400;
}

/* =====================================================
   HEADER (ZENTRIERT)
   ===================================================== */

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
}

.header-inner.centered {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

/* Logo */

.logo-container.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.logo-container img {
    height: 200px;
    width: auto;
}

.logo-text {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    font-weight: 500;
}

/* Navigation unter dem Logo */

.main-nav.centered ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.main-nav a {
    text-decoration: none;
    color: #000;
    font-size: 0.9rem;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.link {
    text-decoration: none;
    transition: color 0.3s ease;
    color: var(--text-color);
}

.link:hover {
    color: var(--accent-color);
}

/* =====================================================
   CONTENT SECTIONS
   ===================================================== */

.content-section {
    padding: 6rem 2rem;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.content-section h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    margin-top: 0.75rem;
}

.content-section ul {
    padding-left: 1.2em;
}

.content-section.light {
    background-color: rgba(255, 255, 255, 1.0);
    color: #000;
}

.content-section.dark {
    background-color: rgba(0, 0, 0, 1.0);
    color: #ffffff;
}

/* Werte */

.values-list {
    list-style: none;
}

.values-list li {
    padding-left: 1.5rem;
    position: relative;
}

.values-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.remark {
    font-style: italic;
    font-weight: bold;
    color: var(--accent-color);
}

.highlight {
    color: var(--accent-color);
}

.separation-line {
    width: 30%;
    margin: 2rem auto; 
    border: none; 
    border-top: 2px solid var(--accent-color);
}

/* =====================================================
   PARALLAX
   ===================================================== */

.parallax-section {
    height: 60vh;
    min-height: 60vh;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                      url("../img/rose.png");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

@supports (height: 1svh) {
    .parallax-section {
        height: 60svh;
        min-height: 60svh;
    }
}

@supports (-webkit-touch-callout: none) {
    .parallax-section {
        background-attachment: scroll;
    }
}

.parallax-section.second {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                      url("../img/callas.png");
}

.parallax-section.third {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                      url("../img/orchidee.png");
}

.parallax-section.forth {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                      url("../img/sonja-mit-stuhl.png");
}

.parallax-overlay h2 {
    color: #ffffff;
    font-size: 2.2rem;
    letter-spacing: 0.15em;
    text-align: center;
}

.parallax-section.parallax-ios {
    position: relative;
    overflow: hidden;
    background-image: none;
    background-attachment: scroll;
}

.parallax-section.parallax-ios .parallax-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
}

.parallax-section.parallax-ios .parallax-overlay {
    position: relative;
    z-index: 1;
}

/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
    border-top: 1px solid #eaeaea;
    background-color: #ffffff;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    font-size: 0.85rem;
    color: #000;
}

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

@media (max-width: 768px) {

    .main-nav.centered ul {
        flex-direction: column;
        gap: 1.25rem;
    }

    .parallax-overlay h2 {
        font-size: 1.6rem;
        padding: 0 1rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-nav a {
        margin: 0 0.75rem;
    }
}
