/* =========================
   BASE / RESET FEEL
========================= */
body {
  background: #fafafa;
  overflow-x: hidden;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #2f2f2f;
  line-height: 1.6;
}

/* Content Layer über Background */
nav,
section,
footer,
.container {
  position: relative;
  z-index: 2;
}

/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3 {
  letter-spacing: -0.03em;
  color: #222;
}

.text-muted {
  color: #7a7a7a !important;
}

/* =========================
   HERO (CLEAN & SOFT)
========================= */
.hero-light {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fdf6f9 100%);
}

/* =========================
   BUTTON (SOFT PASTEL CTA)
========================= */
.btn-soft {
  background: linear-gradient(135deg, #f7cfe0, #e8d7ff);
  color: #2b2b2b;
  border-radius: 999px;
  padding: 10px 22px;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.btn-soft:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

/* =========================
   NAVBAR (CLEAN GLASS FEEL)
========================= */
.navbar {
  z-index: 10;
  backdrop-filter: blur(8px);
}

/* =========================
   IMAGE (EDITORIAL STYLE)
========================= */
.artist-image {
  width: 50%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.10);
  transition: all 0.35s ease;
}

.artist-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* =========================
   SOCIAL GRID (MODERN CARD FEEL)
========================= */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px;
  max-width: 750px;
  margin: 0 auto;
}

.social-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 10px;
  text-decoration: none;
  color: #2f2f2f;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: all 0.25s ease;
}

.social-item:hover {
  transform: translateY(-5px);
  background: #fdf3f7;
}

.social-item span {
  font-size: 26px;
  display: block;
  margin-bottom: 6px;
}

.social-item p {
  margin: 0;
  font-size: 13px;
  color: #555;
}

/* =========================
   BUBBLES (REFINED PASTEL DEPTH)
========================= */
.bubbles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  pointer-events: none;
  overflow: hidden;
}

/* Base Bubble */
.bubble {
  position: absolute;
  bottom: -140px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  animation: rise 22s infinite ease-in;
  opacity: 0.8;
  filter: blur(0.3px);
}

/* PASTEL VARIANTS */
.bubble:nth-child(1) {
  left: 8%;
  width: 80px;
  height: 80px;
  background: rgba(255, 170, 200, 0.85);
}

.bubble:nth-child(2) {
  left: 20%;
  background: rgba(186, 163, 255, 0.82);
}

.bubble:nth-child(3) {
  left: 38%;
  width: 95px;
  height: 95px;
  background: rgba(150, 240, 210, 0.82);
}

.bubble:nth-child(4) {
  left: 55%;
  background: rgba(255, 200, 150, 0.84);
}

.bubble:nth-child(5) {
  left: 72%;
  width: 60px;
  height: 60px;
  background: rgba(160, 210, 255, 0.82);
}

.bubble:nth-child(6) {
  left: 88%;
  background: rgba(255, 190, 210, 0.88);
}

/* ANIMATION */
@keyframes rise {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(-110vh);
    opacity: 0;
  }
}

/* =========================
   SECTION SPACING (IMPORTANT)
========================= */
section {
  padding-top: 70px;
  padding-bottom: 70px;
}

/* =========================
   BLOCKQUOTE STYLE (ARTISTIC)
========================= */
blockquote {
  font-style: italic;
  border-left: 3px solid #f3b6d1;
  padding-left: 14px;
  color: #666;
}

/* =========================
   FOOTER ICONS
========================= */
.footer-social {
  margin-top: 10px;
}

.social-icon {
  font-size: 18px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  color: #444; /* einfarbig */
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-3px);
  background: #fdf3f7;
  color: #000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}


.info-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: all 0.25s ease;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.nav-link.active {
  position: relative;
  font-weight: 600;
  color: #222 !important;
}

/* DESKTOP underline */
@media (min-width: 992px) {
  .nav-link.active::after {
    content: "";
    position: absolute;
    left: 10%;
    bottom: -2px;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #f7cfe0, #e8d7ff);
    border-radius: 2px;
  }
}

/* MOBILE FIX */
@media (max-width: 991px) {
  .nav-link.active::after {
    content: "";
    display: block;
    position: relative;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #f7cfe0, #e8d7ff);
    border-radius: 2px;
  }

  .navbar-nav .nav-link {
@media (max-width: 991px) {
  .navbar-nav {
    padding-top: 10px;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
  }
}
    padding: 10px 0;
  }
}



.logo-script {
  font-family: "Great Vibes", cursive;
  font-size: 28px;
  letter-spacing: 1px;
  color: #222;
  text-decoration: none;
}

.logo-script:hover {
  color: #000;
}

.hero-cinematic {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background-image: url('../img/hero-about.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.35),
    rgba(255,255,255,0.05)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-cinematic h1,
.hero-cinematic p {
  text-shadow: 0 10px 30px rgba(0,0,0,0.4);
}