/* საერთო სტილი */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'MyFont';
  src: url('fonts/ROCK.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  background-color: #0a0a0a;
  color: #e0e0e0;
  font-family: 'MyFont', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* ნავიგაცია */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #0a0a0a;
  border-bottom: 1px solid #222;
  z-index: 100;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 6px;
  color: #ffffff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
}

nav ul li a {
  text-decoration: none;
  color: #888;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffffff;
}

nav ul li a.active {
  color: #ffffff;
}

/* სექციები */
section {
  min-height: 100vh;
  padding: 120px 60px 60px;
  border-bottom: 1px solid #1a1a1a;
}

section h2 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 30px;
}

section p {
  color: #666;
  font-size: 15px;
  letter-spacing: 1px;
}

/* Home */
#home {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#waveform-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content h1 {
  font-size: 100px;
  font-weight: 700;
  letter-spacing: 20px;
  color: #ffffff;
  margin-bottom: 16px;
}

.hero-content p {
  color: #888;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* Curtain */
.curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 99999;
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.18, 1);
}

.curtain.open {
  transform: scaleY(0);
  transform-origin: bottom;
}

/* Releases slider */
.releases-slider-wrapper {
  margin-top: 40px;
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.release-card {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.release-card.visible {
  display: flex;
}

.release-card iframe {
  width: 100%;
  height: 450px;
  border: none;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.release-card iframe:hover {
  opacity: 1;
}

.release-info h3 {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
}

.release-info p {
  font-size: 12px;
  letter-spacing: 2px;
  color: #555;
  margin-top: 4px;
}

.releases-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.rel-prev, .rel-next {
  background: none;
  border: 1px solid #333;
  color: #fff;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 16px;
  transition: border-color 0.3s;
}

.rel-prev:hover, .rel-next:hover {
  border-color: #fff;
}

.rel-counter {
  font-size: 12px;
  letter-spacing: 3px;
  color: #555;
}

/* Podcasts */
.podcast-slider-wrapper {
  margin-top: 40px;
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.podcast-card {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.podcast-card.visible {
  display: flex;
}

.podcast-card iframe {
  width: 100%;
  height: 300px;
  border: none;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.podcast-card iframe:hover {
  opacity: 1;
}

.podcast-card p {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
}

.podcast-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.pod-prev, .pod-next {
  background: none;
  border: 1px solid #333;
  color: #fff;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 16px;
  transition: border-color 0.3s;
}

.pod-prev:hover, .pod-next:hover {
  border-color: #fff;
}

.pod-counter {
  font-size: 12px;
  letter-spacing: 3px;
  color: #555;
}

/* About page */
.about-hero,
.about-intro,
.about-artists,
.about-vision {
  min-height: unset !important;
  padding: 0 !important;
}

.about-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 60px 40px !important;
  text-align: center;
  border-bottom: 1px solid #1a1a1a;
}

.about-hero h1 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 6px;
  color: #ffffff;
  line-height: 1.3;
  text-transform: uppercase;
}

.about-intro {
  padding: 40px 60px !important;
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  justify-content: center;
}

.about-vision {
  padding: 40px 60px !important;
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  justify-content: center;
}

.about-text {
  max-width: 680px;
  text-align: center;
}

.about-text p {
  color: #999;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.about-divider {
  padding: 20px 60px;
  border-bottom: 1px solid #1a1a1a;
  text-align: center;
}

.about-divider span {
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #444;
}

.about-artists {
  padding: 40px 60px !important;
  border-bottom: 1px solid #1a1a1a;
  text-align: center;
}

.about-artists h2 {
  font-size: 24px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.about-sub {
  font-size: 12px;
  letter-spacing: 3px;
  color: #444;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.artists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.artist-card {
  border: 1px solid #1a1a1a;
  padding: 32px;
  transition: border-color 0.3s;
  text-align: left;
}

.artist-card:hover {
  border-color: #333;
}

.artist-info h3 {
  font-size: 16px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 6px;
}

.artist-alias {
  font-size: 11px;
  letter-spacing: 5px;
  color: #444;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.artist-info p {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

/* Scroll fade-in */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Contact */
#contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin-top: 40px;
}

.contact-email {
  font-size: 24px;
  letter-spacing: 4px;
  color: #ffffff;
  text-decoration: none;
  text-transform: lowercase;
  transition: color 0.3s;
}

.contact-email:hover {
  color: #888;
}

.contact-links {
  display: flex;
  gap: 48px;
  align-items: center;
}

.contact-links a {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
  border-bottom: 1px solid #222;
  padding-bottom: 4px;
}

.contact-links a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/* Footer */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 80px 60px;
  border-top: 1px solid #1a1a1a;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 48px;
  align-items: center;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {

  nav {
    padding: 16px 20px;
  }

  nav ul {
    gap: 16px;
  }

  nav ul li a {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .logo img {
    height: 28px;
  }

  section {
    padding: 80px 20px 40px;
  }

  section h2 {
    font-size: 22px;
    letter-spacing: 4px;
  }

  .hero-content h1 {
    font-size: 42px;
    letter-spacing: 6px;
  }

  .hero-content p {
    font-size: 11px;
    letter-spacing: 2px;
    padding: 0 20px;
  }

  .releases-grid {
    grid-template-columns: 1fr;
  }

  .release-card iframe {
    height: 380px;
  }

  .podcast-grid {
    grid-template-columns: 1fr;
  }

  .podcast-card iframe {
    height: 280px;
  }

  .artists-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .about-intro,
  .about-vision,
  .about-artists {
    padding: 40px 20px !important;
  }

  footer {
    padding: 40px 20px;
  }

  .footer-links {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
}