/* =========================================================
   ALLGEMEIN
========================================================= */

body {
    background-color: black;
    color: white;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

section {
    padding: 120px 80px;
}

.bereich-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999999;
    margin: 0 0 20px 0;
}

section h2 {
    font-size: 96px;
    line-height: 1.1;
    margin: 0;
}

section span {
    color: #46d0bd;
}


/* =========================================================
   HEADER
========================================================= */
header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    padding: 30px 80px;
    border-bottom: 1px solid #222222;

    position: sticky;
    top: 0;
    z-index: 1000;

    background-color: black;
}

.logo h1 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;

    color: white;
    text-transform: lowercase;
}

.logo h1 span {
    color: #46d0bd;
}

.header-menu {
    display: contents;
}

header nav {
    justify-self: center;
}

header .contact-button {
    justify-self: end;
}


.logo h1 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}



nav ul {
    display: flex;
    gap: 40px;

    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

nav a {
    color: #bdbdbd;
    text-decoration: none;

    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;

    transition: 0.3s;
}

nav a:hover {
    color: #46d0bd;
}

nav a.active {
    color: white;
    position: relative;
}

nav a.active::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: -12px;

    width: 100%;
    height: 2px;

    background-color: #46d0bd;
}

.contact-button {
    background-color: #46d0bd;
    color: black;

    text-decoration: none;

    padding: 14px 34px;

    border: none;
    border-radius: 999px;

    font-size: 14px;
    letter-spacing: 1px;

    transition: 0.3s;
}

.contact-button:hover {
    background-color: white;
    color: black;
}


/* Hamburgermenü Button */

.menu-button {
    display: none;

    width: 42px;
    height: 34px;

    padding: 0;

    border: none;
    background: transparent;

    cursor: pointer;
}

.menu-button span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 8px 0;

    background-color: white;

    transition: 0.3s;
}

.menu-button.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* =========================================================
   TITELBILD
========================================================= */

.titelbild {
    padding: 40px 80px 80px 80px;
}

.bildplatzhalter {
    width: 100%;
    height: 650px;

    overflow: hidden;

    background-color: #333333;
    border-radius: 10px;
}

.bildplatzhalter picture,
.bildplatzhalter img {
    width: 100%;
    height: 100%;

    display: block;
}

.bildplatzhalter img {
    object-fit: cover;
    object-position: center;
}

/* =========================================================
   BUTTONS
========================================================= */

.mehr-erfahren-button {
    color: #46d0bd;
    text-decoration: none;

    border: 1.5px solid #46d0bd;
    border-radius: 999px;

    padding: 16px 28px;
    margin-top: 40px;

    transition: 0.3s;
}

.mehr-erfahren-button:hover {
    background-color: #46d0bd;
    color: black;
}

.nachricht-button {
    display: block;

    margin-top: 35px;
    padding: 18px;

    background-color: white;
    color: black;

    text-decoration: none;
    text-align: center;

    border-radius: 4px;

    transition: 0.3s;
}

.nachricht-button:hover {
    background-color: #46d0bd;
    color: black;
}

.ansehen-button {
    background-color: transparent;
    color: white;

    border: 1px solid #333333;
    border-radius: 999px;

    padding: 12px 22px;

    font-size: 14px;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;

    cursor: pointer;
    white-space: nowrap;

    transition: 0.3s;
}


/* =========================================================
   STARTBEREICH
========================================================= */

.startbereich-kopf {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.startbereich-inhalt {
    display: flex;
    align-items: stretch;
    gap: 50px;

    margin-top: 60px;
}

.bildbereich {
    flex: 1;
    height: 500px;

    overflow: hidden;

    background-color: #d9d9d9;
    border-radius: 10px;
}

.bildbereich img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;
}

.home-portrait-bild {
    
    transform-origin: center center;
}

.info-karte {
    flex: 1;
    height: 500px;

    display: flex;
    flex-direction: column;

    box-sizing: border-box;

    padding: 25px 50px 40px 50px;

    background-color: #111111;
    border-radius: 10px;
}

.info-karte h3 {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 24px;
}

.info-karte p {
    font-size: 22px;
    line-height: 1.5;
    color: #cccccc;
    margin: 0;
}

.info-karte p + p {
    margin-top: 20px;
}


/* =========================================================
   KONTAKTBEREICH STARTSEITE
========================================================= */

.kontaktbereich {
    margin-top: 30px;
}

.kontaktbereich h4 {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999999;
}

.icons {
    display: flex;
    gap: 20px;

    margin-top: 20px;
}

