/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  --bg-color: #050505;
  --bg-card: #0c0c0c;
  --bg-card-hover: #121212;
  --text-color: #ffffff;
  --text-muted: #8e8e93;
  --accent-color: #ffffff; /* Premium white/silver accent */
  --accent-muted: rgba(255, 255, 255, 0.4);
  --border-color: #1a1a1a;
  --border-hover: #333333;
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-color);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  background: none;
  border: none;
  font-family: inherit;
  color: inherit;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}


/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .nav-container {
    height: 70px;
    padding: 0 20px;
  }
}

.logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--text-color);
  transition: var(--transition-fast);
}

.logo:hover {
  opacity: 0.8;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-color);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ==========================================================================
   LANGUAGE SELECTOR
   ========================================================================== */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 6px 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.02);
  transition: var(--transition-fast);
}

.lang-btn:hover {
  border-color: var(--border-hover);
  background-color: rgba(255, 255, 255, 0.05);
}

.select-arrow {
  font-size: 9px;
  transition: transform 0.3s ease;
}

.lang-selector.open .select-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background-color: #0c0c0c;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  list-style: none;
  width: 80px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-fast);
  z-index: 101;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown li {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-fast);
}

.lang-dropdown li:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
}

/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  transition: var(--transition-fast);
}

@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #050505;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid var(--border-color);
}

.mobile-menu.open {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.mobile-nav-link:hover {
  color: var(--text-color);
}

/* Menu open animation for hamburger */
.mobile-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 90px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.4) 0%,
    rgba(5, 5, 5, 0.85) 70%,
    rgba(5, 5, 5, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: calc(4vw + 32px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: calc(0.8vw + 14px);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-color);
  margin-bottom: 12px;
  opacity: 0.9;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .hero-subtitle {
    font-size: 10px;
    letter-spacing: 0;
  }
}

.hero-info {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

.hero-cta-wrapper {
  margin-top: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-outline {
  border: 1px solid var(--text-color);
  color: var(--text-color);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--text-color);
  color: var(--bg-color);
}

.btn-primary {
  background-color: var(--text-color);
  color: var(--bg-color);
  border: 1px solid var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--text-color);
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: white;
  animation: scrollAnim 2s infinite ease-in-out;
}

@keyframes scrollAnim {
  0% { transform: translateY(-100%); }
  80% { transform: translateY(200%); }
  100% { transform: translateY(200%); }
}

/* ==========================================================================
   SECTION COMMONS
   ========================================================================== */
section {
  padding: 140px 0;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
}

.section-title-minimal {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative;
}

