/* Slideshow fÃ¼r DESKTOP Ansicht optimieren----------------------------------------------------- */

body {
    font-family: "Red Hat Text", Sans-Serif;
    font-size: 19px;
    font-weight: 200;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
}

header {
    background-color: #000000;
    color: white;
    padding: 30px 10px;
    text-align: right;
}

/* Navbar Styling für Desktop */
nav {
    background-color: white;
    padding: 10px 10px;
    height: 60px;
    position: relative;
    text-align: right;
}

.fa {
    border-radius: 5px;
    padding: 1px;
    font-size: 20px;
    height: 20px;
    width: 20px;
    text-align: center;
    text-decoration: none;
}

.fa:hover {
    opacity: 0.7;
}

/* Facebook-Icon */
.fa-facebook {
    position: absolute;
    top: 10px;
    left: 15px;
    background: rgb(82, 82, 82);
    color: rgb(236, 236, 236);
}

/* Instagram-Icon */
.fa-instagram {
    position: absolute;
    top: 10px;
    left: 55px;
    background: rgb(82, 82, 82);
    color: rgb(236, 236, 236);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: row;
    display: flex;
    justify-content: right;
}

nav ul li {
    margin: 15px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    /*font-weight: bold;*/
    text-transform: uppercase; /* Optional für besseren Stil */
    transition: color 0.3s ease;
    display: block;
    padding-left: 5px;
    padding-right: 5px;
}

nav ul li:hover {
    background-color: white;
    border-radius: 2px;
}

nav ul li a:hover {
    color: #333; /* Hover-Effekt */
}

/* Hamburger-Menü für Mobilgeräte */

.hamburger {
    display: none; /* Standardmäßig versteckt */
    flex-direction: column;
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 10;
    width: 40px;
    height: 30px;
    cursor: pointer;
}

.hamburger div {
font-family: verdana;
font-weight: bold;
    width: 100%;
    height: 10px;
    background-color: #333;
    margin: 3px;
    transition: background-color 0.3s ease;
}

/* Desktop Ansicht-----------------------------------------------------------------------*/

/* Mobile Ansicht */
@media (max-width: 768px) {
    .hamburger {
        display: flex; /* Zeigt das Hamburger-Menü an */
    }

    nav ul {
        display: none; /* Versteckt die Liste standardmäßig */
        flex-direction: column; /* Vertikale Anordnung */
        position: absolute;
        top: 50px;
        left: 2px;
        width: 100%;
        background-color: #333;
        text-align: r;
        color: #747474;
    }

    nav ul li a{  
        color: #747474;
    }
    
    nav ul li:hover {
        background-color: #333;
    }

    nav ul li:hover a {
        color: #747474;
    }

    nav ul#navbar-menu.active {
        display: flex; /* Zeigt die Liste an */
        z-index: 1000;
    }
}
/* Desktop Ansicht-----------------------------------------------------------------------*/
@media (min-width: 769px) {
    nav ul {
        display: flex; /* Navbar bleibt immer sichtbar */
    }

    .hamburger {
        display: none; /* Hamburger wird in der Desktop-Ansicht ausgeblendet */
    }
}
/* Galerie-----------------------------------------------------------------------*/

