/* Base styles */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  background: #2513c3;
  color: #cece0e;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 60px;  /* Dodajemy padding dla fixed header */
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

/* Animacje */
@keyframes gradientBG {
  0% { background-position: 0% 50% }
  50% { background-position: 100% 50% }
  100% { background-position: 0% 50% }
}

@keyframes gradientText {
  0% { background-position: 0% 50% }
  50% { background-position: 100% 50% }
  100% { background-position: 0% 50% }
}

@keyframes glow {
  from { text-shadow: 0 0 20px rgba(124,58,237,0.5); }
  to { text-shadow: 0 0 30px rgba(124,58,237,0.8); }
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

/* Navbar */
.navbar {
  background: rgba(37, 19, 195, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(206, 206, 14, 0.1);
  padding: 0.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 60px;  /* Ustalamy stałą wysokość */
}

.navbar .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  margin: 0;
}

.navbar-collapse {
  justify-content: center;
}

.navbar-nav {
  margin: 0 !important;
}

.nav-link {
  color: #cece0e !important;
  position: relative;
  overflow: hidden;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #cece0e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hero section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

/* Tło zdjęcia */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/hero-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.3;  /* Zmniejszamy nieprzezroczystość zdjęcia */
  z-index: 0;
}

/* Gradient nakładany na zdjęcie */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(37, 19, 195, 0.98), 
    rgba(37, 19, 195, 0.95) 50%,
    rgba(37, 19, 195, 0.9)
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 7rem;
  font-weight: 900;
  color: #cece0e;
  margin-bottom: 1.5rem;
  letter-spacing: -0.05em;
}

.aliases {
  font-size: 1.2rem;
  color: #cece0e;
  margin: -0.5rem 0 3rem;
  font-style: italic;
  letter-spacing: -0.01em;
}

.genre-tags {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 2rem 0;
}

.genre {
  background: rgba(206, 206, 14, 0.1);
  border: 1px solid rgba(206, 206, 14, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #cece0e;
  transition: all 0.3s ease;
}

.genre:hover {
  background: rgba(206, 206, 14, 0.2);
  border-color: rgba(206, 206, 14, 0.3);
  transform: translateY(-2px);
}

.lead {
  font-size: 1.5rem;
  color: #cece0e;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 2rem 0 3rem 0;
}

.stat {
  background: rgba(37, 19, 195, 0.3);
  border: 1px solid rgba(206, 206, 14, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  border-color: rgba(206, 206, 14, 0.3);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #cece0e;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(206, 206, 14, 0.7);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Style dla przycisków w hero */
.hero-cta .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #cece0e;
}

.hero-cta .btn-primary,
.hero-cta .btn-outline {
  background: transparent;
  color: #cece0e;
}

.hero-cta .btn-primary:hover,
.hero-cta .btn-outline:hover {
  background: #cece0e;
  color: #2513c3;
  transform: translateY(-2px);
}

/* Responsywność */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 5rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 100px;  /* Jeszcze większy padding na mobile */
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .lead {
    font-size: 1.2rem;
  }
}

/* Section headers */
h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
  letter-spacing: -0.03em;
  text-align: left;
}

h3 {
  font-size: 2rem;
  letter-spacing: -0.02em;
}

/* Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 2rem 0 3rem 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #cece0e;
  letter-spacing: -0.03em;
}

.stat-label {
  color: rgba(206, 206, 14, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

/* Sections */
.section {
  padding-top: 50px;
  padding-bottom: 4rem;
  margin-bottom: 3rem;
  margin-top: -20px;
  position: relative;
  background: rgba(37, 19, 195, 0.5);
  border: 1px solid rgba(206, 206, 14, 0.1);
  border-radius: 20px;
}

.section::before {
  content: '';
  display: block;
  height: 50px;
  margin-top: -50px;
  visibility: hidden;
  pointer-events: none;
}

/* Albums */
.album {
  position: relative;
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.album:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  background: rgba(40, 40, 40, 0.6);
}

.album::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.1));
  z-index: -1;
  border-radius: 20px;
  transition: all 0.4s ease;
}

