/* Thank you for looking at this code...  */
/* CSS Stylesheet Copyright by kymadesign.ch*/

/* 

 _   _      _ _        __        __         _     _ _ 
| | | | ___| | | ___   \ \      / /__  _ __| | __| | |
| |_| |/ _ \ | |/ _ \   \ \ /\ / / _ \| '__| |/ _` | |
|  _  |  __/ | | (_) |   \ V  V / (_) | |  | | (_| |_|
|_| |_|\___|_|_|\___/     \_/\_/ \___/|_|  |_|\__,_(_)



*/

    /* ==== SCHRIFT IMPORT ==== */
    /* Importierte  Schrift aus Google Fonts */
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

    @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

    :root {
        --hell: #669999;
        --weiss: #FFFFFF;
        --dunkel: #121212;
        --akzent: #3C5A5A;
        --background: #FFFFFF;
        /*#2C2C2C;*/
        --abrunden: 0.1rem;
    }

    /*css reset*/
    /*alles ansprechen*/
    * {
        /*alle standard werte auf 0 setzen*/
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        /*keine ränder dazuzählen*/
    }

    /*css variablen*/
    h1 {
        font-family: "Montserrat";
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--akzent);
    }

    h2 {
        font-family: "Roboto";
        font-size: 2rem;
        color: var(--akzent);
    }

    h3 {
        font-family: "Roboto";
        font-size: 1.5rem;
        color: var(--akzent);
    }

    h4,
    h5 {
        font-family: "Roboto";
        font-size: 1rem;
        color: var(--hell);
    }

    p {
        font-size: 1rem;
        color: var(--hell);
        font-family: "Roboto";
    }

    /*============================body===========================*/

    /*allgemeine HTML ELemente*/
    html,
    body {
        scroll-behavior: smooth;
    }

    body {
        background: var(--background);
        color: var(--akzent);
        font-family: "Roboto";
    }

    /*===================allgemeine definitionen====================*/

    /*alle links*/
    a {
        color: var(--akzent);
        text-decoration: none;
    }

    a:link {
        transition: all ease-in-out 0.5s;
        color: var(--hell);
    }

    a:hover {
        color: var(--hell);
        transition: all ease-in-out 0.3s;
    }

    /*container*/
    #container {
        max-width: 1600px;
        /*1920px */
        margin: 0 auto;
        min-height: 0vh;
        /*ev. dvh responsive*/
    }

/*==============================================================*/
/*===================FRONT SITE - INDEX========================*/
#logo_frontpage {
    position: fixed;
    /* Fixiert das Bild über die gesamte Seite */
    top: 0;
    left: 0;
    width: 100vw; /* Ganze Bildschirmbreite */
    height: 100vh; /* Ganze Bildschirmhöhe */
    object-fit: cover; /* Bild wird skaliert und zugeschnitten, um den gesamten Bereich zu füllen */
    z-index: 0; /* Bild bleibt im Hintergrund */
    cursor: pointer;
}

/*==============================================================*/
/*===================header========================*/
header {
    display: flex;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    min-height: 60px; /* Angepasste Höhe des Headers */
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: var(--background);
    position: relative;
    z-index: 1;
}


/*==============================================================*/
/*===================header========================*/
header {
    display: flex;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    min-height: 10px; /* Angepasste Höhe des Headers */
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start; /* Flexbox-Start für Logo, Navigation und Social Icons */
    padding: 1rem 2rem;
    background: var(--background);
    position: relative;
    z-index: 1;
}

/*==============================================================*/
/* ================Logo=================== */
.logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 80%; /* Angepasste Breite für das Logo */
    height: auto; /* Behält das Seitenverhältnis bei */
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1); /* Leichtes Vergrößern beim Hover */
}

 /*==============================================================*/
/*========== Navigation Desktop================ */
.navigation {
    flex: 2;
    text-align: right;
    display: flex;
    justify-content: flex-end; /* Navigation rechtsbündig */
    gap: 20px;
    margin-right: 5px; /* Optionaler Abstand zu den Social Icons */
}

.navigation a {
    color: var(--hell);
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    transition: 0.3s;
}

