/*  
   Reset und Basis-Styles
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #004b8b;
    --secondary-color: #005dad;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --font-primary: Helvetica, sans-serif;
    --max-width: 1200px;

    /* Philosophie Überlappung */
    --philo-overlap: clamp(240px, 30vw, 380px);
}

/*  
   Body + Fester Hintergrund (Statue)
*/
body {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--white);
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
background: url("kraus-rechtsanwaelte-justitia.jpg") center calc(30% - 80px) / cover no-repeat;
}

/*  
   Container
*/
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/*  
   Navigation
*/
.navigation {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navigation.scrolled {
    background: var(--primary-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: none;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    height: 74px;
}

.nav-logo a:hover,
.nav-logo a:focus {
    opacity: 0.85;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-left: auto;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    transition: 0.3s;
}

/* HERO SECTION */
.hero-section {
    min-height: 90vh;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.hero-section::after {
    /* der Pfeil wurde deaktiviert im Original, bei Bedarf wieder aktivieren */
    /* content: "";
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 25px solid #004B8B;
    z-index: 10; */
}

.philosophie-section {
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

.hero-content {
    text-align: center;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.logo-container {
    max-width: 500px;
    margin: 0 auto;
    animation: fadeInDown 1s ease-out;
}

.logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
    max-width: 100%;
}

.hero-arrow,
.arrow-triangle {
    display: none;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*
Shape Startseite
*/
.header-shape {
    position: relative;
    z-index: 2;
    margin-top: -5px;
}

/* Weißer Block unter dem Shape (Startseite) */
.header-shape::after {
    content: "";
    left: 0;
    right: 0;
    bottom: -80px;
    height: 120px;
    background: #fff;
    z-index: 0;
}

.elementor-shape {
    direction: ltr;
    left: 0;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
    bottom: -26px;
}

.elementor-shape svg {
    display: block;
    height: 100%;
    width: 100%;
}

.elementor-shape path {
    fill: white;
}

/*  

   Philosophie
*/
.philosophie-section {
    padding: 80px 0;
    z-index: 1;
    background: #fff;
    margin-top: 25px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 60px;
}

.section-header h1 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: -30px;
    font-family: Helvetica, sans-serif;
    font-weight: bold;
}

.section-header h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 10px;
    margin-left: 30%;
    font-family: Helvetica, sans-serif;
    font-weight: bold;
}

.section-header .subtitle {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-family: Georgia, serif;
    margin-inline-end: 10%;
    margin-right: 150px;
    font-weight: 400;
    margin-bottom: 100px;
}

.team-image {
    text-align: center;
    margin-bottom: 10px;
}

.team-image img {
    max-width: 100%;
    height: auto;
    margin-left: 20%;
    margin-bottom: calc(var(--philo-overlap) * -1) !important;
}

.philosophie-content .content-grid {
    display: grid;
    grid-template-columns: clamp(360px, 38vw, 440px) 1fr !important;
    gap: 40px;
    align-items: start;
    margin-bottom: 150px;
}

.image-column img {
    width: 100%;
    height: auto;
    box-shadow: 10px -5px 30px 0 rgba(0, 75, 139, 0.37);
}

.text-column {
    padding-top: var(--philo-overlap) !important;
    margin-top: 0 !important;
    max-width: 680px;
    width: 70%;
    text-align: left;
    margin-right: auto;
}

.text-column p {
    margin-top: 40px;
    margin-left: 40px;
    font-size: 18px;
    line-height: 23.4px;
    font-weight: bold;
    font-family: Helvetica, sans-serif;
    color: #004B8B;
}

/*  
   SCHWERPUNKTE
*/
.schwerpunkte-section {
    overflow: visible !important;
    padding: clamp(90px, 10vw, 140px) 0;
    color: var(--white);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
    min-height: fit-content;
}

.schwerpunkte-section::before {
    content: none !important;
}

.schwerpunkte-section::after {
    content: '';
    position: absolute;
    inset: 1;
    background: rgba(0, 75, 139, 0.82);
    z-index: -1;
}

.schwerpunkte-section .container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(16px, 2.4vw, 32px);
    align-items: start;
}

.schwerpunkte-head {
    grid-column: 3 / 9;
    margin: 0;
    padding: 0;
    text-align: left;
}

.schwerpunkte-head .section-title-small {
    font-family: "Georgia", serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
    font-size: 36px;
    color: #fff;
    text-shadow: none;
}

.schwerpunkte-head .section-title {
    font-family: "Helvetica", sans-serif;
    font-weight: bold;
    line-height: 1.1;
    font-size: 36px;
    color: #fff;
    margin-bottom: 56px;
    text-shadow: none;
    display: inline-block;
    margin-left: -60px;
}

.focus-grid {
    grid-column: 4 / 11 !important;
    margin: 0 !important;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 64px);
    min-width: 0;
}

.focus-column {
    min-width: 0;
}

.column-title {
    font-family: "Georgia", serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 28px;
    color: #fff;
    margin-bottom: 18px;
    width: auto;
    text-shadow: none;
}

.focus-column ul {
    list-style-type: square;
    padding-left: 18px;
    text-shadow: none;
}

.focus-column li {
    font-family: "Helvetica", sans-serif;
    font-weight: 700;
    font-size: clamp(15px, 1.6vw, 18px);
    color: #fff;
    list-style-position: outside;
    padding-left: 0.5em;
    line-height: 23.4px;
    text-shadow: none;
}

.additional-info {
    grid-column: 3 / 9;
    text-align: left;
    font-family: "Helvetica", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 23.4px;
    color: #fff;
    margin-top: 60px;
    position: relative;
    z-index: 1;
    text-shadow: none;
}

/*  
   About Section
*/
.about-section {
    background: #fff;
    position: relative;
    z-index: 3;
    padding: 100px 0 150px;
}

.about-section .section-title {
    margin: 0 0 -70px 200px;
    font-size: 40px;
    line-height: 40px;
    color: var(--primary-color);
    font-weight: normal;
    font-family: Georgia, serif;
}

.team-grid {
    position: relative;
    margin: 0 auto;
    min-height: 760px;
    padding: 0 20px 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 980px;
    margin-bottom: 50px;
}

.team-member {
    position: absolute;
    width: 500px;
    text-align: right;
}

.team-portrait {
    width: 360px;
    height: auto;
    border-radius: 0;
    background: #fff;
    box-shadow: 10px -5px 30px 0 rgba(0, 75, 139, 0.37);
    margin-top: 10%;
}

.team-member h3 {
    margin: 0 0 6px 0;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: .2px;
}

.team-member .title {
    margin: 0 0 14px 0;
    font-weight: 500;
    color: #004b8b;
}

.team-member .bio {
    color: var(--primary-color);
}

.team-info1 {
    margin-top: 14px;
    text-align: left;
    max-width: 520px;
    overflow: visible;
    margin-left: -70px;
}

.team-info1 h3 {
    font-size: clamp(26px, 2.4vw, 34px);
    line-height: 1.15;
    font-family: Helvetica, sans-serif;
    font-size: 28px;
    line-height: 28px;
}

.team-info1 .title {
    font-size: 28px;
    font-family: Georgia, serif;
    line-height: 28px;
    letter-spacing: normal;
}

.team-info1 .bio {
    margin-left: 20%;
    font-family: Helvetica, sans-serif;
    line-height: 23.4px;
    font-size: 18px;
    font-weight: 700;
    color: #004b8b;
}

.team-info2 {
    margin-top: 14px;
    margin-left: 120px;
    text-align: left;
    max-width: 520px;
    overflow: visible;
}

.team-info2 h3 {
    font-size: clamp(28px, 2.6vw, 36px);
    line-height: 1.15;
    font-family: Helvetica, sans-serif;
    font-size: 28px;
    line-height: 28px;
    margin-left: 10%;
}

.team-info2 .title {
    white-space: nowrap;
    word-break: keep-all;
    hyphens: none;
    letter-spacing: normal;
    display: inline-block;
    font-size: 28px;
    line-height: 28px;
    font-family: Georgia, serif;
    margin-left: 10%;
}

.team-info2 .bio {
    font-family: Helvetica, sans-serif;
    line-height: 23.4px;
    font-size: 18px;
    font-weight: 700;
    color: #004b8b;
}

.team-member:nth-child(1) {
    left: 100px;
    top: 100px;
    z-index: 2;
    text-align: left;
}

.team-member:nth-child(2) {
    left: 440px;
    top: 0;
    z-index: 1;
    text-align: left;
}

.team-grid .team-member:first-child,
.team-grid .team-member:last-child {
    display: block;
    margin: 0;
    border-radius: 16px;
}

/*  
   Kontakt Section
*/
.contact-section {
    padding: 80px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
    background: transparent;
    min-height: 45vh;
}

.contact-section::before {
    content: none !important;
}

.contact-section::after {
    content: '';
    position: absolute;
    inset: 1;
    background: rgba(0, 75, 139, 0.82);
    z-index: -1;
}

.contact-wrapper {
    display: flex;
    justify-content: end;
    position: relative;
    z-index: 1;
    margin-top: 50px;
    transform: translateX(-200px);
}

.contact-content {
    max-width: 800px;
    text-align: left;
}

.contact-content h2 {
    font-size: 28px;
    line-height: 28px;
    text-align: left;
    font-family: Georgia, Times, serif;
    font-weight: normal;
    margin-right: 50%;
    margin-bottom: 20px;
    transform: translateX(-40px);
}

.contact-content address {
    font-style: normal;
    line-height: 23.4px;
    font-size: 18px;
    font-family: Helvetica, sans-serif;
}

.contact-content p {
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 23.4px;
    font-family: Helvetica, sans-serif;
}

.contact-content a {
    color: var(--white);
    font-family: Helvetica, sans-serif;
    text-decoration: none;
    font-style: normal;
    font-weight: bold;
    line-height: 23.4px;
    font-size: 18px;
}

/* 
   Footer (allgemein)
*/
.main-footer {
    background: var(--primary-color);
    padding: 30px 0;
    color: var(--white);
}

.main-footer .container {
    max-width: 100%;
    padding: 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
}

.footer-copyright {
    font-size: 15px;
    font-weight: bold;
    font-family: Helvetica, sans-serif;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-family: Helvetica, sans-serif;
    font-weight: bold;
    margin: 0;
}

/* Alter Scroll-Top-Button (falls noch verwendet) */
#scroll-top {
    position: fixed;
    bottom: 10px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

#scroll-top svg {
    fill: var(--white);
}