/* Gallery styling */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin: 0 auto;
  max-width: 1400px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(206, 206, 14, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  border-color: rgba(206, 206, 14, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(37, 19, 195, 0.9), transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #cece0e;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.gallery-note {
  display: block;
  font-size: 0.9rem;
  color: rgba(206, 206, 14, 0.7);
  letter-spacing: -0.01em;
}

/* Responsywność */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item {
    aspect-ratio: 4/3;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Buttons */
.btn {
  background: transparent;
  border: 1px solid #cece0e;
  color: #cece0e;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.btn:hover {
  background: #cece0e;
  color: #2513c3;
}

/* Achievement cards */
.achievement-card {
  background: rgba(37, 19, 195, 0.8);
  border: 1px solid rgba(206, 206, 14, 0.1);
  border-radius: 10px;
}

.achievement-card h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

/* Achievement grid */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.achievement-item {
  background: rgba(37, 19, 195, 0.3);
  border: 1px solid rgba(206, 206, 14, 0.1);
  border-radius: 12px;
  padding: 1.2rem;
  transition: all 0.3s ease;
  text-align: left;
}

.achievement-item:hover {
  transform: translateY(-5px);
  border-color: rgba(206, 206, 14, 0.3);
}

.achievement-number {
  font-size: 2rem;
  font-weight: 700;
  color: #cece0e;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.achievement-desc {
  font-size: 0.9rem;
  color: rgba(206, 206, 14, 0.8);
  line-height: 1.3;
}

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

@media (max-width: 768px) {
  .achievements-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* Contact section */
.contact-card {
  background: rgba(37, 19, 195, 0.8);
  border: 1px solid rgba(206, 206, 14, 0.1);
  border-radius: 10px;
  padding: 3rem;
}

.contact-info {
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Social media buttons */
.social-btn {
  background: transparent;
  border: 1px solid #cece0e;
  color: #cece0e;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.social-btn:hover {
  background: #cece0e;
  color: #2513c3;
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #2513c3;
}

::-webkit-scrollbar-thumb {
  background: rgba(206, 206, 14, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(206, 206, 14, 0.5);
}

/* Links */
a {
  color: #cece0e;
  text-decoration: none;
}

a:hover {
  color: rgba(206, 206, 14, 0.8);
}

/* Notable gigs and accomplishments lists */
#notable-gigs li, #accomplishments li {
  border-bottom: 1px solid rgba(206, 206, 14, 0.1);
  padding: 10px 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}

#notable-gigs li:hover, #accomplishments li:hover {
  background: rgba(206, 206, 14, 0.05);
  padding-left: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 4rem;
    margin-bottom: 2rem;
  }

  .album {
    padding: 20px;
  }

  .hero-stats {
    gap: 2rem;
    flex-wrap: wrap;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Social media section */
#social-media .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

#social-media .col-md-6 {
  width: auto;
  padding: 0;
}

#social-media .btn {
  min-width: 180px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

#social-media .btn i {
  font-size: 1.2rem;
}

/* Album carousel styles */
.swiper {
  width: 100%;
  padding: 50px 20px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.album-card {
  background: rgba(37, 19, 195, 0.8);
  border: 1px solid rgba(206, 206, 14, 0.1);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
}

.album-card:hover {
  transform: translateY(-10px);
  border-color: rgba(206, 206, 14, 0.3);
}

.album-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.album-info {
  text-align: center;
}

.album-info h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
  color: #cece0e;
}

.album-info .artist {
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(206, 206, 14, 0.8);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.album-info .genres {
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(206, 206, 14, 0.6);
  font-size: 0.7rem;
  text-transform: uppercase;
}

/* Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #cece0e !important;
}

.swiper-pagination-bullet {
  background: #cece0e !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Biography section */
.bio-text {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

.bio-text p {
  margin-bottom: 1.5rem;
}

.quotes {
  margin: 4rem 0;
  padding: 2rem;
  border-left: 2px solid #cece0e;
}

blockquote {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: normal;
}

.key-stats {
  margin-top: 5rem;
  margin-bottom: 2rem;
  padding: 2rem;
  border: 1px solid rgba(206, 206, 14, 0.2);
  border-radius: 10px;
  background: rgba(37, 19, 195, 0.3);
}

.key-stats h3 {
  margin-bottom: 2rem;
  text-transform: uppercase;
  text-align: left;
  color: #cece0e;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.stats-spotify {
  padding: 1rem;
}

.stats-spotify h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: rgba(206, 206, 14, 0.9);
}

.stats-spotify ul {
  list-style: none;
  padding: 0;
}

.stats-spotify li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

/* Social media stats */
.stats-social {
  padding: 1rem;
}

.stats-social h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: rgba(206, 206, 14, 0.9);
}

.stats-social ul {
  list-style: none;
  padding: 0;
}

.stats-social li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stats-social i {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.stats-social .fa-instagram { color: #cece0e; }
.stats-social .fa-youtube { color: #cece0e; }
.stats-social .fa-facebook-f { color: #cece0e; }

/* Spotify player styling */
.spotify-wrapper {
  position: relative;
  background: rgba(37, 19, 195, 0.8);
  padding: 1px;
  border-radius: 13px;
  border: 1px solid rgba(206, 206, 14, 0.2);
}

.spotify-player {
  display: block;
  width: 100%;
  height: 500px;
  background: transparent;
}

/* Dodaj hover effect */
.spotify-wrapper:hover {
  border-color: rgba(206, 206, 14, 0.4);
}

@media (max-width: 768px) {
  .spotify-player {
    height: 400px;
  }
}

/* Genre tags in hero section */
.genre-tags {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 2rem 0;
}

.genre {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: rgba(206, 206, 14, 0.8);
  position: relative;
}

.genre:not(:last-child)::after {
  content: '/';
  position: absolute;
  right: -0.7rem;
  color: rgba(206, 206, 14, 0.4);
}

@media (max-width: 768px) {
  .genre-tags {
    gap: 0.8rem;
  }
  
  .genre {
    font-size: 1rem;
  }
  
  .genre:not(:last-child)::after {
    right: -0.5rem;
  }
}

/* Achievements styling */
.achievements-content {
  max-width: 900px;
  margin: 0 auto;
}

.achievements-section {
  margin-bottom: 4rem;
}

.achievements-section h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  color: #cece0e;
}

.achievements-list {
  list-style: none;
  padding: 0;
}

.achievements-list li {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgba(206, 206, 14, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.achievements-list li:hover {
  background: rgba(206, 206, 14, 0.05);
  transform: translateX(10px);
  border-color: rgba(206, 206, 14, 0.2);
}

.achievement-note {
  font-size: 0.9rem;
  color: rgba(206, 206, 14, 0.7);
  margin-left: 0.5rem;
}

.country {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(206, 206, 14, 0.7);
  margin-left: 0.5rem;
}

.billboard-achievement {
  padding: 2rem;
  border: 1px solid rgba(206, 206, 14, 0.2);
  border-radius: 10px;
  background: rgba(37, 19, 195, 0.3);
}

.billboard-achievement .position {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #cece0e;
  margin-bottom: 0.5rem;
}

.billboard-achievement .chart-name {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.billboard-achievement .song-info {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .achievements-list li {
    padding: 0.8rem;
  }
  
  .billboard-achievement {
    padding: 1.5rem;
  }
  
  .billboard-achievement .position {
    font-size: 2.5rem;
  }
}

/* Achievements new styling */
.achievements-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.achievement-box {
  padding: 2rem;
  border: 1px solid rgba(206, 206, 14, 0.2);
  border-radius: 10px;
  background: rgba(37, 19, 195, 0.3);
  transition: all 0.3s ease;
}

.achievement-box:hover {
  border-color: rgba(206, 206, 14, 0.4);
  transform: translateY(-5px);
}

/* Billboard box */
.billboard .position {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #cece0e;
}

/* Certifications box */
.certifications {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cert-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem 0;
}

.cert-icon {
  font-size: 2rem;
}

.cert-count {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.cert-type {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(206, 206, 14, 0.8);
}

.cert-country {
  font-size: 0.8rem;
  color: rgba(206, 206, 14, 0.6);
  letter-spacing: 0.02em;
  margin-top: 0.2rem;
}

.cert-info {
  display: flex;
  flex-direction: column;
}

/* Wspólne style dla siatek */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Style dla kafelków z artystami */
.collab-item {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 1.5rem;
  border: 1px solid rgba(206, 206, 14, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.collab-item:hover {
  transform: translateY(-5px);
  border-color: rgba(206, 206, 14, 0.3);
}

.collab-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(37, 19, 195, 0.7) 0%,
    rgba(37, 19, 195, 0.65) 100%
  );
  z-index: -1;
}

.collab-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  z-index: -2;
}

.collab-item:hover::after {
  opacity: 0.6;
}

.collab-item b {
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.collab-desc {
  font-size: 0.9rem;
  line-height: 1.2;
  color: rgba(206, 206, 14, 0.7);
}

.collab-note {
  font-size: 0.8rem;
  color: rgba(206, 206, 14, 0.7);
  margin-top: 0.4rem;
  line-height: 1.2;
}

/* Specjalny styl dla wyróżnionych współprac */
.highlight-collab {
  aspect-ratio: 4/4;
}

/* Tła dla konkretnych współprac */
.collab-item[data-artist="major-lazer"]::after {
  background-image: url('../img/artists/major-lazer.jpg');
}

.collab-item[data-artist="netflix"]::after {
  background-image: url('../img/artists/cyberpunk.jpg');
}

.collab-item[data-artist="ed-sheeran"]::after {
  background-image: url('../img/artists/ed-sheeran.jpg');
}

.collab-item[data-artist="dimitri-vegas"]::after {
  background-image: url('../img/artists/dimitri-vegas.jpg');
}

.collab-item[data-artist="scooter"]::after {
  background-image: url('../img/artists/scooter.jpg');
}

.collab-item[data-artist="malik-montana"]::after {
  background-image: url('../img/artists/malik-montana.jpg');
}

.collab-item[data-artist="gedz"]::after {
  background-image: url('../img/artists/gedz.jpg');
}

.collab-item[data-artist="young-leosia"]::after {
  background-image: url('../img/artists/young-leosia.jpg');
}

.collab-item[data-artist="quebonafide"]::after {
  background-image: url('../img/artists/quebonafide.jpg');
}

/* Responsywność */
@media (max-width: 1400px) {
  .collab-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1200px) {
  .collab-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 768px) {
  .collab-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .collab-item {
    aspect-ratio: 4/3;
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .collab-grid {
    grid-template-columns: 1fr;
  }
}

/* Social media specific styling */
#social .collab-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
}

#social .social-item {
  flex: 1;
  min-width: 0;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(37, 19, 195, 0.3);
  border: 1px solid rgba(206, 206, 14, 0.1);
  transition: all 0.4s ease;
}

#social .social-item:hover {
  transform: translateY(-5px);
  border-color: rgba(206, 206, 14, 0.3);
  background: rgba(206, 206, 14, 0.05);
}

/* Media queries tylko dla social media */
@media (max-width: 992px) {
  #social .collab-grid {
    flex-wrap: wrap;
  }
  
  #social .social-item {
    flex: 1 1 calc(50% - 0.5rem);
  }
}

@media (max-width: 576px) {
  #social .social-item {
    flex: 1 1 100%;
  }
}

/* Modal styling */
.modal-content {
  background: rgba(37, 19, 195, 0.95);
  border: 1px solid rgba(206, 206, 14, 0.2);
  border-radius: 12px;
}

.modal-header {
  border-bottom: 1px solid rgba(206, 206, 14, 0.1);
  padding: 1.5rem;
}

.modal-title {
  color: #cece0e;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.btn-close {
  filter: invert(1) sepia(100%) saturate(100%) hue-rotate(0deg));
  opacity: 0.7;
}

.btn-close:hover {
  opacity: 1;
}

.modal-body {
  padding: 2rem 1.5rem;
}

.achievement-section {
  margin-bottom: 2rem;
}

.achievement-section:last-child {
  margin-bottom: 0;
}

.achievement-section h4 {
  color: #cece0e;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.achievement-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.achievement-section li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
  color: rgba(206, 206, 14, 0.9);
  font-size: 1rem;
  line-height: 1.4;
}

.achievement-section li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #cece0e;
}

.modal-footer {
  border-top: 1px solid rgba(206, 206, 14, 0.1);
  padding: 1.5rem;
}

/* Album items styling */
.album-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(37, 19, 195, 0.3);
  border: 1px solid rgba(206, 206, 14, 0.1);
  transition: all 0.4s ease;
}

.album-item:hover {
  transform: translateY(-5px);
  border-color: rgba(206, 206, 14, 0.3);
}

.album-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: all 0.4s ease;
}