.gallery h2 {
    text-align: center;
    margin-bottom: 20px;
}
gallery p {
    text-align: center;
}
.gallery-item {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item p {
    margin: 10px 0;
    font-weight: bold;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Galerie für Mobile Ansicht optimieren ...............................*/
@media (max-width: 768px) {
    .gallery-container {
        width: 100%;
        background-color: #fff;
    }
    .gallery {
        margin: auto;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: #fff;
    }
    .main-container {
        height: 500px;
    }
    /* Hauptbild */
    .main-image {
        width: 100%;
        /*  height: 570px;
        object-fit: contain;
      object-position: left top;*/
        /*object-fit: cover;  Bild an Container anpassen, ohne das Seitenverhältnis zu verzerren 
        object-position: center bottom;  Zentriert das Bild (horizontal und vertikal) */
    }
    .gallery {
        width: 90%;
        position: relative;
        justify-content: center;
        background-color: #fff;
    }
    .thumbnails {
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        gap: 10px;
        overflow-x: auto; /* Ermöglicht horizontales Scrollen, falls die Thumbnails nicht in den Bereich passen */
        margin-top: 20px;
        padding-bottom: 10px;
        background-color: #fff;
    }

    .thumbnails img {
        width: auto;
        height: 80px;
        border: 2px solid transparent;
        cursor: pointer;
        transition: border 0.3s ease;
    }
}
/* Galerie Desktop Ansicht-----------------------------------------------------------------------*/
@media (min-width: 768px) {
    .gallery-container {
        display: grid;
        /*grid-template-columns: repeat(auto-fit, minmax(300px, 3fr));*/
        grid-template-columns: repeat(auto-fit, minmax(400px, 3fr));
        gap: 10px;
        padding: 50px;
    }
    .gallery {
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }
    .main-container {
        height: 430px;
    }
    .main-image {
        width: 100%;
        max-height: 600px;
        object-fit: contain; /* Bild an Container anpassen, ohne das Seitenverhältnis zu verzerren */
        object-position: center bottom; /* Zentriert das Bild (horizontal und vertikal) */
    }
    .gallery h2 {
font-size: 25px;
        text-align: center;
        margin-bottom: 25px;
    }
    .thumbnails {
        display: flex;
        justify-content: center;
        gap: 10px;
        overflow-x: auto;
    }

    .thumbnails img {
        width: auto;
        max-height: 100px;
        border: 2px solid transparent;
        cursor: pointer;
        transition: border 0.3s ease;
    }

    .thumbnails img:hover {
        border: 2px solid #575757;
    }
}
.gallerymaincont {
    height: 430px;
}

.description {

    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Formular */
form {
    margin: 10px auto;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

form input,
form textarea {
    width: 95%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

form button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin: 0 auto;
    display: block;
}

form button:hover {
    background-color: #575757;
}
@media (min-width: 769px) {
#contact-container {
    display: flex;
    align-items: left;
justify-content: center;
align-items: center;
margin-left: 80px;
margin-right: 80px;
}
}
#img-contact-container {
    width: 100%;
    height: 100%;
}

#contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 30%;
    min-width: 350px;
margin-right: 80px;
}

/* Contact für Mobile Ansicht optimieren */
@media (max-width: 768px) {
    #img-contact-container {
       /* display: none;*/
    }
#contact-container { 
justify-content: center;
align-items: center;
margin-right: 80px;
margin-left: 40px;
}



}

/* Footer */
.footer {
    font-size: 14px;
    padding: 10px 0;

    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    text-align: center;
}

.footer a:link {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    opacity: 0.7;
    text-decoration: none;
}

.footer a:visited {
    color: #fff;
    text-decoration: none;
}

hr {
    width: 90%;
    text-align: left;
    margin-left: 5px;
}

.content_impressum {
    margin-left: 30px;
    display: block;
}

.TitelTextFormat {
    text-align: left;
margin: auto;
 max-width: 1000px;
padding-left: 30px;
}

/*Text in About artist*/


/*Titelseite Mobile Ansicht optimiere*/
@media (max-width: 768px) {
.AboutTextFormat {
    margin-left: 20px;
    display: block;
    position: relative;
    text-align: left;
    width: 80%;
}





    .kh1 {
        font-family: "Red Hat Text", Sans-Serif;
        
        font-size: 30px;        
        line-height: 0.8em;
    }
    .kh2 {
        font-family: "Red Hat Text", Sans-Serif;
        font-weight: 400;
        font-style: normal;
        /*font-family: verdana;*/
        font-size: 40px;
        line-height: 0.8em;
    }

    .kh3 {
        font-family: "Red Hat Text", Sans-Serif;
        
        /*font-family: verdana;*/
        font-size: 20px;
        line-height: 3.8em;
    }
}
/* TextfÃ¼r desktop Ansicht optimieren----------------------------------------------------- */

@media (min-width: 768px) {
.AboutTextFormat {
justify-content: center;
        margin: auto;
        padding-top: 10px;
        
        padding-bottom: 1px;
        
        max-width: 1000px;
        height: 100%;
}



.kh1 {
        font-family: "Red Hat Text", Sans-Serif;
        font-size: 40px;
        line-height: 1.8em;
        
    }
    .kh2 {
        font-family: "Red Hat Text", Sans-Serif;
        font-weight: 200;
        font-style: normal;
        /*font-family: verdana;*/
        font-size: 35px;
        line-height: 0.8em;
    }
    .kh3 {
        font-family: "Red Hat Text", Sans-Serif;
        
        font-size: 20px;
        line-height: 1.8em;
       }
}

