/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&family=Krona+One&display=swap');

/* Reset */
* {
  box-sizing: border-box;
  margin: 0; padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #1a1a3d;
}

/* ===== HEADER ===== */
.ff-header {
  position: relative;
  height: 200px;
}
.ff-top-image {
  background: url('Bilder/Adele_Bild1..jpg') center/cover no-repeat;
  width: 100%;
  height: 100%;
}
.ff-title {
  position: absolute;
  bottom: 15px;
  left: 20px;
  font-family: 'Krona One', sans-serif;
  font-size: 4rem;
  color: #1a1a3d; /* Dunkelblau */
}

/* ===== MAIN ===== */
.ff-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px;
}

/* die schlanken bars */
.ff-bar {
  background: #ddd;
  border-radius: 50px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-family: 'Indie Flower', cursive;
  font-size: 1.5rem;
  color: #1a1a3d;
  width: 80%;
  margin: 0 auto;
}

/* die großen info-boxen */
.ff-box {
  background: #ccc;
  border-radius: 20px;
  padding: 20px;
  width: 80%;
  margin: 0 auto;
  min-height: 160px;
  display: flex;
  align-items: center;
}

.ff-info {
  font-family: 'Indie Flower', cursive;
  font-size: 1rem;
  color: #1a1a3d;
}