.album-info {
  padding: 1rem;
  border-top: 1px solid rgba(206, 206, 14, 0.1);
}

.album-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #cece0e;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.album-type {
  display: block;
  font-size: 0.9rem;
  color: rgba(206, 206, 14, 0.7);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.album-year {
  display: block;
  font-size: 0.9rem;
  color: rgba(206, 206, 14, 0.7);
  margin-bottom: 0.3rem;
}

.album-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(206, 206, 14, 0.6);
  font-style: italic;
}

.album-genres {
  font-size: 0.8rem;
  opacity: 0.8;
  display: block;
}

@media (max-width: 768px) {
  .album-info {
    padding: 0.8rem;
  }
  
  .album-title {
    font-size: 0.9rem;
  }
}

/* Update album styling */
.album-artist {
  display: block;
  font-size: 0.9rem;
  color: rgba(206, 206, 14, 0.8);
  margin-bottom: 0.4rem;
  font-style: italic;
}

/* Update section spacing */
.achievements-content h3 {
  margin-bottom: 2rem;
  color: #cece0e;
}

.achievements-content h3.mt-5 {
  margin-top: 4rem;
}

/* Social media styling */
.social-item {
  background: rgba(37, 19, 195, 0.3);
  border: 1px solid rgba(206, 206, 14, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  text-decoration: none;
  color: #cece0e;
}

.social-link i {
  font-size: 1.3rem;
}

.social-info {
  display: flex;
  flex-direction: column;
}

.social-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.social-handle {
  font-size: 0.85rem;
  color: rgba(206, 206, 14, 0.7);
}

@media (max-width: 768px) {
  .social-link {
    padding: 0.8rem;
  }
  
  .social-link i {
    font-size: 1.2rem;
  }
  
  .social-name {
    font-size: 0.9rem;
  }
  
  .social-handle {
    font-size: 0.8rem;
  }
}

/* Dodaj style dla nowych klas */
.collab-year {
  display: block;
  font-size: 1.2rem;
  color: rgba(206, 206, 14, 0.9);
  margin: 0.5rem 0;
  font-weight: 600;
}

.collab-location {
  display: block;
  font-size: 0.9rem;
  color: rgba(206, 206, 14, 0.7);
  letter-spacing: -0.01em;
}

/* Album grid update */
#discography .collab-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

/* Sekcja występów */
#performances h3 {
  font-size: 2rem;
  margin: 4rem 0 2rem;
  color: #cece0e;
}

