@charset "utf-8";
/* CSS Document */

p {
    margin-bottom: 10px !important;
}

.normal {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #232323;
}
.pokal {
   font-family: "Manrope", sans-serif;
   font-size: 18px;
   font-weight: 600;
   color: #232323;
}

.link {
  font-family: "Manrope", sans-serif;    
  color: #B78057;
  font-size: 18px;
  font-weight: 400;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  }

.link:hover {
  color: #8e5d3a; 
  text-decoration: underline;
}

.link_aktiv {
  font-family: "Manrope", sans-serif;    
  color: #7C7C7C;
  font-size: 18px;
  font-weight: 400;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: underline;
}

.ueberschrift {
  font-family: "Rufina", serif;
  color: #B78057;
  font-size: 26px;
  font-weight: 600;
  line-height: 48px;   
}

.ueberschrift2 {
   font-family: "Rufina", serif;
   color: #B78057;
   font-size: 22px;
   font-weight: 600;   
}    

/* =====================================================
   SPONSOREN – Korrigierte Version (Bootstrap-kompatibel)
===================================================== */

/* Grundlayout */
.sponsor-section {
  padding: 3rem 0;
  margin-bottom: 0;
}

.sponsor-section img {
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* Abschnittshintergründe */
.premium-sponsor { background-color: #fff; }
.main-sponsors   { background-color: #fafafa; }
.sponsors        { background-color: #ffffff; }
.supporters      { background-color: #f5f5f5; }

/* Titel */
.ueberschrift2 {
  text-align: center;
  color: #B78057;
  font-weight: 600;
  margin-bottom: 1.8rem;
}

/* Sponsorenkarten – flex-zentriert */
.sponsor-card {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  max-width: 350px;
}

.sponsor-card img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  height: auto;
  width: auto;
}

/* Premium */
.premium-sponsor .sponsor-card {
  height: 180px;
  border: 3px solid #B78057;
  background-color: #fff;
}

/* Hauptsponsoren – 2 Spalten */
.main-sponsors .col {
  flex: 0 0 50%;
  max-width: 50%;
}
.main-sponsors .sponsor-card {
  height: 160px;
  background-color: #ffffff;
  border: 1px solid #ddd;
}

/* Sponsoren – 3 Spalten */
.sponsors .col {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}
.sponsors .sponsor-card {
  height: 140px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
}

/* Unterstützer – 4 Spalten */
.supporters .col {
  flex: 0 0 25%;
  max-width: 25%;
}
.supporters .sponsor-card {
  height: 110px;
  background-color: #fff;
  border: 1px dashed #ccc;
}

/* Abstände */
.sponsor-section .row {
  row-gap: 1.5rem;
  justify-content: center;
}

.sponsor-section + .sponsor-section {
  border-top: 1px solid #e4e4e4;
}

/* Hover-Effekt */
.sponsor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

/* ==============================================
   Hauptsponsoren – Gold-Akzentrahmen
============================================== */

.main-sponsors .sponsor-card {
  position: relative;
  height: 200px;                 /* leicht größer */
  padding: 1.5rem;
  background-color: #fff;
  border: 2px solid #B78057;     /* goldener Rahmen */
  border-radius: 10px;
  transition: all 0.3s ease;
}

.main-sponsors .sponsor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #B78057 0%, #e8d2b5 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.main-sponsors .sponsor-card:hover::before {
  opacity: 0.15;                 /* sanfter Glanz beim Hover */
}

.main-sponsors .sponsor-card img {
  position: relative;
  z-index: 1;
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.main-sponsors .sponsor-card:hover img {
  transform: scale(1.05);
}

/* Tablet & Mobile */
@media (max-width: 992px) {
  .main-sponsors .sponsor-card {
    height: 180px;
    padding: 1rem;
  }
}

@media (max-width: 767px) {
  .main-sponsors .sponsor-card {
    height: auto;
    padding: 0.8rem;
  }
  .main-sponsors .sponsor-card img {
    max-width: 85%;
  }
}


/* Responsive Anpassung */
@media (max-width: 992px) {
  .main-sponsors .col { flex: 0 0 50%; max-width: 50%; }
  .sponsors .col { flex: 0 0 50%; max-width: 50%; }
  .supporters .col { flex: 0 0 33.3333%; max-width: 33.3333%; }
}

@media (max-width: 767px) {
  .main-sponsors .col,
  .sponsors .col,
  .supporters .col {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .sponsor-card {
    height: auto;
    padding: 0.5rem;
  }
  .sponsor-card img {
    max-width: 80%;
    max-height: 80%;
  }
}
