/* ================================
   Reset & Base
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-size: 16px;           /* Einheitliche Textgröße */
}

body {
  background: #f9d2a5;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================================
   Layout
================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: #0079a9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

header .logo {
  height: 50px;
}

.nav-toggle {
  display: none;
  font-size: 1.2em;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

nav ul li a {
  position: relative;
  padding: 0.5rem;
  font-size: 1rem;
  transition: background 0.3s, color 0.3s;
}

nav ul li a:hover {
  background: rgba(255,255,255,0.2);  /* sanfter Hover-Hintergrund */
  color: #fff;
  border-radius: 4px;
}

/* ================================
   Hero
   (Text & Button am unteren Rand)
================================ */
.hero {
  position: relative;
  height: 100vh;
  background: url('bilder/bild1.jpg') center/cover no-repeat;
}

.hero-content {
  position: absolute;
  bottom: 5%;                   /* Nähe unterer Rand */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.hero-content h1 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.btn {
  display: inline-block;
  background: #0079a9;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  max-width: 200px;
  width: 75vw;
  transition: background 0.3s, transform 0.2s;
}

.btn:hover {
  background: #fff;
  color: #0079a9;
  transform: scale(1.05);
}

/* ================================
   Sections
   (Abstand & Titelstyling)
================================ */
section {
  padding: 3% 5% 1rem;
  margin-top: 0;
}

section h2 {
  color: #0079a9;               /* Sektionstitel blau */
  margin-bottom: 15px;          /* Abstand nach Titel */
  font-size: 1.75rem;
}

/* Alle Inhalte gleich große Schrift */
section p,
.news-item p,
.album-item,
.award-item p,
.social-icons img + img,
nav ul li a {
  font-size: 1rem;
  line-height: 1.5;
}

/* ================================
   Videos
================================ */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.video-grid iframe {
  width: 100%;
  height: 400px;
}

/* ================================
   News
   (Button/text spacing & hover)
================================ */
#news {
  text-align: center;
}

.news-item {
  text-align: center;
  margin-bottom: 2rem;
}

.news-button {
  background: #0079a9;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  display: inline-block;
  transition: background 0.3s, transform 0.2s;
  cursor: default;
}

.news-button:hover {
  background: #005f7a;
  transform: scale(1.05);
}

.news-item p {
  margin: 0.75rem 0 0;          /* Abstand zum Button */
}

/* ================================
   Awards
================================ */
.awards-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.award-item img {
  width: 24px;
  height: 24px;
}

/* ================================
   Biography
   (Abstand Absätze & Bilder zentriert)
================================ */
#biography p {
  margin-bottom: 1.2rem;
  text-align: justify;
}

.image-gallery {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.image-gallery img {
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: 0.2s;
}

.image-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* ================================
   Albums
   (Zentriert & Hover)
================================ */
#albums {
  text-align: center;
}

.album-list {
  display: inline-block;
  text-align: left;
  margin-top: 1rem;
}

.album-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.album-year {
  background: #0079a9;
  padding: 0.3rem 0.8rem;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}

.album-year:hover {
  background: #005f7a;
  transform: scale(1.05);
}

.album-covers {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.album-covers img {
  width: 150px;
  border-radius: 10px;
  transition: 0.2s;
}

.album-covers img:hover {
  transform: scale(1.05);
}

/* ================================
   Socials
================================ */
#socials {
  text-align: center;
}

.social-icons {
  display: inline-flex;
  gap: 1.25rem;
  margin-top: 1rem;
}

.social-icons img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* ================================
   Responsive
================================ */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  nav ul {
    position: absolute;
    top: 60px;
    right: 5%;
    flex-direction: column;
    background: #0079a9;
    border-radius: 8px;
    display: none;
    width: 180px;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li a {
    padding: 0.5rem 1rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}
