/*
 * layout.css
 * Enthält: Seitenstruktur, Header, Navigation, Content-Container, Footer.
 */

.page-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    background-image: url('../img/bg_cut.avif');
    background-size: 100% auto;
    background-position: center 40px;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px;
    background-color: transparent;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 24px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-quote-trigger {
    cursor: pointer;
}

.logo-icon-wrap {
    position: relative;
    width: 300px;
    margin-left: -3px;
}

.logo-quote-trigger:focus-visible {
    outline: 2px solid #799e86;
    outline-offset: 6px;
    border-radius: 8px;
}

.logo-icon {
    width: 100%;
    margin-left: 0;
    display: block;
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    color: #2c3539;
    margin-bottom: -8px;
    margin-top: -15px;
}

.logo-text p {
    font-size: 15px;
    color: #555;
    letter-spacing: -0.5px;
    font-weight: bold;
    margin-left: 2px;
}

.nav-links a {
    font-family: 'Playfair Display', serif;
    text-decoration: none;
    color: #799e86;
    margin-left: 0;
    font-size: 1rem;
    transition: color 0.3s ease;
    font-weight: bold;
}

.nav-links a:hover {
    color: #393939;
}

.content-section {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px 100px;
    line-height: 1.75;
    font-size: 1.08rem;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    margin: 0 0 14px;
    font-size: 2rem;
    font-weight: 500;
    color: #2c3539;
}

.content-section h3 {
    font-family: 'Playfair Display', serif;
    margin: 38px 0 18px;
}

.content-section p {
    margin-bottom: 16px;
}

.content-section ul {
    margin: 8px 0 24px 24px;
}

.content-section li {
    margin-bottom: 12px;
}

.quotation {
    margin: 20px 0 24px 36px;
    padding-left: 18px;
    border-left: 2px solid #b9c3bc;
    font-style: italic;
    color: #2c3539;
}

.section-alt {
    background-color: #f1ebde;
    border-radius: 16px;
    padding-top: 48px;
    padding-bottom: 72px;
    margin-bottom: 72px;
}

.section-image {
    max-width: 100%;
    text-align: center;
    width: 60%;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 24px 32px 36px;
    color: #56615c;
    border-top: 1px solid rgba(121, 158, 134, 0.25);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: #2c3539;
}