.icon {
    width: 70px;
    height: 70px;

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

    background-color: #1c1c1c;
    border-radius: 50%;

    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: 0.3s;
}


.icon:hover {
    background-color: #46d0bd;
    color: black;
}


/* =========================================================
   ANGEBOT STARTSEITE
========================================================= */

.angebot-kopf {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.angebot-inhalt {
    display: flex;
    gap: 50px;

    margin-top: 60px;
}

.angebot-textkarte {
    flex: 1;

    padding: 50px;

    background-color: #111111;
    border-radius: 10px;
}

.angebot-textkarte p {
    font-size: 22px;
    line-height: 1.8;
    color: #cccccc;

    text-transform: none;
    letter-spacing: 0;
}

.angebot-textkarte p:last-child {
    margin-top: 40px;
}

.angebot-bild {
    flex: 1;
    min-height: 500px;

    overflow: hidden;

    background-color: #d9d9d9;
    border-radius: 10px;
}

.angebot-bild img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;
}


/* =========================================================
   PORTFOLIO STARTSEITE
========================================================= */

.portfolio-kopf {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.werke-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;

    margin-top: 70px;
}

.werk {
    width: 100%;
}

.werk-bild {
    width: 100%;
    height: 460px;

    overflow: hidden;

    background-color: #d9d9d9;
    border-radius: 10px;
}

.werk-bild img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.werk-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;

    margin-top: 20px;
}

.werk-info h3 {
    font-size: 22px;
    margin: 0;
}

.werk-info p {
    font-size: 16px;
    color: #888888;

    margin-top: 8px;

    text-transform: none;
    letter-spacing: 0;
}



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

footer {
    position: relative;

    padding: 90px 80px 40px 80px;

    border-top: 1px solid #222222;

    overflow: hidden;
}

.footer-name {
    max-width: 100%;

    font-size: clamp(42px, 8vw, 120px);
    font-weight: 700;
    line-height: 1;

    color: #1a1a1a;

    margin-bottom: 60px;

    white-space: normal;
    overflow-wrap: break-word;
}

.footer-inhalt {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.footer-spalte {
    width: 100%;
    max-width: 320px;
}

.footer-spalte:nth-child(1) {
    justify-self: start;
}

.footer-spalte:nth-child(2) {
    justify-self: center;
}

.footer-spalte:nth-child(3) {
    justify-self: end;
}

.footer-spalte h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;

    color: #888888;

    margin: 0 0 30px 0;
}

.footer-spalte ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-spalte li {
    margin-bottom: 18px;
    color: #cccccc;
}

.footer-spalte a {
    color: #cccccc;
    text-decoration: none;

    transition: 0.3s;
}

.footer-spalte a:hover {
    color: white;
}

.footer-spalte p {
    color: #cccccc;
    line-height: 1.7;

    margin: 0 0 30px 0;
}


/* Social Icons */

.footer-socials {
    display: flex;
    gap: 18px;

    margin-bottom: 24px;
}

.footer-socials a {
    width: 54px;
    height: 54px;

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

    border-radius: 50%;
    background-color: #111111;

    color: white;

    font-size: 22px;

    transition: 0.3s;
}

.footer-socials a:hover {
    background-color: #46d0bd;
    color: black;
}

.footer-mail {
    display: inline-block;

    color: #cccccc;
    font-size: 15px;
}


/* Footer Button */

.footer-button {
    display: inline-block;

    padding: 16px 28px;

    background-color: #46d0bd;
    color: #000000 !important;

    border-radius: 999px;

    font-weight: 600;
    text-decoration: none;

    transition: 0.3s;
}

.footer-button:hover {
    background-color: #46d0bd;
}


/* Untere Zeile */

.footer-unten {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 80px;
    padding-top: 30px;

    border-top: 1px solid #222222;
}

.footer-unten p {
    color: #666666;
    font-size: 14px;

    margin: 0;
}

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

.footer-links a {
    color: #666666;
    text-decoration: none;

    font-size: 14px;

    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
}


/* =========================================================
   ÜBER MICH SEITE
========================================================= */

.about-hero {
    padding: 60px 80px 40px 80px;
}

.about-hero h2 {
    font-size: 88px;
    margin: 0;
}


/* =========================================================
   ÜBER MICH BILD
========================================================= */

.about-bild-section {
    padding: 0 0 60px 0;
}

.about-bild {
    width: 100%;
    height: 550px;

    overflow: hidden;
}

.about-bild img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center 50%;
}


/* =========================================================
   BIOGRAFIE
========================================================= */

.about-bio {
    padding: 0 80px;
}