swiper-slide {
    text-align: center;
    font-size: 10px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Slideshow fÃ¼r DESKTOP Ansicht optimieren----------------------------------------------------- */
@media (min-width: 768px) {
    swiper-container {
justify-content: center;
        margin: auto;
        padding-top: 10px;
        
        padding-bottom: 1px;
        
        max-width: 1000px;
        height: 100%;
    }

    swiper-slide img {
        display: block;
        width: auto; /* Ursprüngliche Bildbreite beibehalten */
        height: 600px; /* Optionale Höhenfestlegung */
        object-fit: cover;
    }



}
/* Slideshow fÃ¼r Mobile Ansicht optimieren----------------------------------------------------- */

@media (max-width: 768px) {
    swiper-container {
    padding-right: 1px;
    
    padding-left: 30px;
    
    }
    swiper-slide img {
        width: auto; /* Ursprüngliche Bildbreite beibehalten */
        height: 500px; /* Optionale Höhenfestlegung */
        object-fit: cover;
    }
}

/* ab hier Slideshow**************************************************************************/
.cont1 {
    justify-content: center;
        margin: auto;
        padding-top: 10px;
        
        padding-bottom: 1px;
        
        max-width: 1000px;
        height: 100%;
    @media (max-width: 768px) {
        display: grid;
        grid-template-columns: 1fr;
    }
    @media (min-width: 768px) {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
.cont1 img {
    width: 70%;
margin: auto;
    

}
/* ab hier container**************************************************************************/
.cont2 {
    margin: auto;
    column-gap: 8px;
    padding-right: 30px;
    padding-bottom: 1px;
    padding-left: 30px;
        
    height: 100%;
    
    max-width: 1000px;

      max-width: 1000px;
    @media (max-width: 768px) {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    @media (min-width: 768px) {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
}
.cont2 img {
    width: 100%;
/* SCALE */
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	/* VERZ�GERUNG */
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;

}
.cont2 img:hover {
    /*opacity: 0.7;*/
-webkit-transform: scale(1.2);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
/* Text �ber Bild rechts unten */
.container11 {
    position: relative;
}

/* Bottom right text */
.text-block11 {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: black;
    color: white;
    padding-left: 20px;
    padding-right: 20px;
}
/* Text �ber Bild mitte*/

/* ab hier pdf **************************************************************************/
:root {
--btn-bg: #111;
--btn-fg: #fff;
--btn-bg-hover: #222;
}
/* Floating button */
.pdf-fab {
position: fixed;
inset: auto 1.25rem 1.25rem auto;
z-index: 99999;
display: inline-flex;
align-items: center;
gap: .6rem;
padding: .9rem 1.1rem;
border-radius: 999px;
border: 1px solid rgba(0,0,0,.15);
background: var(--btn-bg);
color: var(--btn-fg);
font: 600 14px/1.1 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
cursor: pointer;
box-shadow: 0 10px 25px -10px rgba(0,0,0,.45), 0 2px 6px -2px rgba(0,0,0,.25);
transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.pdf-fab:hover { background: var(--btn-bg-hover); transform: translateY(-1px); }
.pdf-fab:active { transform: translateY(0); }
.pdf-fab svg { width: 18px; height: 18px; }
.pdf-fab[disabled] { opacity: .6; cursor: wait; }


/* Optional: mark elements to skip in PDF */
[data-html2pdf-ignore] { display: none !important; }


/* Help the page-breaker a bit */
.pdf-avoid-break, figure, article, .card, .item, .grid-item { page-break-inside: avoid; break-inside: avoid; }


/* Hidden working area for clean capture */
#pdf-capture-root { position: fixed; left: -300vw; top: 0; width: 210mm; background: #fff; padding: 0; }


/* Optional header for the PDF */
.pdf-header { padding: 18px 18px 0; border-bottom: 1px solid #eee; margin-bottom: 6px; }
.pdf-header h1 { font: 700 18px/1.3 system-ui, -apple-system, Segoe UI, Roboto, Arial; margin: 0 0 6px; }
.pdf-header small { color: #666; }
/* bis hier container**************************************************************************/
