/* =========================
   FONTS (Adobe)
   =========================
   Hinweis: Die exakten font-family Namen kommen aus deinem Adobe Kit.
   Mit dem Kit xef3jze sind diese Namen sehr wahrscheinlich korrekt:
   - "itc-avant-garde-gothic-pro"
   - "arboria"
*/
:root{
  --bg-dark: #4d3a57;     /* dunkler lila Block */
  --bg-mid:  #3b3772;     /* mittlerer lila Block */
  --text:    #f3f3f3;
  --soft:    rgba(255,255,255,0.78);
  --cta:     #e7d4a3;     /* beige Button */
}

body{
  font-family: "arboria", sans-serif;
  font-weight: 400;
  background: #111;
  color: var(--text);
}

h1,h2,h3,h4,h5,h6,
.navbar-brand{
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 500; /* Medium Look */
}

/* Links */
a{ color: var(--cta); }
a:hover{ opacity: .9; }

/* =========================
   HERO
   ========================= */
.hero{
  position: relative;
  min-height: 60vh;
  background-image: url("../img/hero-bg.jpg"); /* <- HIER dein Bildpfad */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(15,10,30,0.25), rgba(15,10,30,0.45));
}

.hero-content{
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 0 40px;
}

.navbar .nav-link{
  color: rgba(255,255,255,0.85);
}
.navbar .nav-link:hover{
  color: #fff;
}

.btn-cta{
  background: var(--cta);
  border: none;
  color: #2a2430;
  border-radius: 12px;
  font-weight: 600;
}

.hero-bottom{
  position: relative;
}

.section-title{
  font-size: 1.6rem;
  margin-bottom: .75rem;
}

.text-soft{
  color: var(--soft);
  line-height: 1.6;
}

.stacked-links{
  display: grid;
  gap: 14px;
}

.stack-item{
  border-left: 2px solid rgba(255,255,255,0.35);
  padding-left: 14px;
}

.stack-title{
  font-size: 1.15rem;
  margin-bottom: .4rem;
}

.hero-photo{
  max-width: 360px;
  border: 2px solid rgba(255,255,255,0.1);
}

/* =========================
   SECTION DARK (Arrangements)
   ========================= */
.section-dark{
  background: var(--bg-dark);
}

.table-darkish{
  --bs-table-bg: transparent;
  --bs-table-color: rgba(255,255,255,0.88);
}
.table-darkish thead th{
  font-size: .9rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.table-darkish tbody td{
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: .95rem;
}

.listen-link{
  text-decoration: none;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
}

.example-video{
  border: 2px solid rgba(255,255,255,0.08);
}

.preview-img{
  border: 2px solid rgba(255,255,255,0.08);
}

/* =========================
   SECTION MID (Choir)
   ========================= */
.section-mid{
  background: var(--bg-mid);
}

.poster-img{
  border: 2px solid rgba(255,255,255,0.08);
}

/* =========================
   FOOTER
   ========================= */
.footer{
  position: relative;
  background-image: url("../img/footer-bg.jpg"); /* <- optional eigenes Footerbild */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-overlay{
  position:absolute;
  inset:0;
  background: rgba(10,10,20,0.72);
}

/* Musik anhören */
.listen-btn{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  border-radius: 10px;
  padding: 6px 10px;
  line-height: 1;
  cursor: pointer;
}
.listen-btn:hover{
  background: rgba(255,255,255,0.14);
}


/* =========================
   COOKIE BANNER
   ========================= */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 30, 30, 0.96);
  color: #ffffff;
  z-index: 99999;
  padding: 18px 20px;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 25px;
  justify-content: space-between;
  align-items: center;
}

.cookie-text {
  max-width: 760px;
}

.cookie-text p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons,
.cookie-modal-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  border: 0;
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.cookie-primary {
  background: #b52a35;
  color: #ffffff;
}

.cookie-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.cookie-light {
  background: #eeeeee;
  color: #222222;
}

.cookie-btn:hover {
  opacity: 0.85;
}

/* Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 100000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.cookie-modal-box {
  background: #ffffff;
  color: #333333;
  max-width: 600px;
  width: 100%;
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.cookie-modal-box h3 {
  margin-top: 0;
}

.cookie-option {
  border-top: 1px solid #dddddd;
  padding: 16px 0;
}

.cookie-option p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #555555;
}

.cookie-option input {
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons,
  .cookie-modal-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

/* =========================
   YT PlATZHALTER
   ========================= */

.video-consent-placeholder {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 30px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.video-consent-placeholder p {
  max-width: 420px;
  margin-bottom: 15px;
}



/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 767px){
  .hero-content{
    padding: 50px 0 25px;
  }
  .hero-photo{
    max-width: 280px;
  }
  .section-title{
    font-size: 1.35rem;
  }
}