.section-title-minimal.center {
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .section-title-minimal {
    font-size: 30px;
    margin-bottom: 24px;
  }
  .section-title-minimal.center {
    margin-bottom: 40px;
  }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-top-content {
  max-width: 950px;
}

.about-wrapper {
  display: flow-root;
}

.about-image {
  float: left;
  width: 290px;
  height: auto;
  border-radius: 12px;
  margin-right: 40px;
  margin-bottom: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.about-image:hover {
  transform: scale(1.02);
  border-color: var(--accent);
}

.about-bio {
  display: block;
}

.bio-paragraph {
  font-size: 17.5px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 12px;
  text-wrap: pretty;
  text-align: left;
}

.bio-paragraph:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-image {
    float: none;
    display: block;
    margin: 0 auto 20px auto;
    max-width: 280px;
    width: 100%;
  }
}


.about-bottom-content {
  margin-top: 60px;
}





.side-heading {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.service-card:hover {
  background-color: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: translateX(100%);
}

.service-num {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-muted);
  margin-bottom: 20px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   RELEASES / COVERS
   ========================================================================== */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.release-item-card {
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.release-cover-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.release-cover-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.release-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.release-item-card:hover .release-cover-wrapper {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.release-item-card:hover .release-cover-wrapper img {
  transform: scale(1.08);
}

.release-item-card:hover .release-hover-overlay {
  opacity: 1;
}

.play-btn-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--text-color);
  color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-btn-circle i {
  margin-left: 3px; /* Align play icon center */
}

.release-hover-overlay:hover .play-btn-circle {
  transform: scale(1.1);
  background-color: var(--text-color);
}

.release-info {
  margin-top: 16px;
}

.release-track-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 4px;
}

.release-artist-name {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .releases-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .releases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .releases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   TECH STACK & TOOLS
   ========================================================================== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 900px) {
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.tech-column {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px;
  transition: var(--transition-smooth);
}

.tech-column:hover {
  border-color: var(--border-hover);
  background-color: var(--bg-card-hover);
}

.tech-col-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  color: var(--text-color);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.tech-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tech-list li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-fast);
}

.tech-list li i {
  color: var(--text-color);
  font-size: 14px;
  width: 18px;
  text-align: center;
  opacity: 0.6;
}

.tech-list li:hover {
  color: var(--text-color);
  transform: translateX(4px);
}

.tech-list li:hover i {
  opacity: 1;
}

/* ==========================================================================
   DISCOGRAPHY / CREDITS
   ========================================================================== */
.credits-section {
  position: relative;
  background-image: linear-gradient(180deg, rgba(5, 5, 5, 0.85) 0%, rgba(5, 5, 5, 0.92) 100%), url('123.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.tab-btn {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 24px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  border-color: var(--border-hover);
  background-color: rgba(255, 255, 255, 0.02);
}

.tab-btn.active {
  background-color: var(--text-color);
  color: var(--bg-color);
  border-color: var(--text-color);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* Tab 1: Spotify Widget */
.playlist-grid {
  display: flex;
  justify-content: center;
}

.iframe-container {
  width: 100%;
  max-width: 800px;
  height: 500px;
  border-radius: 12px;
  background-color: #0c0c0c;
  border: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
}

.spotify-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: #080808;
  z-index: 1;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.05);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  z-index: 2;
  position: relative;
}

/* Tab 2: Credits Table */
.filters-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--border-hover);
  background-color: rgba(255, 255, 255, 0.02);
}

.filter-btn.active {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--text-color);
  color: var(--text-color);
}

.table-container {
  overflow-x: auto;
}

.credits-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.credits-table th {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 16px 20px;
  border-bottom: 2px solid var(--border-color);
}

.credits-table td {
  padding: 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.credits-table tr:hover td {
  background-color: rgba(255, 255, 255, 0.015);
  color: var(--text-color);
}

.role-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 3px 8px;
  border-radius: 4px;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  margin-right: 4px;
  margin-bottom: 4px;
}

.listen-link {
  font-size: 12px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--text-muted);
}

.listen-link:hover {
  border-bottom-color: var(--text-color);
}

.mobile-credits-list {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.mobile-credit-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-credit-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.mobile-credit-year {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

.mobile-credit-project {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}

.mobile-credit-title {
  font-size: 14px;
  color: var(--text-muted);
}

.mobile-credit-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

@media (max-width: 768px) {
  .table-container {
    display: none;
  }
  .mobile-credits-list {
    display: flex;
  }
}

/* ==========================================================================
   TIMELINE EXPERIENCE
   ========================================================================== */
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 20px;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--border-color) 15%,
    var(--border-color) 85%,
    transparent 100%
  );
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 60px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 16px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--bg-color);
  border: 2px solid var(--text-color);
  z-index: 5;
  transition: var(--transition-fast);
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.5);
  background-color: var(--text-color);
}

