/* =========================
   GLOBAL STYLES
========================= */
:root {
  --space-s: 8px;
  --space-m: 16px;
  --space-l: 32px;
  --space-xl: 64px;
  --space-xxl: 128px;

  --bg-dark: #000000;
  --bg-gold: rgb(221, 173, 77);
  --primary: rgb(0, 255, 255);
  --primary-hover: rgb(255, 0, 150);

  --text-dim: #94a3b8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: linear-gradient(75deg, #353f4d, #020617);
  color: var(--text-white);
  overflow-x: hidden;
}

/* =========================
   TYPOS
========================= */
h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-m);
}

h2 {
    font-size: 1.8rem;
    margin-bottom: var(--space-s);
    color: var(--bg-gold);
}

h3 {
    font-size: 4rem;
    margin-bottom: var(--space-s);
    color:var(--primary);
    font-family: "Bad Script", cursive;
}
p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-dim);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}
/* =========================
   LAYOUT HELPERS
========================= */
.container {
    width: 100%;
    padding: var(--space-l) 0;
}

/* =========================
   HEADER STYLES
========================= */
.header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.Logo {
  height: 200px;
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(-50%, -50%);
  z-index: 5;
  border-radius: 16px;
  border: 4px groove var(--bg-gold);
}

.title span {
  display: inline-block;
}
/* =========================
   NAV
========================= */

.nav {
  position: sticky;
  top: 20px;
  margin: var(--space-l) auto;
  width: fit-content;

  display: flex;
  gap: var(--space-m);

  padding: 12px 26px;
  background: rgba(15,23,42,0.8);
  border-radius: 50px;

  z-index: 1000;
}

.tab-button {
  text-decoration: none;
  position: relative;
  cursor: pointer;
}

.tab-button::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.3s;
}

.tab-button:hover {
  color: var(--primary);
}

.tab-button:hover::after {
  width: 100%;
}

/* =========================
   CONTENT SECTIONS
========================= */
.center-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-l);
}

.portrait-container {
    width: 400px;
    min-width: 400px;
    max-width: 400px;
    height: 800px;
    overflow: hidden;
    border-radius: 200px;
    margin: 20px;
    flex-shrink: 0; /* verhindert Verkleinerung */
}

.portrait-container img {
    width: 400px;
    min-width: 400px;
    max-width: 400px;
    height: 100%;
    object-fit: cover;
    display: block;
}

.icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-m);
    margin-top: var(--space-m);
    padding: var(--space-s);
}

.icons img {
    width: var(--space-l);
    height: var(--space-l);
    transition: transform 0.3s;
}

.icons img:hover {
    transform: scale(1.2);
}

.studio {
    gap: var(--space-m);
}

.discography {
    min-width: 300px;
}

/* =========================
   Swiper
========================= */
.swiper {
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  flex-direction: row;
}

.swiper-slide {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.swiper-slide > * {
  flex-shrink: 0;
}

.swiper-slide img {
  width: 60%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.swiper-wrapper {
  align-items: center;
}

/* Textbox rechts */
.info-box {
  width: 40%;
  padding: 20px;
  background: rgba(0, 255, 255, 0.12);
  border: 1px solid var(--primary);
  border-radius: 16px;
  display: flex;
  justify-content: center;
}

/* =========================
   MAP
========================= */

.kontakt {
  padding: var(--space-xl);
  text-align: center;
  margin-top: var(--space-xl);
}

.kontakt h2 {
  margin-bottom: var(--space-l);
}

.map {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-l);
}

.kontakt-container {
  display: flex;
  gap: var(--space-l);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.map iframe {
  width: 500px;
  height: 400px;
  border-radius: 15px;
}

.kontakt-info {
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.6;
}

.kontakt-info p {
  margin-bottom: var(--space-s);
}









/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 768px) {
  .swiper-slide {
    flex-direction: column;
    height: auto;
  }

  .swiper-slide img,
  .info-box {
    width: 100%;
  }

  .swiper {
    height: auto;
  }
}