.about-text-box {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 70px;
    align-items: center;

    margin: 45px 0 40px 0;
    padding: 55px 60px;

    background-color: #111111;
    border-radius: 14px;
}

.about-text h3 {
    margin: 0 0 28px 0;

    font-size: 34px;
    line-height: 1.3;

    color: #ffffff;
}

.about-text p {
    max-width: 900px;

    margin: 0 0 24px 0;

    font-size: 18px;
    line-height: 1.8;

    color: #bdbdbd;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-punkte {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    height: calc(100% - 72px);
    margin-top: 72px;
}

.about-punkte span {
    display: block;

    padding: 18px 22px;

    border: 1px solid rgba(70, 208, 189, 0.35);
    border-radius: 999px;

    color: #46d0bd;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* =========================================================
   MEIN WEG
========================================================= */

.weg {
     padding: 150px 80px 60px 80px;
}

.weg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;

    margin-top: 60px;
}

.weg-karte {
    padding: 40px;

    background-color: #111111;
    border-radius: 10px;
}

.weg-karte h3 {
    margin: 0 0 25px 0;

    font-size: 48px;
}

.weg-karte p {
    margin: 0;

    font-size: 18px;
    line-height: 1.8;

    color: #bdbdbd;
}




/* =========================================================
   ANGEBOTSSEITE
========================================================= */

.angebot-seite {
    padding: 60px 80px;
}

.angebot-seite h2 {
    margin: 0;

    font-size: 96px;
    line-height: 1.1;
}

.angebot-seite span {
    color: #46d0bd;
}


/* =========================================================
   ANGEBOT INTRO
========================================================= */

.angebot-intro-box {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 70px;
    align-items: center;

    margin: 45px 0 90px 0;
    padding: 55px 60px;

    background-color: #111111;
    border-radius: 14px;
}

.angebot-intro-text h3 {
    margin: 0 0 22px 0;

    font-size: 26px;
    line-height: 1.3;

    color: #ffffff;
}

.angebot-intro-text p {
    max-width: 760px;

    margin: 0;

    font-size: 18px;
    line-height: 1.75;

    color: #bdbdbd;
}

