/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Montserrat:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

:root {
    /* Farben */
    --white-color:#fff;
    --dark-color:#000000;
    --primary-color:#282772;
    --secondary-color:#bb2742; /*991f36 rot */
    --light-pink-color:#faf4f5;
    --medium-gray-color:#ccc;

    /* Schriftgrößen */
    --font-size-s:0.9rem;
    --font-size-n:1rem;
    --font-size-m:1.12rem;
    --font-size-l:1.5rem;
    --font-size-xl:2rem;
    --font-size-xxl:2.3rem;
    --font-size-xxxl:5rem;

    /* Schriftgewichte */
    --font-weight-normal:400;
    --font-weight-bold:700;
    --font-weight-medium:500;
    --font-weight-semi-bold:600;

    /* Abstände */
--border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    /* Site max width */
    --site-max-width: 1300px;


}

/* Allgemeine Stile */
/* s+k Farben #010066 blau, #991f36 rot, #191919 dunkelgrau, #9e9e9e hellgrau */

#preloader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 99999;
    width: 100vw;
    height: 100vh;
    transition: opacity 0.5s;
}


ul {
    list-style: none;
}

a {
    text-decoration: none;
    
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

img {
    width: 100%;
}

.section-title {
    text-align:center;
    padding: 60px 0 100px;
    text-transform:uppercase;
    font-size: var(--font-size-xl);
}

.section-title::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--secondary-color);

}




/* Menü */
header  {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 15;
    background: transparent; /* komplett durchsichtig */
}



header .navbar {
    display: flex;
    padding:20px;
    align-items:center;
    justify-content: space-between;
    z-index: 15;
}

.navbar .nav-menu {
    display: flex;
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 100px;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-radius: 24px 0 0 24px;
    transition: right 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
    z-index: 2001;
    opacity: 0;
    pointer-events: none;
}

.nav-menu .nav-item {
    width: 100%;
    display: flex;
    align-items: center;

}

.menu-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 14;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}


body.show-mobile-menu .navbar .nav-menu {
    display: flex;
    right: 0;
    opacity: 1;
    pointer-events: auto;
}
body.show-mobile-menu .menu-overlay {
    opacity: 1;
    pointer-events: all;
}


.navbar .nav-menu .nav-link {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    color: var(--dark-color);
    font-size: var(--font-size-xl);
    transition: 0.3s ease;
    margin-bottom: 12px;
    text-align: left;
    width: 100%;
    line-height: 1.2; 
    position: relative;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s cubic-bezier(0.4,0,0.2,1), color 0.3s;
}

.navbar .nav-menu .nav-link:hover {
    background-size: 100% 100%;
    color: var(--white-color);
}

.plus-icon {
    color: var(--secondary-color); /* oder z.B. color: red; */
    margin-right: 6px;
    font-size: 2.5rem;      /* größer */
    font-weight: 200;       /* schlanker */
    letter-spacing: 0.5px;  /* optional: etwas Abstand */
    line-height: 1.2;         /* kompakt */
    font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}



.logo-image {
    width: 120px;
    height: auto;
    max-width: 100%;
}

.logo-image:hover,
.logo-image:focus {
    opacity: 0.7;
    transition: opacity 0.3s;
}



/* Hamburger Grundform */
#menu-open-button {
    width: 48px;
    height: 48px;
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 2000;
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.menu-bar {
    display: block;
    width: 32px;
    height: 4px;
    background: var(--white-color);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
}

/* Animation zum Kreuz */
body.show-mobile-menu #menu-open-button .menu-bar:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}
body.show-mobile-menu #menu-open-button .menu-bar:nth-child(2) {
    opacity: 0;
}
body.show-mobile-menu #menu-open-button .menu-bar:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}
body.show-mobile-menu #menu-open-button .menu-bar {
    background: var(--dark-color); /* oder #000 für schwarz */
}



/* Hero Section Hintergrundbild */
.hero-section {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    /* background: url('pictures/Auswahl/background.jpg') center center/cover no-repeat;  <-- ENTFERNEN! */
    color: var(--white-color);
    position: relative;
    overflow: hidden;
    background: #111; /* oder jede andere Wunschfarbe */
}

.hero-section .section-content {
    position: relative;
}

#hero-subtitle {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 32px;
    text-align: left;
    margin: 0;
    padding: 0;
    width: auto;
    max-width: 100vw;
    z-index: 2;

}

#hero-subtitle {
    transition: opacity 0.5s;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4); /* dunkler Overlay */
    z-index: 1;
}
.hero-section .section-content {
    position: relative;
    z-index: 1;
}

