/* Header Farbe  */


/*.mybanner {
  min-width: 100%;
}
*/



/* Farbverlauf Header */

.header{
background:linear-gradient(
90deg,
#4f1d27 0%,
#682734 45%,
#7a2d3b 100%
);
    border-bottom: 4px solid #c9a44d;
    color: #F5F4F1; /* Text */
}

/* Farbverlauf Footer */

.footer {
    background: linear-gradient(
        90deg,
        #3a1d23 0%,
        #4a232c 100%
    );
    border-top: 8px solid #c9a44d;
      color: #F5F4F1; /* Text */
}


/* Header Banner

.container-header {
  min-width: 100%;
  background-color: #ff0000;
  background-image: url('/images/header_background.jpg') 
 }

*/



/* Farben */
  
  :root {
    --cassiopeia-color-primary: #0f75d7; /* Farbe der Menüpunkte */
    --cassiopeia-color-link: #224faa; /* Standard-Linkfarbe im Menü */
    --cassiopeia-color-hover: #104E8B; /* Mouse Hover */
} 


/* h1 größe */

.h1, h1 {
font-size: 2.2rem; font-weight: 550;
}    
  
/* h2 größe */

.h2, h2 {
font-size: 1.4rem; font-weight: 600; color: #7a2d3b;
}

/* h3 größe */

.h3, h3 {
  font-size: 3rem;
  font-weight: 500;
}




    
/* Website Links nicht unterstrichen */
    
a:link, a:visited {
 text-decoration: none;
}


/* Website Brand-Logo Größe */
    
.container-header .navbar-brand img {
    max-height: 80px;
    width: auto;
    margin-top: 10px;
}



/* Dunkler Parallax entfernen 
.container-banner .banner-overlay {
    opacity: 1 !important;
}
*/

/* Dunkler Parallax entfernen 2 */
.container-banner .banner-overlay .overlay {
  background-color: unset;
 }



/*    
.container-banner .banner-overlay .overlay {
    background: rgba(0,0,0,0.0) !important;
}
*/
    
/* Größe für Menü Icon */
.mainmenu-icon img {
  width: auto;
  height: 50px;
}


/* Maximale Textbreite */
.item-page {
    max-width: 900px;
    margin: 0 auto;
}


/* Text und Bild nebeneinander */

/* Bild im Text und reverse */

.image-text {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
}

.image-text > img,
.image-text > a {
    width: 50%;
    display: block;
}

.image-text > a img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.image-text > img {
    border-radius: 10px;
}

.image-text .text {
    width: 50%;
}

/*  Bild rechts / Text links */
.image-text.reverse {
    flex-direction: row-reverse;
}

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

    .image-text,
    .image-text.reverse {
        flex-direction: column;
    }

    .image-text .text {
        order: 1;
    }

    .image-text img {
        order: 2;
    }

.image-text > a,
.image-text > img,
.image-text .text {
    width: 100%;
}

}


/* Bild im Text flexible Breite */

.image-text-flex {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
}

.image-text-flex img {
    flex: 0 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.image-text-flex .text {
    flex: 1 1 auto;
}


@media (max-width: 768px) {
    .image-text-flex,
    .image-text-flex.reverse {
        flex-direction: column;
    }

    .image-text-flex img,
    .image-text-flex .text {
        width: 100% !important;
    }
}



/* Bild (15%) + Text Layout */
.image-15-text {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}

.image-15-text img {
    flex: 0 0 15%;
    max-width: 15%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.image-15-text .text {
    flex: 1;
}

/* Optional: Bild rechts / Text links */
.image-15-text.reverse {
    flex-direction: row-reverse;
}

/* Mobile */
@media (max-width: 768px) {
    .image-15-text {
        align-items: flex-start;
        gap: 15px;
    }

    .image-15-text img {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .image-15-text .text {
        flex: 1;
    }
}





/* 3 Bilder im Grid */
    .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card h3 {
    margin-top: 10px;
}

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


/* Flexible Spalten */

.columns {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.columns .column {
    flex: 1;
}

.columns .column img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Mobile */

@media (max-width: 768px) {
    .columns {
        flex-direction: column;
    }
}



/* Hero */

.hero {
    background: url('/images/hero.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.btn {
    padding: 10px 20px;
    background: #7a2d3b;
    color: white;
    margin: 5px;
    display: inline-block;
}




/* Flyer Box */

.flyer-box {
    max-width: 400px;
    margin: 60px auto;
    text-align: center;
}

.flyer-box img {
    display: block;
    width: 100%;
    height: auto;

    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
    transition: transform .25s ease,
                box-shadow .25s ease;
}

.flyer-box img:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,.45);
}




/* Parallax HERO BANNER FIX MOBILE */

@media (max-width: 768px) {

  #mod-custom114 {
    background-image: url("/images/Vereinsfoto/blasorchester_daubach.jpg") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;

    min-height: 250px !important;
    display: block !important;
  }

  #mod-custom114 .overlay {
    position: relative !important;
    min-height: 250px !important;
    height: auto !important;
    display: block !important;
  }

}


@media (max-width: 768px) {

  #mod-custom114 {
    all: unset;
    display: block;
    position: relative;

    background-image: url("/images/Vereinsfoto/blasorchester_daubach.jpg") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

    min-height: 250px !important;
  }

  #mod-custom114 .overlay {
    position: relative !important;
    z-index: 2;
  }

}



/* Parallax Hero Text auto Breite und Farbe fix */

.hero-title,
.hero-subtitle {
  text-align: center;
  color: #e2e3e5;
  font-family: Helvetica, Arial, sans-serif;
}

.hero-title {
  font-size: clamp(1.4rem, 6vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1rem, 4vw, 1.4rem);
  font-weight: 500;
  line-height: 1.2;
}


/*Parallax Hero Text Zentrieren in Mobile*/

@media (max-width: 768px) {

  #mod-custom114 .overlay {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex !important;
    flex-direction: column;
    justify-content: center !important;  /* vertikal */
    align-items: center !important;      /* horizontal */

    text-align: center;
  }

}



/* Flexible YouTube Video Grid */

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}


.youtube-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
}


.youtube-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}