#performances h3:first-of-type {
  margin-top: 2rem;
}

.booking-info {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #cece0e;
  margin-bottom: 3rem;
}

/* DJ Sety */
.sets-grid {
  max-width: 900px;
  margin: 0 auto 4rem;  /* Zwiększamy margines dolny */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.set-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  border: 1px solid rgba(206, 206, 14, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}

.set-item:hover {
  transform: translateY(-5px);
  border-color: rgba(206, 206, 14, 0.3);
}

.set-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(37, 19, 195, 0.4) 0%,
    rgba(37, 19, 195, 0.9) 100%
  );
  z-index: 1;
}

.set-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  z-index: 0;
  transition: all 0.3s ease;
}

/* Tła dla poszczególnych setów */
.set-item[data-set="synapsa"]::after {
  background-image: url('../img/sets/synapsa.jpg');
}

.set-item[data-set="ambient"]::after {
  background-image: url('../img/sets/ambient.jpg');
}

.set-item[data-set="transformator"]::after {
  background-image: url('../img/sets/transformator.jpg');
}

.set-item[data-set="szybkie-rzeczy"]::after {
  background-image: url('../img/sets/szybkie-rzeczy.jpg');
}

.set-info {
  position: relative;
  z-index: 2;
  padding: 1rem;
  color: #cece0e;
}