.hero-section .section-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;  /* vertikal zentrieren */
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    text-align: center;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-section .hero-details .title {
    font-size: var(--font-size-xxl);
    color: var(--secondary-color);
    font-family: "Miniver", sans-serif;
}

.hero-section .hero-details .subtitle {
    font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
    font-size: var(--font-size-xxxl);
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
}

.hero-section .hero-details .description {
    max-width: 70%;
    margin: 24px auto 40px auto; /* oben, rechts, unten, links */
    font-size: var(--font-size-m);
}



    

.hero-section .hero-image-wrapper {
    max-width: 500px;
    margin-right: 30px
}

.hero-logo {
    max-width: 360px;   /* oder dein gewünschter Wert */
    height: auto;
    display: block;
    margin: 0 auto;
    margin-bottom: 32px; /* Abstand nach unten */
}

/* Über uns section */
.about-section {
    padding: 24px 0 40px 0;
    background-color: rgb(173, 29, 173);
    min-height: 80vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-x: hidden;     /* NEU */
}

.about-section.secondary {
    background-color: #e92f2f; /* Deine Wunschfarbe */
}

.about-section .section-content {
    display: flex;
    justify-content: flex-start; /* Links bündig */
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;

}

.about-details {
    text-align: left;
    width: 100%;
}

.about-section .about-wrapper .about-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50% !important;
    display: block;
    margin: 0 auto;
    margin-bottom: 32px; /* Abstand zur Überschrift */
}

.about-section .about-details .section-title {
    color: var(--white-color);

}
.about-section .about-details .about-text {
    line-height: 1;
    margin: 5px 0 30px;
    text-align: left;
    font-size: 5rem; /* z.B. größer als vorher */
    color: var(--white-color);
    padding-right: 32px;
    margin-top: 0;
    margin-bottom: 20px;
    hyphens: none;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.about-section .about-details {
    padding-left: 0;
    padding-right: 0;
}

.about-section .section-content,
.portfolio-section .section-content,
.contact-section .section-content {
    padding-left: 32px;
    padding-right: 32px;
}

.contact-section .section-content {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (max-width: 900px) {
.about-section .section-content,
.portfolio-section .section-content,
.contact-section .section-content  {
    padding-left: 16px;
    padding-right: 16px;
}
    .about-section .about-details {
        padding-left: 0;
        padding-right: 0;
    }

    .about-section .about-details .about-text {
        font-size: 2.4rem;
    }
}


/* Portfolio Section */

.portfolio-section {
    position: relative;
    background: #0eda8c;
    color: #ffffff;
    overflow: hidden;
    padding-top: 30px;
}

.portfolio-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0); /* Abdunklung */
    z-index: 1;
}

.portfolio-section .section-content,
.portfolio-section .section-title {
    position: relative;
    z-index: 2;
}

.portfolio-section .portfolio-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* oder auto, je nach gewünschter Breite */
    column-gap: 60px; /* Weniger Abstand für kompakteres Layout */
    row-gap: 40px;
    justify-items: start; /* Items im Grid linksbündig */
    justify-content: start; /* Grid selbst linksbündig */
    margin-left: 0;
}

.portfolio-section .portfolio-list .portfolio-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 5px; /* kleinerer Abstand zwischen den Zeilen */
}

.portfolio-section .portfolio-list .portfolio-item .portfolio-image {
    width: 100%;
    aspect-ratio: 1 / 1;         /* Quadrat bleibt erhalten */
    object-fit: cover;           /* Bild wird beschnitten, nicht verzerrt */
    border-radius: 50%;          /* macht das Bild rund */
    display: block;
}

.portfolio-section .portfolio-list .portfolio-item .text {
    font-size: 1.1rem;      /* z.B. kleiner als Überschrift */
    color: #fff;          /* oder var(--white-color) */
    line-height: 1.4;
    margin-top: 4px;
    margin-bottom: 24px;
    hyphens: none;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 240px;
}

.portfolio-section .portfolio-list .portfolio-item .portfolio-title {
    max-width: 360px; /* oder z.B. 80% */
    width: 100%;
}

.portfolio-plus {
    width: 120px;           /* feste Breite */
    height: 120px;          /* feste Höhe */
    min-width: 120px;
    min-height: 120px;
    max-width: 120px;
    max-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0);
    font-size: 6rem;        /* Größe des Plus */
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 0; /* Abstand auf 0 setzen */
}