.navigation a:hover {
    background: var(--akzent);
    color: var(--background);
    border-radius: 5px;
}

.navigation a.active {
    color: var(--akzent);
    font-weight: bold;
}

.navigation a.active:hover {
    background: var(--hell);
    color: var(--akzent);
    border-radius: 5px;
}

/* Hamburger-Menü */
.hamburger {
    display: none; /* Standardmäßig ausgeblendet */
    font-size: 30px;
    cursor: pointer;
}

/* Social Media */
.social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.social-icons a {
    color: var(--akzent);
    font-size: 30px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: var(--akzent);
}

/*=================================================================*/
/*====================main========================================*/
/*=================================================================*/
    main {
        /* border: 2px solid rgba(0, 0, 0, 1.00);*/
        max-width: 1600px;
        width: 100%;
        min-height: 100vh;
        /* Stellt sicher, dass der Hauptbereich immer mindestens den sichtbaren Bereich einnimmt */
        margin: 0 auto;
        padding: 20px;
        line-height: 1.5;
        flex-grow: 1;
    }

    section {
        background-color: var(--background);
        /* Hintergrundfarbe */
        padding: 20px;
        /* Abstand innen */
        margin: 20px 0;
        /* Abstand außen */
        border-radius: 10px;
        /* Abgerundete Ecken */
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.08);
        /* Schatten */
    }

/*=================================================================*/
    /*==========css helpers =============*/
/*=================================================================*/
    .grossbuchstaben {
        text-transform: uppercase;
    }

    .kleineschrift {
        font-size: 0.5rem;
        position: absolute;
    }

    .zentriert {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .zentriert img {
        display: block;
        margin: 0 auto;
        /* Horizontale Zentrierung */
        max-width: 100%;
        /* Bild passt sich an */
        height: auto;
        /* Verhindert Verformungen */
    }

    .flex_umkehren {
        flex-direction: row-reverse;
    }

    /*fluid typografie (clamp)*/
    .typo_fluid_h2 {
        font-size: clamp(1.1rem, 3vw, 2.5rem);

    }

    .typo_fluid_p {
        /*min,relativ,max*/
        font-size: clamp(0.9rem, 1vw, 1rem);
        /*1.2rem*/
    }

 /* ================================================== */
/* ================ INDEX GRID BILDER===================== */

.hidden {
    display: none;
}

/* Der aktive Filter-Button */
.filter_button {
    background-color: var(--weiss);
    color: var(--hell);
    border-radius: var(--abrunden);
    border: 0.8rem;
    position: relative;
    padding: 0.5rem 3rem;
    margin: 0.1rem;
}
.filter_buttons {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.1rem; /* optional, ersetzt margin der Buttons */
    max-width: 1600px;
    margin: 1rem auto;
}
.filter_button:hover {
    background: var(--akzent);
    color: var(--weiss);
    margin-left: 0.5rem;
}

/* Die Galerie */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem;
}

.gallery {
    margin: 0;
}

.gallery img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%); /* Standard: Schwarz-Weiß */
    transition: filter 0.3s ease-in-out; /* Sanfter Übergang */
}