.angebot-intro-punkte {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.angebot-intro-punkte span {
    display: block;

    padding: 18px 22px;

    border: 1px solid rgba(70, 208, 189, 0.35);
    border-radius: 999px;

    color: #46d0bd;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* =========================================================
   ANGEBOTSLISTE
========================================================= */

.angebot-details {
    display: flex;
    flex-direction: column;
    gap: 12px;

    list-style: none;

    margin: 26px 0 55px 0;
    padding: 0;
}

.angebot-details li {
    color: #bdbdbd;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-transform: none;
}

.angebot-details li::before {
    content: "•";

    color: #bdbdbd;

    margin-right: 14px;
}


/* =========================================================
   EINZELNES ANGEBOT
========================================================= */

.angebot-item {
    display: flex;
    align-items: flex-start;
    gap: 180px;

    margin-bottom: 90px;
}

.angebot-item:not(:last-child) {
    margin-bottom: 35px;
    padding-bottom: 35px;

    border-bottom: 1px solid #1a1a1a;
}


/* =========================================================
   ANGEBOTSBILD
========================================================= */

.angebot-seite-bild {
    flex-shrink: 0;

    width: 200px;

    overflow: visible;
}

.angebot-seite-bild img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================================
   ANGEBOT TEXT
========================================================= */

.angebot-rechts {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;

    width: 100%;
    min-height: 320px;
}

.angebot-text {
    align-self: flex-start;
}

.angebot-text h3 {
    margin: 0 0 26px 0;

    font-size: 32px;
}

.angebot-preis {
    margin-top: 50px !important;

    color: #46d0bd;
    font-size: 32px;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}


/* =========================================================
   ANGEBOT LINK
========================================================= */

.angebot-anfrage {
    align-self: flex-end;

    color: white;
    text-decoration: none;

    padding-bottom: 6px;

    border-bottom: 1px solid #46d0bd;

    font-size: 13px;
    letter-spacing: 3px;

    transition: 0.3s;
}

.angebot-anfrage:hover {
    color: #46d0bd;
}


/* =========================================================
   PORTFOLIO SEITE
========================================================= */

.portfolio-seite {
    padding: 70px 80px 120px 80px;
}

.portfolio-seite h2 {
    margin: 0 0 35px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;

    margin-top: 70px;
}


/* =========================================================
   PORTFOLIO WERKE
========================================================= */

.portfolio-werk h3 {
    font-size: 22px;
    margin: 0 0 8px 0;
}

.portfolio-werk p {
    font-size: 15px;
    color: #888888;

    margin: 0 0 4px 0;
}

.portfolio-werk span {
    font-size: 14px;
    color: #666666;
}


/* =========================================================
   PORTFOLIO BILDER
========================================================= */

.portfolio-bild {
    position: relative;

    width: 100%;
    height: 460px;

    margin-bottom: 20px;

    overflow: hidden;

    background-color: #d9d9d9;
    border-radius: 14px;
}

.portfolio-bild img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.portfolio-lightbox {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    color: inherit;
    text-decoration: none;
}

.portfolio-lightbox img {
    transition: transform 0.35s ease, filter 0.35s ease;
}

.portfolio-lightbox:hover img {
    transform: scale(1.04);
    filter: brightness(0.45);
}


/* =========================================================
   PORTFOLIO HOVER
========================================================= */

.portfolio-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    opacity: 0;

    background: rgba(0, 0, 0, 0.68);
    color: #ffffff;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    transition: opacity 0.35s ease;
    pointer-events: n
}

.portfolio-overlay span:last-child {
    color: #ffffff;
    
}

.portfolio-icon {
    width: 78px;
    height: 78px;

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

    margin-bottom: 18px;

    border: 2px solid #ffffff;
    border-radius: 50%;
}

.portfolio-icon svg {
    width: 36px;
    height: 36px;

    fill: none;
    stroke: #ffffff;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.portfolio-lightbox img {
    transition: transform 0.35s ease, filter 0.35s ease;
}


/* Hover nur auf Geräten mit Maus */

@media (hover: hover) and (pointer: fine) {

    .portfolio-lightbox:hover img {
        transform: scale(1.04);
        filter: brightness(0.45);
    }

    .portfolio-lightbox:hover .portfolio-overlay {
        opacity: 1;
    }

    .portfolio-lightbox:focus-visible {
        outline: 2px solid #46d0bd;
        outline-offset: 4px;
    }

    .portfolio-lightbox:focus-visible .portfolio-overlay {
        opacity: 1;
    }
}


/* Kein Hover-Effekt auf Touch-Geräten */

@media (hover: none), (pointer: coarse) {

    .portfolio-overlay {
        display: none;
    }

    .portfolio-lightbox:hover img,
    .portfolio-lightbox:active img,
    .portfolio-lightbox:focus img {
        transform: none;
        filter: none;
    }
}
/* =========================================================
   LIGHTBOX
========================================================= */

/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background: rgba(0, 0, 0, 0.96);
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    z-index: 10000;

    display: inline-block;
}

.lightbox-image {
    position: relative;
    z-index: 10000;

    max-width: 78vw;
    max-height: 76vh;

    object-fit: contain;
    border-radius: 10px;

    cursor: zoom-in;
    transition: transform 0.25s ease;

    user-select: none;
    -webkit-user-drag: none;
    touch-action: none;
}

.lightbox-image.zoomed {
    cursor: zoom-out;
}

.lightbox-image.dragging {
    cursor: grabbing;
}


/* =========================================================
   LIGHTBOX SCHLIESSEN
========================================================= */

.lightbox-close {
    position: fixed;
    top: 35px;
    right: 45px;
    z-index: 10001;

    width: 46px;
    height: 46px;

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

    border: 2px solid #46d0bd;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);

    color: #46d0bd;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transition: 0.3s;
}

.lightbox-close:hover {
    background: #46d0bd;
    color: #000000;

    transform: scale(1.06);
    box-shadow: 0 0 18px rgba(70, 208, 189, 0.28);
}

/* =========================================================
   KONTAKTSEITE
========================================================= */

.kontakt-seite {
    padding: 70px 80px 120px 80px;
}

.kontakt-seite h2 {
    margin: 0;

    font-size: 96px;
    line-height: 1.1;
}

.kontakt-seite span {
    color: #46d0bd;
}


/* =========================================================
   KONTAKT BOX
========================================================= */

.kontakt-box {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 70px;
    align-items: center;

    margin-top: 50px;
    padding: 55px 60px;

    background-color: #111111;
    border-radius: 14px;
}


/* =========================================================
   KONTAKT TEXT
========================================================= */

.kontakt-text h3 {
    margin: 0 0 22px 0;

    font-size: 30px;
    line-height: 1.3;

    color: #ffffff;
}

.kontakt-text p {
    max-width: 760px;

    margin: 0;

    font-size: 18px;
    line-height: 1.75;

    color: #bdbdbd;
}


/* =========================================================
   KONTAKT AKTIONEN
========================================================= */

