/*erster container mit videos */ 

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

.row1-botgar {
    flex: 1;
    border-radius: 2em;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1em;
    height: 75vmin;
}

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

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

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

/* titel und projekttext */

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

 .botgar-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;
}
    
.botgar-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;
}

.botgar-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; 
}
.botgar-titel,
.botgar-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 grid test 

.sketch-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(100px,1fr));
    grid-template-rows: repeat(auto-fit, minmax(100px,1fr));
    gap: 20px;

}

.sketch-container img {
    width: 350px;
    height: 200px; 
} */

/* sketch bilder */

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

}

.sketch-glas 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;
}

/* mobile version */

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

    /* 001 video */

    .container-botgar {
        display: block;
    }

    .row1-botgar {
        display: block;
    }

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

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

     }

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

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

    /* 003 material texte */

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


    /* 004 sketches bilder */

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

}

.sketch-glas img {
    width: 100%;
    height: 100%;


}

    /* 005 titel und text endresult */

    /* 006 endresult bilder */

    /* 007 footer */


}
