:root {
  --bg-dark: #0a0a0c;
  --bg-card: #151518;
  --accent-gold: #cfaa63;
  --accent-red: #d92525;
  --text-light: #f5f5f5;
  --text-dim: #a0a0a0;
  
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-heading {
  font-family: var(--font-display);
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  color: var(--accent-gold);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(10,10,12,0.9), transparent);
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(10px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 101;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  margin: 4px 0;
  transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.navbar .logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-light);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-light);
  display: inline-block;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-gold);
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-image: linear-gradient(to top, #334c31 0%, transparent 30%), url('Banner-new.jpg');
}

.hero-content {
  z-index: 1;
  padding: 0 2rem;
}

.hero-socials {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  z-index: 10;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1rem;
  line-height: 1;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  background: linear-gradient(to right, #fff, var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #ccc;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-block;
  background: linear-gradient(to bottom, #000000, #222222);
  background-size: 200% 200%;
  color: white;
  font-family: var(--font-body), "Segoe UI", sans-serif;
  font-weight: bold;
  font-size: 18px;
  border: none;
  border-radius: 30px;
  padding: 14px 28px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  animation: button-shimmer 2s infinite;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
}

.btn:hover {
  background: linear-gradient(to bottom, #111111, #333333);
  background-size: 200% 200%;
  animation: button-particles 1s ease-in-out infinite;
  transform: translateY(-2px);
  color: white;
}

.btn:active {
  transform: scale(0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

@keyframes button-shimmer {
  0% {
    background-position: left top;
  }
  100% {
    background-position: right bottom;
  }
}

@keyframes button-particles {
  0% {
    background-position: left top;
  }
  100% {
    background-position: right bottom;
  }
}

.btn-primary {
  background: linear-gradient(to bottom, var(--accent-red), #990000);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 4px 15px rgba(217, 37, 37, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(to bottom, #ff3333, var(--accent-red));
  background-size: 200% 200%;
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  animation: none;
}

.btn-small {
  padding: 0.8rem 2rem;
  font-size: 0.8rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.4s ease;
}
.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Hero Video Section */
.hero-video-section {
  padding: 4rem 0;
  background: linear-gradient(to bottom, #334c31 0%, var(--bg-dark) 100%);
}

.hero-video-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.full-width-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Out Now - Mundri Section */
.out-now-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.out-now-eyebrow {
  text-align: center;
  color: var(--accent-red);
  font-weight: 700;
  letter-spacing: 5px;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.marquee-container {
  overflow: hidden;
  background-color: rgba(217, 37, 37, 0.1);
  padding: 1rem 0;
  margin-bottom: 4rem;
  border-top: 1px solid rgba(217, 37, 37, 0.3);
  border-bottom: 1px solid rgba(217, 37, 37, 0.3);
}

.marquee-strip {
  display: flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  color: var(--accent-gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 4px;
}

.marquee-strip span {
  padding-right: 50px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.mundri-content {
  text-align: center;
}

.mundri-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(217, 37, 37, 0.5);
}

.mundri-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 3rem;
}

.artist-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.artist-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
  min-width: 200px;
}

.artist-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(207, 170, 99, 0.15);
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background-color: #333;
  object-fit: cover;
}

.artist-name {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.artist-handle {
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.streaming-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Branded streaming buttons */
.btn-spotify {
  background: linear-gradient(to bottom, #1ed760, #1DB954) !important;
  color: #000 !important;
  box-shadow: 0 4px 20px rgba(29, 185, 84, 0.35);
}
.btn-spotify:hover {
  background: linear-gradient(to bottom, #23f870, #1ed760) !important;
  box-shadow: 0 6px 28px rgba(29, 185, 84, 0.5);
}

.btn-apple {
  background: linear-gradient(to bottom, #444, #1a1a1a) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.btn-apple:hover {
  background: linear-gradient(to bottom, #555, #222) !important;
}

.btn-youtube {
  background: linear-gradient(to bottom, #ff4040, #cc0000) !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(204, 0, 0, 0.35);
}
.btn-youtube:hover {
  background: linear-gradient(to bottom, #ff5555, #e60000) !important;
  box-shadow: 0 6px 28px rgba(204, 0, 0, 0.5);
}

.spotify-embed {
  max-width: 800px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  padding: 6rem 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image .about-img {
  width: 80%;
  margin: 0 auto;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(207, 170, 99, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #ccc;
}

.instrument-icons {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-display);
  color: var(--accent-gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* Music Section */
.music-section {
  padding: 6rem 2rem;
  background-color: var(--bg-card);
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.music-card {
  background-color: var(--bg-dark);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.music-card:hover {
  transform: translateY(-5px);
}

.music-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  background: linear-gradient(145deg, #1a1a1f, var(--bg-dark));
  border: 1px solid rgba(207, 170, 99, 0.3);
}

.badge-new {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--accent-red);
  color: #fff;
  padding: 0.2rem 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 4px;
  z-index: 10;
}

.cover-art {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #333;
}

.music-info {
  padding: 2rem;
}

.music-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.music-info p {
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

/* Videos Section */
.videos-section {
  padding: 2rem 2rem 6rem;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
}

/* Band Section */
.band-section {
  padding: 6rem 2rem;
  background-color: var(--bg-card);
}

.band-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #222;
  border-radius: 4px;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-card);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item h3 {
  font-family: var(--font-display);
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.faq-item p {
  color: #ccc;
}

/* Footer */
.footer {
  padding: 6rem 2rem 3rem;
}

.footer h2 {
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  font-family: var(--font-body);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-gold);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.social-icons a {
  color: var(--text-light);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent-red);
  transform: scale(1.1);
}

.copyright {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.copyright a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: var(--accent-red);
}

/* Responsive */
@media (max-width: 768px) {
  .fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image .about-img {
    width: 90%;
  }
  
  .music-card.featured {
    grid-template-columns: 1fr;
  }
  
  .band-gallery {
    grid-template-columns: 1fr;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: rgba(21, 21, 24, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 80px;
    transition: right 0.3s ease;
    z-index: 100;
    align-items: center;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .hero {
    height: 90vh;
    background-image: linear-gradient(to top, #334c31 0%, transparent 30%), url('Banner-new-phone.jpg');
    background-size: cover;
    background-position: center 35%;
  }
  
  .hero-socials {
    right: 1.5rem;
    top: 50%;
  }
}
