/* =============================
   Root Variablen
============================= */
:root {
  --primary-color: #ff4d00;
  --accent-color: #64b5f6;
  --text-color: #222;
  --bg-color: #f9f9f9;
  --box-bg: #ffffff;
  --shadow: rgba(0, 0, 0, 0.05);
}

/* =============================
   Allgemeines Reset & Layout
============================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

header {
  background: white;
  padding: 2rem 1rem;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

header img {
  max-width: 300px;
  height: auto;
}

h1 {
	color:#ff4d00;
}

h3 {
  margin: 0 0 0.5em 0;
  font-size: 1.2rem;
  color: #043059;
}

h3 + p {
  margin-top: 0;
}

p {
  margin-top: 0.2em;
  margin-bottom: 1em;
}

main {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

a {
	
	color:#ff4d00;
	text-decoration:none;
	
}

a:hover {
	color:#043059;
	text-decoration:underline;

}

/* =============================
   Sektionen & Karten
============================= */
.intro,
.section {
  margin-bottom: 3rem;
}

.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: var(--box-bg);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-icon {
  font-size: 2rem;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.card h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  color: #043059;
}

.card-content {
  flex: 1;
}

.fa-solid, .fas {
  color: #ff4d00;
}

/* =============================
   Sender-Logos
============================= */
.sender-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.sender {
  background: var(--bg-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
  width: calc(25% - 20px);
}

.sender img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

@media (max-width: 992px), (max-width: 882px) {
  .sender {
    width: calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .sender {
    width: 100%;
  }
}

/* =============================
   Partner-Logos (Grid mit Hover)
============================= */
.partner-container {
  display: grid;
  grid-template-columns: repeat(3, 280px);
  justify-content: center;
  gap: 30px;
  padding: 20px;
  background: var(--bg-color);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 0 auto;
}

.partner-item {
  text-align: center;
}

.partner-item img {
  width: 100%;
  height: auto;
  max-height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-item:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  cursor: pointer;
}

@media (max-width: 900px) {
  .partner-container {
    grid-template-columns: repeat(2, 250px);
  }
}

@media (max-width: 600px) {
  .partner-container {
    grid-template-columns: repeat(1, 250px);
  }
}

/* =============================
   Player & Footer
============================= */
.player-section {
  text-align: center;
  padding: 2rem;
  background: var(--box-bg);
  border-radius: 10px;
  box-shadow: 0 4px 8px var(--shadow);
}

.player-section a {
  color: #043059;
  text-decoration: none;
  font-weight: bold;
}

.player-section a:hover {
  text-decoration: underline;
  color:#ff4d00;
}

img.player-preview {
  max-width: 100%;
  margin-top: 1rem;
  border-radius: 8px;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 1rem;
  background: #eaeaea;
}

footer a {
  color: var(--text-color);
  margin: 0 0.5rem;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
