/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&family=Krona+One&display=swap');

* {
  box-sizing: border-box;
  margin: 0; padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #1a1a3d;
}

/* ===== HEADER ===== */
.album-header {
  position: relative;
  height: 200px;
}
.album-top-image {
  background: url('Bilder/Adele_Bild1..jpg') center/cover no-repeat;
  width: 100%;
  height: 100%;
}
.album-title {
  position: absolute;
  bottom: 15px;
  left: 20px;
  font-family: 'Krona One', sans-serif;
  font-size: 4rem;
  color: #1a1a3d;
}

/* ===== GRID ===== */
.album-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 40px;
}

/* ===== CARDS ===== */
.album-card {
  border-radius: 20px;
  overflow: hidden;
  background: #bbb;
  height: 300px;
  position: relative;
}

/* kleine Cards: Bild ersetzen, Grauhintergrund entfernen */
.album-card.small {
  width: 60%;
  margin: 0 auto;
  background: none;
}
.album-card.small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* große Cards: volle Breite */
.album-card.large {
  width: 100%;
}

/* Obere Hälfte = Cover + Titel */
.album-cover {
  background: #bbb;
  height: 50%;
  position: relative;
  padding: 20px;
}
.card-title {
  font-family: 'Krona One', sans-serif;
  font-size: 2.5rem;
  color: white;
  margin: 0;
}

/* Untere Hälfte = Details */
.album-details {
  background: #ddd;
  height: 50%;
  display: flex;
  align-items: flex-start;
  padding: 20px;
}
.card-info {
  font-family: 'Indie Flower', cursive;
  font-size: 1rem;
  color: #1a1a3d;
  line-height: 1.4;
}