#scroll-top.visible {
    display: none;
}

/* ===============================
   RESPONSIVE – allgemeine Teile
   =============================== */

/* Tablet Tuning Philosophie */
@media (max-width: 1199px) and (min-width: 992px) {
    :root {
        --philo-overlap: clamp(240px, 36vw, 340px);
    }

    .philosophie-content .content-grid {
        grid-template-columns: clamp(320px, 34vw, 400px) 1fr !important;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    :root {
        --philo-overlap: clamp(220px, 38vw, 320px);
    }

    .philosophie-content .content-grid {
        grid-template-columns: clamp(300px, 33vw, 380px) 1fr !important;
    }
}

@media (max-width: 1120px) and (min-width: 769px) {
    .about-section .section-title {
        margin: 0 0 -70px 100px;
    }

    .team-grid {
        max-width: 100%;
        padding: 0 20px 40px;
    }

    .team-member:nth-child(1) {
        left: 50px;
        top: 100px;
    }

    .team-member:nth-child(2) {
        left: 340px;
        top: 0;
    }

    .team-member {
        width: 420px;
    }

    .team-portrait {
        width: 300px;
    }

    .team-info1,
    .team-info2 {
        max-width: 450px;
    }

    .team-info1 {
        margin-left: -50px;
    }

    .team-info2 {
        margin-left: 100px;
    }
}

@media (max-width: 1400px) and (min-width: 992px) {
    .schwerpunkte-head {
        grid-column: 2 / 10;
    }

    .focus-grid {
        grid-column: 4 / 11 !important;
    }

    .additional-info {
        grid-column: 2 / 10;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .schwerpunkte-head {
        grid-column: 2 / 11;
    }

    .focus-grid {
        grid-column: 3 / 12 !important;
        grid-template-columns: 1fr 1fr;
    }

    .additional-info {
        grid-column: 2 / 11;
    }
}

/* MOBILE ≤ 768px (allgemein) */
@media (max-width: 768px) {

    /* Container Mobile */
    .container {
        padding: 0 16px;
    }

    /* Navigation Mobile */
    .nav-wrapper {
        height: 60px;
        padding: 0 16px;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--primary-color);
        flex-direction: column;
        align-items: flex-start;
        justify-content: start;
        padding-top: 40px;
        padding-left: 20px;
        transition: left 0.3s ease;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: left;
    }

    .nav-menu a {
        display: block;
        padding: 18px 20px;
        font-size: 18px;
        justify-content: flex-start;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Hero Mobile */
    .hero-section {
        min-height: 70vh;
        justify-content: flex-start;
    }

    .hero-section::after {
        bottom: -30px;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-top: 18px solid var(--primary-color);
    }

    .hero-content {
        padding: 60px 20px;
        text-align: left;
    }

    .logo-container {
        max-width: 280px;
        margin: 0;
    }

    body::before {
background-image: url('kraus-rechtsanwaelte-justitia.jpg');
        background-position: center;
    }

    /* Philosophie Mobile */
    .philosophie-section {
        padding: 50px 0;
        margin-top: 20px;
    }

    .section-header {
        margin-top: 60px;
        margin-bottom: 30px;
        text-align: left;
    }

    .section-header h1 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: -8px;
        text-align: left;
    }

    .section-header h2 {
        font-size: 28px;
        line-height: 32px;
        margin-left: 0;
        text-align: left;
    }

    .section-header .subtitle {
        font-size: 28px;
        line-height: 32px;
        margin-inline-end: 0;
        margin-bottom: 40px;
        text-align: left;
    }

    .team-image {
        margin-bottom: 24px;
        text-align: left;
    }

    .team-image img {
        display: none !important;
    }

    .philosophie-content .content-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        margin-bottom: 60px;
    }

    .image-column {
        padding: 0 16px;
        text-align: left;
        margin: 10px 0;
    }

    .image-column img {
        width: 100%;
        max-width: 360px;
        height: auto;
        display: block;
        margin: 0;
    }

    .text-column {
        padding-top: 0 !important;
        margin-top: 0 !important;
        width: 100%;
        max-width: none;
        padding: 0 16px;
        text-align: left;
    }

    .text-column p {
        font-size: 15px;
        line-height: 1.65;
        margin-left: 0;
        margin-top: 20px;
        text-align: left;
    }

    /* Schwerpunkte Mobile */
    .schwerpunkte-section {
        padding: 50px 0;
    }

    .schwerpunkte-section .container {
        display: block;
        padding: 0 20px;
    }

    .schwerpunkte-head {
        text-align: left !important;
        margin: 0 0 24px 0;
    }

    .schwerpunkte-head .section-title-small {
        font-size: 28px;
        line-height: 32px;
        text-align: left;
    }

    .schwerpunkte-head .section-title {
        font-size: 28px;
        line-height: 32px;
        margin-left: 0 !important;
        margin-bottom: 30px;
        display: block;
        text-align: left;
    }

    .focus-grid {
        margin: 0 !important;
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .column-title {
        font-size: 24px;
        line-height: 28px;
        text-align: left !important;
        margin: 0 0 12px 0;
    }

    .focus-column ul {
        padding-left: 20px;
        text-align: left;
    }

    .focus-column li {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 8px;
        text-align: left;
    }

    .additional-info {
        margin: 30px 0 0 0;
        text-align: left;
        font-size: 15px;
        line-height: 1.6;
    }

    /* About Mobile */
    .about-section {
        padding: 60px 0 80px;
    }

    .about-section .section-title {
        margin: 0 0 40px 0;
        font-size: 28px;
        line-height: 32px;
        text-align: left;
    }

    .team-grid {
        min-height: unset;
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        justify-items: flex-start;
        padding: 0 16px 20px;
        margin-bottom: 0;
    }

    .team-member {
        position: static !important;
        width: 100% !important;
        max-width: 360px;
        left: auto !important;
        top: auto !important;
        text-align: left !important;
    }

    .team-portrait {
        width: 100%;
        margin-top: 0 !important;
        box-shadow: 10px -5px 30px 0 rgba(0, 75, 139, 0.37);
    }

    .team-info1,
    .team-info2 {
        margin: 20px 0 0 0 !important;
        text-align: left !important;
        max-width: 100%;
    }

    .team-info1 h3,
    .team-info2 h3 {
        font-size: 24px;
        line-height: 28px;
        margin: 0 0 8px 0 !important;
        text-align: left;
    }

    .team-info1 .title,
    .team-info2 .title {
        font-size: 24px;
        line-height: 28px;
        margin: 0 0 16px 0 !important;
        white-space: normal;
        text-align: left;
    }

    .team-info1 .bio,
    .team-info2 .bio {
        font-size: 15px;
        line-height: 1.6;
        margin: 0 !important;
        text-align: left;
    }

    /* Kontakt Mobile */
    .contact-section {
        padding: 50px 0;
        min-height: auto;
    }

    .contact-wrapper {
        justify-content: flex-start;
        margin-top: 0;
        margin-left: 0;
        transform: translateX(0);
        padding: 0 20px;
    }

    .contact-content {
        max-width: 100%;
        text-align: left;
    }

    .contact-content h2 {
        font-size: 24px;
        line-height: 28px;
        margin-right: 0;
        margin-bottom: 24px;
        transform: translateX(0);
        text-align: left;
    }

    .contact-content address {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 12px;
        text-align: left;
    }

    .contact-content p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 12px;
        text-align: left;
    }

    .contact-content a {
        font-size: 15px;
        line-height: 1.6;
        word-break: break-word;
        text-align: left;
    }

    /* Footer Mobile */
    .main-footer {
        padding: 24px 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: left;
        align-items: flex-start;
        padding: 0 20px;
    }

    .footer-copyright {
        font-size: 14px;
        order: 2;
        text-align: left;
    }

    .footer-links {
        order: 1;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-scroll-top {
        width: 32px;
        height: 32px;
        margin-left: 0;
    }

    #scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* SEHR KLEINE HANDYS ≤ 480px (allgemein) */
@media (max-width: 480px) {

    /* Container */
    .container {
        padding: 0 12px;
    }

    /* Navigation */
    .nav-wrapper {
        height: 56px;
        padding: 0 12px;
    }

    .nav-menu {
        top: 56px;
        height: calc(100vh - 56px);
        padding-top: 30px;
        padding-left: 20px;
        align-items: flex-start;
    }

    .nav-menu li {
        text-align: left;
    }

    .nav-menu a {
        padding: 16px 20px;
        font-size: 16px;
        text-align: left;
        justify-content: flex-start;
    }

    /* Hero */
    .hero-section {
        min-height: 60vh;
        justify-content: flex-start;
    }

    .hero-content {
        padding: 40px 16px;
        text-align: left;
    }

    .logo-container {
        max-width: 240px;
        margin: 0;
    }

    /* Philosophie */
    .philosophie-section {
        padding: 40px 0;
    }

    .section-header {
        margin-top: 40px;
        margin-bottom: 24px;
        text-align: left;
    }

    .section-header h1,
    .section-header h2,
    .section-header .subtitle {
        font-size: 24px;
        line-height: 28px;
        text-align: left;
    }

    .text-column p {
        font-size: 14px;
        margin-top: 16px;
        text-align: left;
    }

    /* Schwerpunkte */
    .schwerpunkte-section {
        padding: 40px 0;
    }

    .schwerpunkte-section .container {
        padding: 0 16px;
    }

    .schwerpunkte-head .section-title-small,
    .schwerpunkte-head .section-title {
        font-size: 24px;
        line-height: 28px;
        text-align: left;
    }

    .schwerpunkte-head .section-title {
        margin-bottom: 24px;
    }

    .column-title {
        font-size: 20px;
        line-height: 24px;
        text-align: left;
    }

    .focus-column ul {
        text-align: left;
    }

    .focus-column li {
        font-size: 14px;
        text-align: left;
    }

    .additional-info {
        font-size: 14px;
        margin-top: 24px;
        text-align: left;
    }

    /* About */
    .about-section {
        padding: 50px 0 60px;
    }

    .about-section .section-title {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 32px;
        text-align: left;
    }

    .team-grid {
        gap: 40px;
        padding: 0 12px 16px;
        justify-items: flex-start;
    }

    .team-member {
        max-width: 320px;
        text-align: left !important;
    }

    .team-info1 h3,
    .team-info2 h3 {
        font-size: 20px;
        line-height: 24px;
        text-align: left;
    }

    .team-info1 .title,
    .team-info2 .title {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 12px;
        text-align: left;
    }

    .team-info1 .bio,
    .team-info2 .bio {
        font-size: 14px;
        text-align: left;
    }

    /* Kontakt */
    .contact-section {
        padding: 40px 0;
    }

    .contact-wrapper {
        padding: 0 16px;
        justify-content: flex-start;
    }

    .contact-content h2 {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 20px;
        text-align: left;
    }

    .contact-content address,
    .contact-content p,
    .contact-content a {
        font-size: 14px;
        line-height: 1.55;
        text-align: left;
    }

    /* Footer */
    .main-footer {
        padding: 20px 0;
    }

    .footer-content {
        padding: 0 16px;
        gap: 12px;
        align-items: flex-start;
    }

    .footer-copyright,
    .footer-links a {
        font-size: 13px;
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .footer-scroll-top {
        width: 28px;
        height: 28px;
    }

    #scroll-top {
        bottom: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
    }
}

/* Weiches Scrollen */
html {
    scroll-behavior: smooth;
}

/* Floating Scroll-to-Top Button (neuer Button) */
.scroll-to-top {
    position: fixed;
    right: 16px;
    bottom: calc(40px + env(safe-area-inset-bottom, 0));
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--primary-color, #004b8b);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
    cursor: pointer;
    z-index: 1000;

    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, box-shadow .2s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-to-top:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
    filter: brightness(1.03);
}

.scroll-to-top:focus {
    outline: 3px solid rgba(0, 75, 139, .35);
    outline-offset: 2px;
}

/* Reduzierte Bewegung */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-to-top {
        transition: none;
    }
}