.timeline-date {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.timeline-content {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
  border-color: var(--border-hover);
  background-color: var(--bg-card-hover);
}

.timeline-role {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.timeline-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  position: relative;
  background-image: linear-gradient(180deg, rgba(5, 5, 5, 0.85) 0%, rgba(5, 5, 5, 0.92) 100%), url('photo_2026-07-01_18-56-20.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.contact-subtitle-text {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.method-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.method-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.method-item:hover .method-icon {
  color: var(--text-color);
  border-color: var(--border-hover);
  background-color: rgba(255,255,255,0.02);
}

.method-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.method-value {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  word-wrap: break-word;
  word-break: break-all;
}

.social-links-row {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}

.social-links-row a {
  font-size: 20px;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.social-links-row a:hover {
  color: var(--text-color);
  transform: translateY(-2px);
}



/* Contact Form UI */
.contact-form {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (max-width: 600px) {
  .contact-form {
    padding: 24px;
  }
}

.form-group {
  position: relative;
  width: 100%;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
  background: transparent;
  transition: border-bottom-color 0.3s ease;
}

.form-group label {
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 14px;
  color: var(--text-muted);
  pointer-events: none;
  transition: transform 0.3s ease, font-size 0.3s ease, color 0.3s ease;
}

/* Label animations on focus & input filled */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-20px);
  font-size: 11px;
  color: var(--text-color);
}

.form-group input:focus, .form-group textarea:focus {
  border-bottom-color: var(--text-color);
}

/* Select Dropdown styling */
.custom-select-wrapper {
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.custom-select-wrapper select {
  width: 100%;
  padding: 12px 0;
  font-size: 14px;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  color: var(--text-muted);
}

.custom-select-wrapper select:focus {
  color: var(--text-color);
}

.custom-select-wrapper::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 11px;
  position: absolute;
  right: 0;
  top: 16px;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.custom-select-wrapper select:focus + .select-highlight {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--text-color);
}

/* Form Status Messages */
.form-status {
  padding: 16px;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.form-status i {
  font-size: 18px;
  margin-top: 2px;
}

.success-message {
  background-color: rgba(46, 204, 113, 0.05);
  border: 1px solid rgb(46, 204, 113, 0.3);
  color: #2ecc71;
}

.error-message {
  background-color: rgba(231, 76, 60, 0.05);
  border: 1px solid rgb(231, 76, 60, 0.3);
  color: #e74c3c;
}

.hidden {
  display: none !important;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.1);
  border-top-color: inherit;
  border-radius: 50%;
  animation: spin 0.8s infinite linear;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-bottom {
  padding: 50px 0;
  border-top: 1px solid var(--border-color);
  font-size: 12px;
  color: var(--text-muted);
  background-color: #050505;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.impressum-link,
.privacy-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 1px solid transparent;
  transition: var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.impressum-link:hover,
.privacy-link:hover {
  color: var(--text-color);
  border-bottom-color: var(--text-color);
}

.footer-separator {
  color: var(--text-muted);
  opacity: 0.4;
  font-size: 10px;
  user-select: none;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }
  .footer-links-wrapper {
    justify-content: center;
    max-width: 100%;
  }
}

/* ==========================================================================
   GLOBAL AUDIO PLAYER (SPOTIFY EMBED COMPACT)
   ========================================================================== */
.global-audio-player {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: calc(100% - 40px);
  max-width: 500px;
  height: 80px;
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  z-index: 9999;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.global-audio-player.active {
  transform: translateX(-50%) translateY(0);
}

.global-audio-player .player-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding-right: 16px;
}

.global-audio-player .player-embed-wrapper {
  flex-grow: 1;
  height: 80px;
}

.global-audio-player .player-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.global-audio-player .close-player-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 10px;
  margin-left: 10px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-audio-player .close-player-btn:hover {
  color: var(--text-color);
  transform: scale(1.1);
}

@media (max-width: 576px) {
  .global-audio-player {
    bottom: 10px;
    width: calc(100% - 20px);
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 16px;
  }
  .nav-container {
    padding: 0 15px;
  }
  .nav-right {
    gap: 12px;
  }
}

/* ==========================================================================
   MODAL & IMPRESSUM POPUP
   ========================================================================== */
body.no-scroll {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  color: var(--text-color);
  transform: scale(1.1);
}

.modal-body h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text-color);
}

.modal-body p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.modal-body p strong {
  color: var(--text-color);
  font-weight: 600;
}

.modal-body a {
  color: var(--text-color);
  text-decoration: underline;
  transition: var(--transition-fast);
}

.modal-body a:hover {
  opacity: 0.8;
}