.kontakt-aktionen {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.kontakt-mail-button,
.kontakt-link {
    display: block;

    padding: 18px 22px;

    border: 1px solid rgba(70, 208, 189, 0.35);
    border-radius: 999px;

    color: #46d0bd;

    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    transition: 0.3s;
}

.kontakt-mail-button:hover,
.kontakt-link:hover {
    background-color: #46d0bd;
    color: #000000;
}

/* =========================
   Responsive Design Home
   ========================= */

/* Tablet */
@media (max-width: 1024px) {

    section {
        padding: 90px 50px;
    }

    section h2 {
        font-size: 70px;
    }

    header {
        padding: 26px 50px;
        gap: 30px;
    }

    nav ul {
        gap: 24px;
    }

    nav a {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .contact-button {
        padding: 12px 26px;
    }

    .titelbild {
        padding: 35px 50px 60px 50px;
    }

    .bildplatzhalter {
        height: 520px;
    }

    .startbereich-inhalt,
    .angebot-inhalt {
        gap: 35px;
    }

    .info-karte {
        padding: 35px;
    }

    .info-karte h3 {
        font-size: 30px;
    }

    .info-karte p {
        font-size: 18px;
    }

    .bildbereich,
    .info-karte,
    .angebot-bild {
        height: auto;
        min-height: 430px;
    }

     .home-portrait-bild {
        transform: scale(1.25);
        transform-origin: center 45%;
    }
    .werke-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .werk-bild,
    .portfolio-bild {
        height: 420px;
    }

    footer {
        padding: 80px 50px 35px 50px;
    }

    .footer-name {
        font-size: 86px;
    }
}

    @media (max-width: 1024px) and (min-width: 769px) {

    .footer-inhalt {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 50px;
    }

    .footer-spalte {
        max-width: 280px;
    }

    .footer-spalte:nth-child(1) {
        justify-self: start;
    }

    .footer-spalte:nth-child(2) {
        justify-self: center;
    }

    .footer-spalte:nth-child(3) {
        justify-self: end;
    }
}

@media (max-width: 900px) {

    .footer-inhalt {
        grid-template-columns: 1fr 1fr;
        gap: 70px 50px;
    }

    .footer-spalte:nth-child(1) {
        justify-self: start;
    }

    .footer-spalte:nth-child(2) {
        justify-self: start;
    }

    .footer-spalte:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: start;

        max-width: 420px;
        margin-top: 20px;
    }
}

/* Kleines Tablet / grosses Mobile */
@media (max-width: 768px) {

    section {
        padding: 75px 30px;
    }

    section h2 {
        font-size: 52px;
    }

    .bereich-label {
        font-size: 14px;
        letter-spacing: 1.5px;
    }

     header {
        display: flex;
        justify-content: space-between;
        align-items: center;

        padding: 24px 30px;
    }

    .menu-button {
        display: block;
        margin-left: auto;
        z-index: 1002;
    }

    .header-menu {
        position: fixed;
        inset: 0;
        z-index: 1001;

        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 34px;

        box-sizing: border-box;
        padding: 90px 30px;

        background-color: black;
    }

    .header-menu.active {
        display: flex;
    }

    nav {
        width: auto;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 34px;
    }

    nav a {
        font-size: 28px;
        letter-spacing: 4px;
        color: #999999;
    }

    nav a.active {
        color: white;
    }

    nav a.active::after {
        display: none;
    }

    .header-menu .contact-button {
        width: auto;
        padding: 0;

        background-color: transparent;
        color: #46d0bd;

        font-size: 28px;
        letter-spacing: 4px;
        text-transform: uppercase;
        font-weight: 400;
    }

    .header-menu .contact-button:hover {
        background-color: transparent;
        color: #46d0bd;
    }


    .titelbild {
        padding: 30px 30px 50px 30px;
    }

    .bildplatzhalter {
        height: 420px;
    }

    .startbereich-kopf,
    .angebot-kopf,
    .portfolio-kopf {
        flex-direction: column;
        gap: 28px;
    }

    .mehr-erfahren-button {
        margin-top: 0;
    }

    .startbereich-inhalt,
    .angebot-inhalt {
        flex-direction: column;
        margin-top: 45px;
    }

   
    .info-karte {
        width: 100%;
        min-height: 380px;
    }

      .bildbereich {
        height: 420px;
        min-height: 0;
    }

    .home-portrait-bild {
        object-position: center 45%;
    }

     .angebot-bild {
        height: 420px;
        min-height: 0;
    }

    .home-angebot-bild {
        object-position: center center;
    }

    .info-karte {
        min-height: auto;
    }

    .icons {
        gap: 16px;
    }

    .icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .werke-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        margin-top: 45px;
    }

    .werk-bild,
    .portfolio-bild {
        height: 480px;
    }

    .werk-info {
        align-items: center;
    }

    footer {
        padding: 70px 30px 35px 30px;
    }

    .footer-name {
        font-size: 58px;
        white-space: normal;
    }

    .footer-inhalt {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-spalte {
    max-width: none;
}

.footer-spalte:nth-child(1),
.footer-spalte:nth-child(2),
.footer-spalte:nth-child(3) {
    justify-self: start;
}

    .footer-unten {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* Mobile */
@media (max-width: 480px) {

    section {
        padding: 60px 20px;
    }

    section h2 {
        font-size: 40px;
    }

     header {
        padding: 22px 20px;
    }

    .logo h1 {
        font-size: 15px;
        letter-spacing: 1.5px;
    }

    .header-menu {
        padding: 80px 20px;
        gap: 30px;
    }

    nav ul {
        gap: 30px;
    }

    nav a,
    .header-menu .contact-button {
        font-size: 22px;
        letter-spacing: 4px;
    }


    .titelbild {
        padding: 24px 20px 40px 20px;
    }

    .bildplatzhalter {
        height: 320px;
    }

    .mehr-erfahren-button {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .startbereich-inhalt,
    .angebot-inhalt {
        gap: 24px;
        margin-top: 36px;
    }

   
      .angebot-bild {
        height: 360px;
        min-height: 0;
    }

    .home-angebot-bild {
        object-position: center center;
    }

    

    .bildbereich {
        height: 360px;
        min-height: 0;
    }

    .home-portrait-bild {
        object-position: center 45%;
    }


    .info-karte {
        padding: 28px 24px;
        border-radius: 10px;
    }

    .info-karte h3 {
        font-size: 26px;
    }

    .info-karte p {
        font-size: 16px;
        line-height: 1.65;
    }

    .kontaktbereich h4 {
        font-size: 14px;
    }

    .icon {
        width: 54px;
        height: 54px;
        font-size: 20px;
    }

    .nachricht-button {
        padding: 16px;
    }

    .werk-bild,
    .portfolio-bild {
        height: 360px;
    }

    .werk-info {
        flex-direction: column;
        align-items: flex-start;
    }

  .ansehen-button {
    width: auto;
    align-self: flex-start;
    box-sizing: border-box;
    text-align: left;
    padding: 12px 22px;
    border-radius: 999px;
}

    footer {
        padding: 60px 20px 30px 20px;
    }

    .footer-name {
        font-size: 42px;
        margin-bottom: 45px;
    }

    .footer-spalte h4 {
        margin-bottom: 22px;
    }

    .footer-socials a {
        width: 48px;
        height: 48px;
    }

    .footer-button {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .footer-unten {
        margin-top: 60px;
    }
}


/* =========================================================
   RESPONSIVE ÜBER MICH
========================================================= */

@media (max-width: 1024px) {

    .about-hero {
        padding: 60px 50px 35px 50px;
    }

    .about-hero h2 {
        font-size: 70px;
    }

    .about-bild {
        height: 480px;
    }

    .about-bio {
        padding: 0 50px;
    }

    .about-text-box {
        grid-template-columns: 1.2fr 1fr;
        gap: 45px;

        padding: 45px;
    }

    .about-text h3 {
        font-size: 30px;
    }

    .about-text p {
        font-size: 17px;
    }

    .about-punkte {
        height: auto;
        margin-top: 0;
        gap: 16px;
    }

    .weg {
        padding: 120px 50px 60px 50px;
    }

    .weg-karte h3 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {

    .about-hero {
        padding: 55px 30px 30px 30px;
    }

    .about-hero h2 {
        font-size: 52px;
    }

    .about-bild-section {
        padding: 0 0 45px 0;
    }

    .about-bild {
        height: 420px;
    }

    .about-bio {
        padding: 0 30px;
    }

    .about-text-box {
        grid-template-columns: 1fr;
        gap: 40px;

        margin: 35px 0 30px 0;
        padding: 42px 36px;
    }

    .about-text h3 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 16px;
        line-height: 1.75;
    }

    .about-punkte {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;

        margin-top: 0;
    }

    .about-punkte span {
        text-align: center;
        font-size: 13px;
        padding: 16px 18px;
    }

    .weg {
        padding: 95px 30px 55px 30px;
    }

    .weg-grid {
        grid-template-columns: 1fr;
        gap: 24px;

        margin-top: 45px;
    }

    .weg-karte {
        padding: 34px;
    }

    .weg-karte h3 {
        font-size: 34px;
    }

    .weg-karte p {
        font-size: 16px;
        line-height: 1.75;
    }
}

@media (max-width: 480px) {

    .about-hero {
        padding: 45px 20px 25px 20px;
    }

    .about-hero h2 {
        font-size: 40px;
    }

    .about-bild-section {
        padding: 0 0 35px 0;
    }

    .about-bild {
        height: 340px;
    }

    .about-bild img {
        object-position: center center;
    }

    .about-bio {
        padding: 0 20px;
    }

    .about-text-box {
        gap: 32px;

        margin: 28px 0 20px 0;
        padding: 32px 24px;

        border-radius: 10px;
    }

    .about-text h3 {
        font-size: 25px;
        margin-bottom: 22px;
    }

    .about-text p {
        font-size: 15.5px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .about-punkte {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-punkte span {
        font-size: 12px;
        letter-spacing: 0.1em;
        padding: 15px 18px;
    }

    .weg {
        padding: 75px 20px 45px 20px;
    }

    .weg-grid {
        gap: 20px;
        margin-top: 36px;
    }

    .weg-karte {
        padding: 28px 24px;
    }

    .weg-karte h3 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .weg-karte p {
        font-size: 15.5px;
        line-height: 1.7;
    }
}


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

@media (max-width: 1024px) {

    .angebot-seite {
        padding: 60px 50px 100px 50px;
    }

    .angebot-seite h2 {
        font-size: 70px;
    }

    .angebot-intro-box {
        grid-template-columns: 1.2fr 1fr;
        gap: 45px;

        padding: 45px;
        margin: 40px 0 80px 0;
    }

    .angebot-intro-text h3 {
        font-size: 24px;
    }

    .angebot-intro-text p {
        font-size: 17px;
    }

    .angebot-item {
        gap: 90px;
    }

    .angebot-seite-bild {
        width: 180px;
    }

    .angebot-rechts {
        min-height: 280px;
    }

    .angebot-text h3 {
        font-size: 30px;
    }

    .angebot-preis {
        font-size: 30px;
    }
}

@media (max-width: 768px) {

    .angebot-seite {
        padding: 55px 30px 90px 30px;
    }

    .angebot-seite h2 {
        font-size: 52px;
    }

    .angebot-intro-box {
        grid-template-columns: 1fr;
        gap: 38px;

        padding: 42px 36px;
        margin: 35px 0 70px 0;
    }

    .angebot-intro-text h3 {
        font-size: 24px;
    }

    .angebot-intro-text p {
        font-size: 16px;
        line-height: 1.75;
    }

    .angebot-intro-punkte {
        gap: 14px;
    }

    .angebot-intro-punkte span {
        text-align: center;
        font-size: 13px;
        padding: 16px 18px;
    }

    .angebot-item {
        flex-direction: column;
        gap: 32px;

        margin-bottom: 55px;
    }

    .angebot-item:not(:last-child) {
        margin-bottom: 55px;
        padding-bottom: 55px;
    }

   .angebot-seite-bild {
    width: 220px;
    align-self: flex-start;
}

    .angebot-rechts {
        display: flex;
        flex-direction: column;
        gap: 30px;

        min-height: auto;
    }

    .angebot-text h3 {
        font-size: 28px;
        margin-bottom: 22px;
    }

    .angebot-details {
        margin: 22px 0 34px 0;
    }

    .angebot-preis {
        margin-top: 0 !important;
        font-size: 28px;
    }

    .angebot-anfrage {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {

    .angebot-seite {
        padding: 45px 20px 75px 20px;
    }

    .angebot-seite h2 {
        font-size: 40px;
    }

    .angebot-intro-box {
        gap: 32px;

        padding: 32px 24px;
        margin: 30px 0 60px 0;

        border-radius: 10px;
    }

    .angebot-intro-text h3 {
        font-size: 22px;
        line-height: 1.35;
    }

    .angebot-intro-text p {
        font-size: 15.5px;
        line-height: 1.7;
    }

    .angebot-intro-punkte span {
        font-size: 12px;
        letter-spacing: 0.1em;
        padding: 15px 18px;
    }

    .angebot-item {
        gap: 28px;
        margin-bottom: 48px;
    }

    .angebot-item:not(:last-child) {
        margin-bottom: 48px;
        padding-bottom: 48px;
    }

    .angebot-seite-bild {
        width: 190px;
    }

    .angebot-text h3 {
        font-size: 25px;
        line-height: 1.35;
    }

    .angebot-details {
        gap: 10px;
        margin: 20px 0 30px 0;
    }

    .angebot-details li {
        font-size: 15px;
        line-height: 1.55;
        letter-spacing: 0.04em;
    }

    .angebot-details li::before {
        margin-right: 10px;
    }

    .angebot-preis {
        font-size: 26px;
    }

    .angebot-anfrage {
        display: inline-block;

        width: auto;

        font-size: 12px;
        letter-spacing: 2.5px;
    }
}



/* =========================================================
   RESPONSIVE PORTFOLIO-SEITE
========================================================= */

@media (max-width: 1024px) {

    .portfolio-seite {
        padding: 60px 50px 100px 50px;
    }

    .portfolio-seite h2 {
        font-size: 70px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 38px;
        margin-top: 60px;
    }

    .portfolio-bild {
        height: 430px;
    }

    .portfolio-werk h3 {
        font-size: 21px;
    }
}

@media (max-width: 768px) {

    .portfolio-seite {
        padding: 55px 30px 90px 30px;
    }

    .portfolio-seite h2 {
        font-size: 52px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 44px;
        margin-top: 45px;
    }

    .portfolio-bild {
        height: 520px;
        border-radius: 12px;
    }

    .portfolio-werk h3 {
        font-size: 24px;
        line-height: 1.3;
    }

    .portfolio-werk p {
        font-size: 16px;
    }

    .portfolio-werk span {
        font-size: 15px;
    }

    .lightbox-overlay {
        padding: 28px;
    }

    .lightbox-image {
        max-width: 88vw;
        max-height: 76vh;
    }

     
    .lightbox-content {
        position: relative;
    }

    .lightbox-close {
        position: absolute;
        top: 12px;
        right: 12px;

        width: 44px;
        height: 44px;

        font-size: 28px;
    }

 .lightbox-overlay.is-zoomed .lightbox-close {
        opacity: 0;
        pointer-events: none;
    }
}


@media (max-width: 480px) {

    .portfolio-seite {
        padding: 45px 20px 75px 20px;
    }

    .portfolio-seite h2 {
        font-size: 40px;
        margin-bottom: 28px;
    }

    .portfolio-grid {
        gap: 40px;
        margin-top: 36px;
    }

    .portfolio-bild {
        height: 390px;
        margin-bottom: 18px;
        border-radius: 10px;
    }

    .portfolio-werk h3 {
        font-size: 22px;
        line-height: 1.35;
    }

    .portfolio-werk p {
        font-size: 15px;
    }

    .portfolio-werk span {
        font-size: 14px;
    }

    .lightbox-overlay {
        padding: 20px;
    }

    .lightbox-image {
        max-width: 92vw;
        max-height: 72vh;
        border-radius: 8px;
    }

     .lightbox-close {
        position: absolute;
        top: 10px;
        right: 10px;

        width: 42px;
        height: 42px;

        font-size: 28px;
    }
}

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

@media (max-width: 1024px) {

    .kontakt-seite {
        padding: 60px 50px 100px 50px;
    }

    .kontakt-seite h2 {
        font-size: 70px;
    }

    .kontakt-box {
        grid-template-columns: 1.2fr 1fr;
        gap: 45px;

        padding: 45px;
        margin-top: 45px;
    }

    .kontakt-text h3 {
        font-size: 28px;
    }

    .kontakt-text p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {

    .kontakt-seite {
        padding: 55px 30px 90px 30px;
    }

    .kontakt-seite h2 {
        font-size: 52px;
    }

    .kontakt-box {
        grid-template-columns: 1fr;
        gap: 38px;

        padding: 42px 36px;
        margin-top: 40px;
    }

    .kontakt-text h3 {
        font-size: 26px;
    }

    .kontakt-text p {
        font-size: 16px;
        line-height: 1.75;
    }

    .kontakt-aktionen {
        gap: 14px;
    }

    .kontakt-mail-button,
    .kontakt-link {
        text-align: center;
        font-size: 13px;
        padding: 16px 18px;
    }
}

@media (max-width: 480px) {

    .kontakt-seite {
        padding: 45px 20px 75px 20px;
    }

    .kontakt-seite h2 {
        font-size: 40px;
    }

    .kontakt-box {
        gap: 32px;

        padding: 32px 24px;
        margin-top: 34px;

        border-radius: 10px;
    }

    .kontakt-text h3 {
        font-size: 23px;
        line-height: 1.35;
    }

    .kontakt-text p {
        font-size: 15.5px;
        line-height: 1.7;
    }

    .kontakt-mail-button,
    .kontakt-link {
        font-size: 12px;
        letter-spacing: 0.1em;
        padding: 15px 18px;
    }
}