/*erster container mit videos */ 

.container-gaumler {
    width: 100%;
    padding: 1em;
    padding-top: 2%;
    padding-left: 2%;
    padding-right: 2%;
    display: flex;
    flex-direction: column;
    gap: 1em;
    border-radius: 2em;

}

.row1-gaumler {
    flex: 1;
    border-radius: 2em;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1em;
}

.gaumler-left {
    flex: 1;
    border-radius: 2em;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: scroll;
    background-size: cover;
}

.gaumler-right {
    flex: 1;
    border-radius: 2em;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: scroll;
    background-size: cover;
}

.gaumler-middle {
    flex: 1;
    border-radius: 2em;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: scroll;
    background-size: cover;
    justify-content: flex-end;
}


/* video */ 
.video-wrapper {
    width: 90%;
    max-width: 600px;
    margin: 0 auto; /* Zentriert das Element */
    border-radius: 20px;
    overflow: hidden; /* Rundungen wirken auf das Video */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* optional: sanfter Schatten */
  }
  
  video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

/* titel und projekttext */

.projekt-gaumler-titel {
    width: 100%;
    padding: 5%;
    padding-bottom: 2%;
    display: flex;
    justify-content: center;
    gap: 20%;
    position: relative;
 }

 .gaumler-titel h1 {
    font-family:'Alexandria', sans-serif;
    font-weight: 100;
    font-size: 20px;
    letter-spacing: 6px !important;
    color: black;
    position: relative;
    z-index: 100;
    text-decoration: none; 
    text-transform: uppercase;
}
    
.gaumler-titel h3 {
    font-family:'Alexandria', sans-serif;
    font-weight: 100;
    font-size: 60px;
    letter-spacing: 3px !important;
    color: black;
    position: relative;
    z-index: 100;
    text-decoration: none; 
    text-transform: uppercase;
}

.gaumler-text p {
    font-family:'Alexandria', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 2px !important;
    color: black;
    position: relative;
    z-index: 100;
    text-decoration: none; 
}
.gaumler-titel,
.gaumler-text {
    flex: 1; /* Gleichmäßige Breite für beide Boxen */
    border-radius: 2em;
    display: flex; /* Flexbox aktivieren */
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    padding: 1em; /* Innenabstand */
    position: relative;
}

/* sketch texte */

.sketches-text {
    width: 100%;
    padding-bottom: 2%;
    display: flex;
    justify-content: center;
    gap: 20%;
    position: relative;
}

.sketches-text p {
    font-family:'Alexandria', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 2px !important;
    color: black;
    text-align: justify;
    position: relative;
    z-index: 100;
    text-decoration: none; 
    /* display: block; */
}

.text-box-left,
.text-box-right {
    flex: 1; /* Gleichmäßige Breite für beide Boxen */
    border-radius: 2em;
    display: flex; /* Flexbox aktivieren */
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    padding: 1em; /* Innenabstand */
    position: relative;
}

/* sketch bilder */

.sketch-gaumler {
    margin: 0%;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;

}

.sketch-gaumler img {

        height: 200px; /* oder deine Wunschhöhe */
        object-fit: cover;
        width: 100%;
        display: block;

}
/* illustrations texte */

.illustration-text {
    width: 100%;
    padding: 5%;
    padding-bottom: 2%;
    display: flex;
    justify-content: center;
    gap: 20%;
    position: relative;
}

.illustration-text p {
    font-family:'Alexandria', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 2px !important;
    color: black;
    text-align: justify;
    position: relative;
    z-index: 100;
    text-decoration: none; 
    /* display: block; */
}

 /*dritter container mit illus */ 

 .sketch-gallery {
    width: 100%;
    height: 160vmin;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 1em;
    padding-top: 2%;
    padding-left: 2%;
    padding-right: 2%;
}


.sketch-gallery img {
height: 100%;
flex: 1;
object-fit: cover;
overflow: hidden;
cursor: pointer;
border-radius: 10px;
transition: all 0.5s;
}

.sketch-gallery img:hover {
    flex: 20;
}

/* endresult video */

.gaumler-endresult {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 20%;
    padding-right: 20%;
    display: flex;
}



/* mobile version */

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

    /* 001 video */

    .container-gaumler {
        display: block;
    }

    .row1-gaumler {
        display: block;
    }

    .gaumler-middle {
        display: none;
    }
    
    .gaumler-right {
        display: none;
    }
    
    /* 002 titel und projekttext */

    .projekt-gaumler-titel {
        display: block;
        padding: 0%;

     }

    .gaumler-titel {
        margin-top: 0;
        margin-bottom: 0;
    }

        .gaumler-titel,
    .gaumler-text {
        display: block; 
    }

    /* 003 material texte */

    .sketches-text {
        display: block;
    }
    
    .text-box-left {
        display: none;
    }


    /* 004 sketches bilder */

    .sketch-gaumler {
        margin: 15%;
        margin-top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 5px;
    
    }
    
    .sketch-gaumler img {
        width: 100%;
        height: 100%;
    
    
    }

    /* 005 titel und text endresult */

    /* 006 endresult bilder */

    /* 007 footer */


}