.portfolio-title {
    position: static; /* nicht absolut */
    margin-top: 0;    /* Abstand auf 0 setzen */
    margin-bottom: 8px;
    text-align: left;
    font-size: 2rem;
    color: var(--white-color);
    font-weight: bold;
    hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

/* Kontakt */
.contact-section {
    background: var(--dark-color);
    display: flex;
    justify-content: flex-start;
}

.contact-section .section-content {
    width: 100%;
}

.contact-title {
    font-size: 3rem;
    color: var(--white-color);
    margin-bottom: 40px;
    text-align: left;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-text {
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--white-color);
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    text-align: left;
    margin: 0;
}

.contact-text a {
    color: var(--white-color);
    text-decoration: none;
    word-break: break-word;
}

.contact-company {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 8px; 
    color: var(--white-color);
/* gleicher Wert wie .portfolio-title */
}

@media (max-width: 900px) {
    .contact-title {
        font-size: 2.2rem;
    }

    .contact-text {
        font-size: 1.1rem;
    }



    }
    #contact-company {
    font-weight: 700;
    font-size: 2rem;
    
}






/* Gallery Section */
.gallery-section {
    background: var(--dark-color);
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 32px;
    padding-bottom: 32px
}

.gallery-section .section-title {
    color: var(--white-color);
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;           /* Weniger Abstand zwischen den Bildern */
    max-width: 100vw;    /* Volle Breite */
    margin: 0;
    padding: 0;          /* Kein Abstand zum Außenrand */
}

.gallery-item {
    /* aspect-ratio: 1 / 1;  <-- ENTFERNEN für Rechtecke */
    min-height: 330px;      /* Höhe nach Wunsch */
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    background: #fff;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.5s cubic-bezier(0.4,0,0.2,1);
    grid-row: span 1;
    grid-column: span 1;
}

.gallery-item.middle {
    grid-row: span 2;
    grid-column: 2 / 4;
    min-height: 690px;      /* Doppelte Höhe der kleinen, nach Wunsch anpassen */
    position: relative;
}

.gallery-item img,
.gallery-item.middle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1), filter 0.7s cubic-bezier(0.4,0,0.2,1);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}


.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.gallery-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: transparent;
    margin-bottom: 32px;
    padding: 12px 0;
    position: relative;
}

.gallery-marquee span {
    display: inline-block;
    animation: marquee 30s linear infinite;
    font-size: 5rem;
    color: var(--white-color);
    font-weight: 400;
    letter-spacing: 2px;
    font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
}

.gallery-marquee .plus-icon-marquee {
    color: var(--secondary-color) !important;
}



.plus-icon-marquee {
    color: var(--secondary-color);
    letter-spacing: 2px;      /* GLEICH wie im umgebenden Text */
    font-weight: 600;
    font-size: inherit;
    font-family: inherit;
    vertical-align: middle;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


#portfolio, .portfolio-section {
    scroll-margin-top: 100px; /* Passe 100px an die Höhe deiner Navbar an */
}




.hero-section {
    position: relative;
    transition: background-image 2s ease;
}

.side-fixed-button {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 0;
    top:70%;
    transform: translateY(-50%);
    z-index: 2000;
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 0;
    width: 64px;
    height: 64px;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    opacity: 0.7;
}
.side-fixed-button:hover {
    background: var(--primary-color);
    opacity: 1;
}

/* Legal Content Section */
.legal-content {
    background: var(--dark-color);
    padding: 32px 0 24px 0;
    margin-top: 48px;
    position: relative;
}

.legal-content::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 32px;
    right: 32px;
    height: 1px;
    background: rgba(0, 0, 0, 0.938); /* dünn und dezent */
}

.legal-content-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.legal-text {
    color: #bbb;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.legal-links {
    display: flex;
    gap: 32px;
    margin-top: 4px;
}