.gallery img:hover {
    filter: grayscale(0%); /* Bei Hover: Farbig */
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

 /* =========================================================== */
    /* ============== ANGEBOT============================= */
 /* =========================================================== */
    /*kacheln*/
    .kacheln {
        display: flex;
        flex-wrap: wrap;
    }

    .kacheln article {
        width: 50%;
        /* Kacheln sind 50% der Breite */
        aspect-ratio: 1 / 1;
        /* Seitenverhältnis von 1:1 für quadratische Kacheln */
        padding: 3rem;
        position: relative;
        /* Wichtig für das Bild und den Hover-Effekt */
    }

    .kacheln figure {
        width: 100%;
        height: 100%;
        margin: 0;
        position: relative;
        /* Positioniert das Bild innerhalb der Kachel */
    }

    /* Zoom-Effekt für Bilder */
    .kacheln figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Bild bleibt proportional und wird korrekt skaliert */
        transition: transform 0.3s ease;
        /* Optionaler Zoom-Effekt */
    }

    /* Hover-Effekt für Zoom */
    .kacheln figure img:hover {
        transform: scale(1.1);
        /* Zoom-Effekt bei Hover */
    }


    /* Kacheln mit Schwarz-Weiß-Effekt */
    .kacheln_schwarzweiss img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Bild bleibt proportional und wird korrekt skaliert */
        filter: grayscale(100%);
        /* Bild startet in schwarz-weiß */
        transition: filter 0.5s ease, transform 0.3s ease;
        /* Sanfter Übergang für Filter und Zoom */
    }

    /* Hover-Effekt für Kacheln mit Schwarz-Weiß-Bild */
    .kacheln_schwarzweiss img:hover {
        filter: grayscale(0%);
        /* Bild wird farbig beim Hover */
        transform: scale(1.05);
        /* Optionaler Zoom-Effekt */
    }

    .text_inhalt {
        padding: 5rem;
    }