.set-info h3 {
  font-size: 0.7rem;  /* Jeszcze mniejszy tytuł */
  margin: 0 0 0.3rem 0;
  line-height: 1.2;
}

.set-year,
.set-genre {
  font-size: 0.75rem;  /* Przywracamy poprzedni rozmiar detali */
  opacity: 0.8;
  line-height: 1.2;
}

/* Ważne występy - lista */
.gigs-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gig-item {
  display: flex;
  gap: 1rem;
  padding: 0.5rem;
  transition: all 0.3s ease;
  cursor: default;
  line-height: 1.2;
}

.gig-item:hover {
  transform: translateX(5px);
  opacity: 0.8;
}

.gig-year {
  font-size: 1rem;
  font-weight: 700;
  color: #cece0e;
  min-width: 45px;
  display: flex;
  align-items: center;
}

.gig-info h3 {
  font-size: 1rem;
  margin: 0;
  color: #cece0e;
  line-height: 1.2;
}

.gig-details {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(206, 206, 14, 0.7);
  line-height: 1.2;
}

/* Responsywność */
@media (max-width: 992px) {
  .sets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sets-grid {
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
  }
  
  .gigs-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .gig-item {
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.5rem;
  }
  
  .gig-year {
    min-width: auto;
    margin-bottom: 0.2rem;
  }
  
  .gig-details {
    flex-direction: column;
    gap: 0.2rem;
  }
}