.legal-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.legal-links a:hover {
    color: var(--secondary-color, #ffb300);
    border-bottom: 1px solid var(--secondary-color, #ffb300);
}

.gallery-caption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    color: var(--white-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    z-index: 2;
    pointer-events: none;
}

html {
    scroll-behavior: smooth;
}

.gallery-button {
    display: inline-block;
    padding: 22px 60px;      /* Mehr Abstand oben/unten und rechts/links */
    background: rgb(173, 29, 173);
    color: #fff;
    border-radius: 32px;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: 
        background 0.3s cubic-bezier(0.4,0,0.2,1),
        transform 0.7s cubic-bezier(0.4,0,0.2,1),
        box-shadow 0.7s cubic-bezier(0.4,0,0.2,1);
}

.gallery-button:hover {
    background: rgb(173, 29, 173); /* oder jede andere Wunschfarbe */
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
}
.hero-bg.active {
    opacity: 1;
    z-index: 1;
}
.hero-bg {
    background-color: #111; /* gleiche Farbe wie .hero-section */
}




@media (max-width: 900px){
    .portfolio-section .portfolio-list {
        grid-template-columns: 1fr;   /* Nur eine Spalte */
        column-gap: 0;
        row-gap: 24px;                /* Abstand zwischen den Zeilen */
    }
    .portfolio-section .portfolio-list .portfolio-item {
        max-width: 100%;
    }

      .portfolio-section .portfolio-list .portfolio-item .text,
  .portfolio-section .portfolio-list .portfolio-item .portfolio-title {
    max-width: 100%;
    width: 100%;
  }
    
        .gallery-section {
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;

    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0;
    }
    .gallery-item,
    .gallery-item.middle {
        aspect-ratio: 16 / 9;
        min-height: unset;
        height: auto;
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        border-radius: 0;
        position: relative;
    }
    .gallery-item img,
    .gallery-item.middle img {
        aspect-ratio: 16 / 9;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
        .hero-section .subtitle,
        #hero-subtitle {
    hyphens: none;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-size: 2.5rem; 
    left: 16px;
    right: 16px;
    bottom: 32px;
    max-width: 100%;
    box-sizing: border-box;
}
}

.nav-menu-logo {
    margin-top: auto; /* Logo immer ganz unten */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 32px;
}

.mini-logo {
    width: 100px;
    height: auto;
    opacity: 0.85;

}

@media (max-height: 600px){
    .portfolio-section .portfolio-list {
        grid-template-columns: 1fr;   /* Nur eine Spalte */
        column-gap: 0;
        row-gap: 24px;                /* Abstand zwischen den Zeilen */
    }
    .portfolio-section .portfolio-list .portfolio-item {
        max-width: 100%;
    }

    .portfolio-section .portfolio-list .portfolio-item .text,
    .portfolio-section .portfolio-list .portfolio-item .portfolio-title {
    max-width: 100%;
    width: 100%;
    }
    .portfolio-section .section-content {
        padding-left: 32px;
        padding-right: 32px;
    }


}

@media (max-height: 600px) {
            .hero-section .subtitle,
        #hero-subtitle {
    hyphens: none;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-size: 2.5rem; 
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: 100%;
    box-sizing: border-box;
}
}

/* Am besten in style.css ergänzen */
#lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain; /* Seitenverhältnis bleibt erhalten */
    display: block;
    margin: auto;
}

body.show-mobile-menu .side-fixed-button {
    display: none;
}

.impressum {
    background: var(--white-color);
    padding: 48px 0 32px 0;
    border-radius: 24px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    margin: 40px auto 0 auto;
    max-width: 700px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.impressum-text {
    color: var(--dark-color);
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: center;
    margin: 0;
    letter-spacing: 0.2px;
    font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
}

.impressum-section {
    background: var(--dark-color);/* oder jede andere Wunschfarbe */
    padding: 40px 0;
}


.schutz {
    background: var(--white-color);
    padding: 48px 0 32px 0;
    border-radius: 24px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    margin: 40px auto 0 auto;
    max-width: 700px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.schutz-text {
    color: var(--dark-color);
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: left;
    margin: 25px;
    letter-spacing: 0.2px;
    font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
}

.schutz-section {
    background: var(--dark-color);/* oder jede andere Wunschfarbe */
    padding: 40px 0;
}



@media (max-width: 900px) {
    .mini-logo {
        width: 100px;
    }
}



@media (max-width: 900px) {
    .impressum {
        padding: 28px 0 18px 0;
        max-width: 98%;
    }
    .impressum-text {
        font-size: 1rem;
    }

        .schutz {
        padding: 28px 0 18px 0;
        max-width: 98%;
    }
    .schutz-text {
        font-size: 1rem;
    }

}

@media (min-width: 3840px) {
    #hero-subtitle {
        font-size: 16rem; /* Passe die Größe nach Wunsch an */
    }
}

@media (min-width: 2560px) and (max-width: 3839px) {
    #hero-subtitle {
        font-size: 12rem; /* Passe die Größe nach Wunsch an */
    }
}

@media (max-width: 700px) {

    .about-section .about-details .about-text {
        font-size: 2rem;
    }
}