/* ===================== animieren von der Seite==================== */
    .anim_einblenden_von_links {
        animation: einblenden-von-links 3s ease-out forwards;
        animation-timeline: view();
        animation-range: entry 0% exit 1vh;
    }

    .anim_einblenden_von_rechts {
        animation: einblenden-von-rechts 1s ease-out forwards;
        animation-timeline: view();
        animation-range: entry 0% exit 13vh;
    }

    @keyframes einblenden-von-links {
        from {
            transform: translateX(-30%);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes einblenden-von-rechts {
        from {
            transform: translateX(30%);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

/* ===========================================================*/
/* ==== ==================Angebot Fotografie ==== */
/* ===========================================================*/
.angebot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 2rem;
  background: none; /* kein Hintergrund */
  box-shadow: none;
}

/* Angebot-Kacheln */
.angebot-card {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 400px;
  border-radius: 0; /* eckig */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
  background-color: transparent;
}

.angebot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Text-Overlay */
.card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  padding: 1.6rem;
  backdrop-filter: blur(3px);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.card-overlay h3 {
  margin-bottom: 0.5rem;
  color: var(--akzent); /* gleiche Farbe wie Titel */
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.card-overlay p {
  color: var(--akzent);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ==== Zitat ==== */
.zitat {
  margin: 4rem 0 2rem;
  font-style: italic;
  color: var(--hell);
  font-size: 1.2rem;
  text-align: center;
}

/* ==== CTA Sektion ==== */
/* CTA Sektionen - Grundstil */
.cta-section {
  text-align: center;
  margin: 4rem 0;
  padding: 3rem 2rem;
  background-color: var(--hell);
  color: var(--weiss);
}

/* Dunkle Sektion */
.cta-section.dark {
  background-color: var(--akzent);
  color: var(--weiss);
}

/* Texte in Sektionen */
.cta-section h3,
.cta-section p {
  margin-bottom: 1.5rem;
  color: inherit; /* nutzt automatisch die Sektion-Farbe */
}

/* CTA Buttons */
.cta_button_angebot {
  display: inline-block;
  padding: 0.9rem 2rem;
  border: 2px solid var(--weiss);
  color: var(--weiss);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.95rem;
  transition: 0.3s ease;
  background-color: transparent;
  border-radius: var(--abrunden);
}

/* Hover-Effekt für alle Buttons */
.cta_button_angebot:hover {
  background-color: var(--weiss);
  color: var(--akzent);
}

/* Gefüllte Variante (dunkle Sektion) */
.cta_button_angebot.filled {
  background-color: var(--weiss);
  color: var(--akzent);
}

.cta_button_angebot.filled:hover {
  background-color: transparent;
  color: var(--weiss);
}

/* Outline-Variante (helle Sektion) */
.cta_button_angebot.outline {
  background-color: transparent;
  color: var(--weiss);
  border-color: var(--weiss);
}

/* ==== Responsive Layout ==== */
@media (max-width: 1024px) {
  .angebot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .angebot-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================*/
/* ==== ==================Angebot Webdesign ==== */
/* ===========================================================*/

/* Container für die Sektion */
.portfolio_webdesign, .angebot_webdesign {
  text-align: center;
  margin: 4rem auto;
  max-width: 1400px;
  padding: 0 2rem;
}

.portfolio_webdesign h2, .angebot_webdesign h2 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.portfolio_webdesign p, .angebot_webdesign p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: var(--akzent);
}

/* Grid für die Webdesign-Kacheln */
.angebot_webdesign {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Webdesign-Karten */
.angebot_webdesign .angebot-card {
  position: relative;
  height: 350px;                  /* einheitliche Höhe */
  background-size: cover;          /* Bild füllt die Kachel */
  background-position: center;     /* Bild zentriert */
  background-repeat: no-repeat;
  border-radius: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;      /* Overlay am unteren Rand */
}

.angebot_webdesign .angebot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Overlay */
.angebot_webdesign .card-overlay {
  width: 100%;
  padding: 1.6rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(3px);
  border-top: 1px solid rgba(0,0,0,0.05);
  box-sizing: border-box;
}

/* Überschrift im Overlay */
.angebot_webdesign .card-overlay h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--akzent);
}

/* Text im Overlay */
.angebot_webdesign .card-overlay p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--akzent);
  height: 4.5em;                  /* max. 3 Zeilen für einheitliche Höhe */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Responsive Anpassungen */
@media (max-width: 1024px) {
  .angebot_webdesign {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .angebot_webdesign {
    grid-template-columns: 1fr;
  }
}


/* ===========================================================*/
/* ==== ==================Angebot Grafikdesgin ==== */
/* ===========================================================*/

/* ========== Container für die Karten ========== */
/* ===== Grid für die Grafikdesign-Angebotsseite ===== */
.angebot_grafikdesign {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* zwei Karten nebeneinander */
  gap: 2rem;
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 2rem;
  background: none;
  box-shadow: none;
}

/* Angebot-Kacheln */
.angebot_grafikdesign .angebot-card {
  position: relative;
  background-size: cover;        /* Bild füllt die Kachel und wird proportional skaliert */
  background-position: center;   /* Bild zentrieren */
  background-repeat: no-repeat;  /* Wiederholung verhindern */
  height: 350px;                 /* einheitliche Höhe */
  border-radius: 0;              /* eckig */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
  background-color: transparent;
}

.angebot_grafikdesign .angebot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


/* Text-Overlay */
.angebot_grafikdesign .card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  padding: 1.6rem;
  backdrop-filter: blur(3px);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.angebot_grafikdesign .card-overlay h3 {
  margin-bottom: 0.5rem;
  color: var(--akzent);
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.angebot_grafikdesign .card-overlay p {
  color: var(--akzent);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ==== Responsive Layout ==== */
@media (max-width: 1024px) {
  .angebot_grafikdesign {
    grid-template-columns: 1fr; /* eine Karte pro Reihe auf Tablet */
  }
}







/* ===========================================================*/
/* ==== ==================Angebot Panorama ==== */
/* ===========================================================*/





/* ===========================================================*/
/* ===================Projekte/ Portfolio======================= */
/* ===========================================================*/
.portfolio-link {
    text-align: center;
    margin-bottom: 2rem;
}

/* CTA Button + Text */
.cta-container {
    text-align: center;
    margin-top: 2rem;
}

.cta-text {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.cta_button_angebot {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.cta_button_angebot:hover {
    background-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .titel h2 {
        font-size: 2rem;
    }

    .angebot-item h3 {
        font-size: 1.5rem;
    }
}
/* ===========================================================*/
/* ================Portfolio-Styling */
/* ===========================================================*/
.container_porfolio {
    display: flex;
    justify-content: center; /* Zentriert die Galerie insgesamt */
    max-width: 1600px; /* Setzt die maximale Breite */
    margin: 0 auto; /* Zentriert den Container horizontal */
}

.gallery_portfolio {
    display: flex;
    justify-content: space-between; /* Verteiht die Items mit gleichmäßigem Abstand */
    gap: 16px; /* Optional: Setzt den Abstand zwischen den Bildern */
    width: 100%;
    max-width: 1600px; /* Maximale Breite */
}

.portfolio_item {
    position: relative;
    width: 33.33%; /* Die Items nehmen je ein Drittel der Breite ein */
    padding-bottom: 33.33%; /* Höhe entspricht der Breite, somit wird das Element quadratisch */
    overflow: hidden;
}

.portfolio_item .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.portfolio_item:hover .image {
    filter: grayscale(0%);
}

.image_link {
    display: block;
    position: relative;
}

.image_title {
    position: absolute;
    top: 50%; /* Vertikal mittig */
    left: 50%; /* Horizontal mittig */
    transform: translate(-50%, -50%); /* Verschiebt den Titel um die Hälfte seiner eigenen Breite und Höhe, um ihn exakt zu zentrieren */
    color: white;
    font-size: 30px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 3px;
    z-index: 2;
}

/* ---------- -------------------- ---------- */
/* ---------- Portfolio Übersicht ---------- */
/* ---------- -------------------- ---------- */

.portfolio-uebersicht {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.portfolio-box {
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-box:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.portfolio-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}

.portfolio-box:hover img {
  filter: brightness(1.08);
}

.portfolio-box h3 {
  margin-top: 1rem;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.kleintext {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.3rem;
}

/*=====================portfolio_foto==================*/
/*=====================panels==================*/
   .image-container img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.image-container:hover img {
    filter: grayscale(0%);
    transform: scale(1.05); /* leichtes Zoomen für dynamischen Effekt */
}

.panels {
    display: flex;
    flex-wrap: wrap;
    min-height: 66vh;
    justify-content: center;
}

.panels article {
    flex-grow: 1;
    width: 33.333%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    text-align: center;
}

.panels article figure {
    overflow: hidden;
    border-radius: var(--abrunden);
    width: 100%;
    aspect-ratio: 4 / 3;
    position: relative;
}

.panels h4 {
    margin: 2rem 0rem;
}

.panels article figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* optional: grayscale und hover hier entfernen, weil du es in .image-container schon hast */
}

figure .copyright-text {
    position: absolute;
    bottom: 0.5rem;
    right: 0.75rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--weiss);
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .copyright-text {
    opacity: 1;
}

/* verschiedene article panels ansprechen */
.panels article:nth-child(1),
.panels article:nth-child(2),
.panels article:nth-child(3) {
    background: var(--background);
}

/* CTA Button Projects */
.cta_button_projects {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--akzent);
    color: var(--weiss);
    text-decoration: none;
    border-radius: var(--abrunden);
    transition: background 0.2s ease-in-out;
    margin-top: 2rem;
}

.cta_button_projects:hover {
    background: var(--akzent);
    color: var(--weiss);
}

/* ===========================================================*/
 /*=====================portfolio_webdesign==================*/






/* ===========================================================*/
 /*=====================portfolio_grafikdesign==================*/
.portfolio_grafikdesign {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.logo-item {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.logo-item img {
    height: 120px;       /* feste Höhe für alle Logos */
    width: auto;         /* Breite automatisch */
    max-width: 100%;     /* nicht aus der Zelle herauswachsen */
    object-fit: contain; /* verhindert Verzerrungen */
    border-radius: 0.5rem;
    display: block;
    margin: 0 auto 0.5rem auto;
}


.logo-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.logo-caption {
    display: block;
    font-size: 0.9rem;
    color: #555;
}

/* ===========================================================*/
 /*=====================portfolio Panorama==================*/

   







    


/*==================================================*/
/*====================üBER MICH===================*/
/*==================================================*/
/* Grundlegende Styles */
.about-section {
    position: relative;
    padding: 80px 20px;
    background-color: var(--weiss);
    color: var(--akzent);
    overflow: hidden;
}

/* Wellen oben */
.wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('bilder/ueber_mich/welle.svg') no-repeat top center;
    background-size: cover;
}

/* Wellen unten */
.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('bilder/ueber_mich/welle.svg') no-repeat bottom center;
    background-size: cover;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative; /* Damit Text über Wellen liegt */
    z-index: 1;
}

.text-column {
    flex: 1 1 500px;
    min-width: 300px;
}

.text-column h2 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--akzent);
}

.text-column p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.text-column strong {
    color: var(--akzent);
}

/* Bildspalte */
.image-column {
    flex: 1 1 400px;
    min-width: 300px;
    text-align: center;
}

.image-column img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.image-column img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.image-column figcaption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #777;
}
/* ==== CTA Über mich ==== */
/* ==== CTA Buttons Über mich ==== */
.cta_ueber_mich {
    text-align: center;
    margin: 4rem 0;
}

.cta_ueber_mich .cta_button_ueber_mich {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--akzent);
    color: var(--weiss);
    text-decoration: none;
    border-radius: var(--abrunden);
    transition: background 0.2s ease-in-out, transform 0.2s, box-shadow 0.2s;
    margin-top: 2rem;
}

.cta_ueber_mich .cta_button_ueber_mich:hover {
    background: var(--hell);
    color: var(--weiss);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Instagram Text */
.cta_ueber_mich .instagram-text {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--akzent);
}

.cta_ueber_mich .instagram-text a {
    color: var(--akzent);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.cta_ueber_mich .instagram-text a:hover {
    color: var(--hell);
}

/* Responsiv */
@media (max-width: 500px) {
    .cta_ueber_mich .cta_button_ueber_mich {
        font-size: 0.95rem;
        padding: 0.4rem 0.8rem;
    }
}
/*================= Kontakt=================================*/
/*================= Formularelemente==========================*/
    .form-container {
        padding-left: 9.5rem;
    }

    #label {
        color: var(--background);
    }

    input,
    select,
    textarea {
        padding: 0.5rem;
        font-size: 1rem;
        font-family: 'Roboto', Helvetica, sans-serif;
        border: var(--background);
        border-radius: 0.3rem;
        margin: 0.5rem 0rem;
        background: rgba(112, 111, 111, 0.24);
    }

    textarea {
        height: 300px;
        width: 50%;
    }

    input[type=radio] {
        width: 1rem;
        margin-right: 0.2rem;


    }

    input[type=checkbox] {
        width: 2rem;
    }

    input[type=submit] {
        padding: 0.5rem 2rem;
        height: 3rem;
        cursor: pointer;
        transition: 0.5s ease-in-out color;
        color: var(--hell);
        background: var(--akzent);
    }

    input[type=submit]:hover {
        background: var(--hell);
        color: var(--akzent);
        transition: 0.3s ease-in-out color;
    }

    /*============================================================*/
    /*=====================copyright bei bilder==================*/

    .image-container {
        position: relative;
        display: inline-block;
        overflow: hidden;
    }

    .image-container img {
        display: block;
        width: 100%;
        height: auto;
    }

    .copyright-text {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.5);
        color: white;
        font-size: 0.7rem;
        padding: 2px 6px;
        border-radius: 5px;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

    .image-container:hover .copyright-text {
        opacity: 1;
        transform: translateY(0);
    }
    /*=======================================*/
    /*============= Cookies================= */
     #cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 1rem;
    text-align: center;
    z-index: 9999;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#cookie-banner.hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}


    /*=============================================================*/
    /*========================totop=================================*/
    /*==============================================================*/
    #totop {
        background: var(--akzent);
        padding: 1rem;
        position: fixed;
        right: 0rem;
        bottom: 0rem;
        z-index: 555;
    }
    /*==============================================================*/
    /*=========================footer==============================*/
    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        margin-top: 1rem;
        background: var(--background);
        max-width: 1600px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        color: var(--akzent);
        height: auto;
        text-align: center;
    }

    .footer-container img {
        width: 50%;
        /* Größe des Logos anpassen */
        text-align: center;
        max-width: 500px;
    }

    .footer_unten {
        text-align: center;
        width: 100%;
        margin-top: auto;
        /* Drückt die Fußzeile nach unten */
        color: var(--akzent);
    }

    .footer_unten a {
        color: var(--akzent);
    }

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

    .footer a:hover {
        color: var(--akzent);
    }
    /*==============================================================*/
    /*===========================impressum============================*/
    #impressum,
    #datenschutz {
        position: fixed;
        top: 1rem;
        left: 1rem;
        width: 80%;
        right: 1rem;
        height: 90vh;
        margin: 0 auto;
        background: var(--background);
        padding: 2rem;
        overflow-x: hidden;
        /*scrollbalken nur vertikal*/
        display: none;
        color: var(--dunkel);
        z-index: 888;
    }

    .footer_flex {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    /*diese klasse zeigt dass ein element an*/
    .show_element {
        display: block !important;
        /*ohne important geht nicht*/
    }

    .toggle_button {
        cursor: pointer;
        background: var(--background);
        /* Hintergrundfarbe */
        color: var(--akzent);
        /* Textfarbe */
        padding: 0.5rem 1rem;
        /* Abstände anpassen */
        display: flex;
        justify-content: center;
        align-items: center;
        border: 0.1px solid var(--akzent);
        /* Dünner Rand */
        border-radius: var(--radius);
        /* Abgerundete Ecken */
        transition: all 0.3s ease;
        /* Übergänge für Hover */
    }

    .toggle_button_oben {
        position: absolute;
        top: 1rem;
        right: 3rem;
        width: 2.5rem;
        height: 2.5rem;
        color: var(--akzent);
        aspect-ratio: 1 / 1;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1000;
    }

    .toggle_button_oben .fa {
        pointer-events: none;
    }

    .kein_padding {
        padding: 0px;
    }

/*--------------------------------------------------------*/
/*-----------------RESPONSIVE DESIGN-----------------------*/
/*--------------------------------------------------------*/


/*=============Responsives Design: max-width689px==========*/

    @media screen and (max-width: 689px) {

        header {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0.1rem 0.1rem;
            margin-top: 0;
        }

        .logo {
            justify-content: center;
            width: 100%;
            margin-bottom: 1rem;
        }

        .logo img {
            width: 60%;
        }

        /* Hamburger Button unterhalb des Logos */
        .hamburger {
            display: block;
            margin-top: 1rem;
            /* Abstand unterhalb des Logos */
        }

        /* Responsives Navigation */
        .navigation {
            display: none;
            flex-direction: column;
            width: 100%;
            background: var(--background);
            text-align: left;
            margin-top: 1rem;
            /* Abstand für die Navigation */
        }

        .navigation.show {
            display: flex;
        }

        /* Social Icons */
        .social-icons {
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 1rem;
            width: 100%;
        }

        .hero {
            height: 60vh;
            padding: 1rem;
        }

        #container_willkommen {
            max-width: 90%;
            text-align: center;
            padding-right: 0;
        }

        #hero_titel {
            font-size: 2.5rem;
        }

        #hero_untertitel {
            font-size: 1rem;
        }

        .fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Schmuck-Elemente */
        .schmuck_element,
        .schmuck_element_2,
        .schmuck_element_3 {
            display: none !important;
        }

        /* Kacheln - Zentrieren und untereinander anordnen */
        .kacheln,
        .kacheln_about {
            display: flex;
            flex-direction: column;
            align-items: center;
            /* Zentriert die Kacheln */
            width: 100%;
            gap: 1rem;
            /* Abstand zwischen den Kacheln */
        }

        .kacheln article,
        .kacheln_about article {
            width: 90%;
            /* Oder eine andere max. Breite, je nach Bedarf */
            padding: 1rem;
            text-align: center;
            /* Optional: um den Text innerhalb der Kacheln zu zentrieren */
        }

        .text_inhalt {
            padding: 2rem;
        }

        /* About-Kacheln */
        .about {
            flex-direction: column;
            align-items: center;
        }

        .kacheln_about article {
            width: 100%;
            padding: 1rem;
        }

        .cta_button_about {
            font-size: 1rem;
            padding: 0.5rem 1rem;
            margin-top: 1rem;
        }

        /* Live-Daten */
        #live {
            padding: 30px 15px;
        }

        .live-daten-header {
            font-size: 1rem;
        }

        .live-daten {
            grid-template-columns: 1fr;
        }

        .live-datum p,
        .live-ort p,
        .live-band p {
            font-size: 0.85rem;
        }

        /* Panels */
        .panels article {
            width: 100%;
            margin-bottom: 1rem;
        }

        .titel h2,
        .titel h3 {
            font-size: 1.2rem;
            text-align: center;
        }

        .band-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2rem 1rem;
            gap: 1rem;
        }

        .band-text,
        .band-image {
            width: 100%;
            max-width: 600px;
        }

        .band-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .social-icons_projects {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .social-icons_projects a {
            font-size: 1.5rem;
        }

        .liste {
            padding: 2rem 2rem;
            /* Weniger Seitenabstand auf kleinen Geräten */
        }

        /* Media-Galerie */
        .bildergalerie {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .bildcontainer {
            height: 10rem;
        }

        .filter_button {
            padding: 0.5rem 1.5rem;
            width: 100%;
        }

        /* Kontaktformular */
        .form-container {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        textarea,
        input,
        select {
            width: 100%;
        }

        input[type=submit] {
            padding: 0.5rem 1.5rem;
        }

        /* To Top Button */
        #totop {
            padding: 0.75rem;
            right: 1rem;
            bottom: 1rem;
        }

        /* Footer / Impressum / Datenschutz */
        .footer-container {
            padding: 1rem;
        }

        .footer-container img {
            width: 80%;
            max-width: 400px;
        }

        .footer_unten {
            font-size: 0.9rem;
        }

        #impressum,
        #datenschutz {
            width: 100%;
            top: 1rem;
            padding: 1rem;
            max-height: 90vh;
            overflow-y: scroll;
        }

        .toggle_button {
            font-size: 0.9rem;
            padding: 0.3rem 0.7rem;
        }
    }

    /*===================Ende max-width 768px===================*/


    /*=======Responsive Anpassungen für 690px bis 1024px============= */

    @media (min-width: 768px) and (max-width: 1024px) {
        header {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0.1rem 0.1rem;
            margin-top: 0;
        }

        .logo {
            justify-content: center;
            width: 100%;
            margin-bottom: 1rem;
        }

        .logo img {
            width: 60%;
        }

        /* Hamburger Button unterhalb des Logos */
        .hamburger {
            display: block;
            margin-top: 1rem;
        }

        /* Responsives Navigation */
        .navigation {
            display: none;
            flex-direction: column;
            width: 100%;
            background: var(--background);
            text-align: left;
            margin-top: 1rem;
        }

        .navigation.show {
            display: flex;
        }

        /* Social Icons */
        .social-icons {
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 1rem;
            width: 100%;
        }

        .hero {
            padding: 3rem 2rem;
            /* Mehr Platz innen im Hero Bereich */
        }

        .hero_title {
            font-size: 2.8rem;
            /* Anpassung der Titelgröße */
        }

        .hero_subtitle {
            font-size: 1.4rem;
            /* Anpassung der Untertitelgröße */
        }

        .cta_button_projects {
            width: 50%;
            font-size: 1.2rem;
            margin: 2rem auto;
        }

        .social-icons_projects {
            justify-content: center;
            gap: 2rem;
            margin-top: 1rem;
        }

        .live-daten {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            /* Immer drei Spalten */
            gap: 20px;
            width: 100%;
            max-width: 100%;
            /* Stellt sicher, dass der Container die volle Breite nutzen kann */
            margin: 0 auto;
        }

        .live-daten-header {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            /* Stellt sicher, dass immer drei Spalten angezeigt werden */
            gap: 20px;
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            font-size: 0.8rem;
            font-weight: bold;
            margin-bottom: 20px;
            /* Abstand zum Grid mit den Live-Daten */
        }

        .kacheln,
        .kacheln_about {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .kacheln article,
        .kacheln_about article {
            width: 90%;
            padding: 1rem;
            text-align: center;
        }

        /* Weitere allgemeine Anpassungen */
        section {
            padding: 3rem 2rem;
            /* Standard-Padding für alle Sektionen */
        }

        .footer-container {
            padding: 1rem;
            text-align: center;
        }
    }

    /*===================Ende max-width 1024px===================*/