/* Płynniejsze przewijanie */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px; /* Dostosowanie offsetu przewijania */
}

/* Lepszy kontrast dla przycisków */
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(206, 206, 14, 0.3);
}

/* Poprawa dostępności */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Krótkie bio */
.bio-short {
  max-width: 900px;  /* Taka sama szerokość jak bio-text */
  margin-left: auto;
  margin-right: auto;
  background: rgba(37, 19, 195, 0.3);
  border: 1px solid rgba(206, 206, 14, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 3rem;
}

.bio-short h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: rgba(206, 206, 14, 0.8);
}

.bio-short p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.bio-short .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.bio-short .btn i {
  margin-right: 0.5rem;
}

/* Style dla sekcji występów */
#performances p {
  text-align: center;
  margin-bottom: 0.5rem;
}

#performances p:first-of-type {
  font-size: 1.2rem;
  font-weight: 600;
  color: #cece0e;
  margin-bottom: 1rem;
}

#performances p:last-of-type {
  font-size: 1rem;
  color: rgba(206, 206, 14, 0.8);
  margin-bottom: 2rem;
}

/* Responsywność dla statystyk */
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .key-stats {
    padding: 1.5rem;
  }
}

#performances h3 {
  font-size: 1.6rem;
  margin: 3rem 0 1.5rem;
}

.booking-info {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .set-item {
    aspect-ratio: 1;  /* Zachowujemy kwadrat na mobile */
  }
  
  .set-info {
    padding: 1rem;
  }
  
  .set-info h3 {
    font-size: 0.65rem;  /* Mniejszy tytuł na mobile */
  }
  
  .set-year,
  .set-genre {
    font-size: 0.75rem;  /* Ten sam rozmiar detali na mobile */
  }
}

.achievements-footer {
  text-align: center;
  margin-top: 2rem;
}

.achievements-footer .btn {
  display: inline-block;
  margin: 0 auto;
}

/* Responsywność */
@media (max-width: 768px) {
  .achievements-footer {
    margin-top: 1.5rem;
  }
}

/* Rider techniczny */
.rider-content {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.rider-section {
  background: rgba(37, 19, 195, 0.3);
  border: 1px solid rgba(206, 206, 14, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  height: fit-content;
}

.rider-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #cece0e;
}

.rider-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rider-section li {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(206, 206, 14, 0.9);
}

.rider-section .note {
  font-size: 0.8rem;
  color: rgba(206, 206, 14, 0.7);
  margin-top: 1rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .rider-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .rider-section {
    padding: 1.2rem;
  }
}

/* Responsywność */
@media (max-width: 1200px) {
  #discography .collab-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  #discography .collab-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  #discography .collab-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsywność */
@media (max-width: 992px) {
  .navbar .container {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(37, 19, 195, 0.95);
    padding: 1rem;
    border-bottom: 1px solid rgba(206, 206, 14, 0.1);
    z-index: 1000;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 56px;  /* Mniejszy padding na mobile */
  }
  
  .navbar {
    height: 56px;  /* Mniejsza wysokość na mobile */
  }
  
  .hero {
    padding-top: 100px;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .key-stats {
    padding: 1.5rem;
  }
  
  .achievements-footer {
    margin-top: 1.5rem;
  }
  
  /* ... reszta styli dla 768px ... */
}

@media (max-width: 576px) {
  #discography .collab-grid {
    grid-template-columns: 1fr;
  }
} 