/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Oswald:wght@400;700&display=swap');

:root {
  --primary-color: #00ff88;
  /* Neon Green */
  --primary-hover: #00cc6a;
  --bg-color: #0a0a0a;
  /* Deep Black */
  --bg-gradient: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0a0a0a 100%);
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.1);
  --text-main: #ffffff;
  --text-secondary: #cccccc;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --glass-blur: blur(12px);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --h1-gradient: linear-gradient(to right, #fff, #b3b3b3);
  --nav-bg: rgba(10, 10, 10, 0.85);
  /* Default Dark Nav */
  --nav-bg-scrolled: rgba(10, 10, 10, 0.95);
  --button-bg: #1a1a1a;
}

[data-theme="light"] {
  --primary-color: #00bf63;
  /* Darker green for contrast */
  --primary-hover: #009e52;
  --bg-color: #f0f2f5;
  --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  --card-bg: rgba(255, 255, 255, 0.7);
  --card-border: rgba(0, 0, 0, 0.1);
  --text-main: #1a1a1a;
  --text-secondary: #4a4a4a;
  --glass-blur: blur(20px);
  --h1-gradient: linear-gradient(to right, #2a2a2a, #4a4a4a);
  --nav-bg: rgba(255, 255, 255, 0.85);
  /* Light Nav */
  --nav-bg-scrolled: rgba(255, 255, 255, 0.95);
  --button-bg: #fff;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--bg-color);
  background-image: var(--bg-gradient);
  color: var(--text-main);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--nav-bg);
  /* Use variable */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
  z-index: 1000;
  border-bottom: 1px solid var(--card-border);
  transition: padding 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  background: var(--nav-bg-scrolled);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

.theme-toggle {
  font-size: 1.2rem;
  color: var(--text-main);
  cursor: pointer;
  margin-right: 20px;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition);
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 60px;
  /* Top padding for fixed nav */
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  flex: 1;
  padding-right: 50px;
  animation: fadeInLeft 1s ease-out;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  background: var(--h1-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  animation: fadeInRight 1s ease-out;
}

.image-wrapper {
  position: relative;
  border-radius: 50%;
  padding: 10px;
  background: linear-gradient(135deg, var(--card-border), transparent);
}

.artist-image {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 50px rgba(0, 255, 136, 0.2);
  transition: var(--transition);
}

.image-wrapper:hover .artist-image {
  transform: scale(1.05);
  box-shadow: 0 0 70px rgba(0, 255, 136, 0.4);
}

/* Sections General */
section {
  padding: 80px 0;
}

/* Albums */
.album-card {
  display: flex;
  gap: 40px;
  background: var(--card-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 40px;
  transition: var(--transition);
  opacity: 0;
  /* For animation */
  transform: translateY(20px);
}

.album-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.album-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  /* Slightly lighter on hover */
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.album-cover {
  width: 280px;
  height: 280px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.album-card:hover .album-cover {
  transform: scale(1.03);
}

.album-info h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: var(--text-main);
}

.release-date {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary-color);
  opacity: 0.9;
}

.tracklist {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.tracklist li {
  padding: 8px 0;
  padding-left: 20px;
  /* Space for marker */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tracklist li:last-child {
  border-bottom: none;
}

.tracklist li::before {
  content: '►';
  color: var(--primary-color);
  font-size: 0.8rem;
  position: absolute;
  left: 0;
}

.tracklist li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.tracklist li a:not(.youtube-link):hover {
  color: var(--text-main);
  text-decoration: none;
}

.youtube-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  transition: transform 0.2s;
  opacity: 0.8;
}

.youtube-icon:hover {
  transform: scale(1.2);
  opacity: 1;
}



/* Platforms */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: var(--button-bg);
  border: 1px solid var(--card-border);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 12px;
  transition: var(--transition);
  font-weight: 600;
}

.platform-link:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  background: rgba(0, 255, 136, 0.05);
  /* Very subtle tint */
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.1);
}

.platform-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Green Player Section */
.gp-section {
  background: linear-gradient(180deg, transparent, rgba(0, 255, 136, 0.05), transparent);
}

.gp-container {
  display: flex;
  gap: 60px;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: var(--glass-blur);
}

.gp-video-player,
.video-fallback {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.video-fallback {
  display: none;
}

.gp-video.no-video .gp-video-player {
  display: none;
}

.gp-video.no-video .video-fallback {
  display: block;
}

.gp-download .gp-link {
  display: inline-flex;
  background: var(--primary-color);
  color: #000;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 15px;
}

.gp-download .gp-link:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

/* Contacts Form */
.contact-form {
  display: flex;
  flex-direction: column;
  width: fit-content;
  min-width: 440px;
  margin: 0 auto;
  background: var(--card-bg);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--card-border);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-body);
  transition: border-color 0.3s;
}

.contact-form textarea {
  resize: both;
  min-height: 120px;
  max-height: 300px;
  min-width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

button[type="submit"] {
  width: 100%;
  padding: 15px;
  background: var(--primary-color);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

button[type="submit"]:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-top: 1px solid var(--card-border);
  margin-top: 80px;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Animations */
.fade-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .artist-image {
    width: 300px;
    height: 300px;
  }

  .album-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .tracklist li {
    justify-content: center;
  }

  .tracklist li::before {
    left: auto;
    display: none;
  }

  /* Remove bullet on mobile center */
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: #0a0a0a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
    border-top: 1px solid var(--card-border);
  }

  .nav-links.active {
    right: 0;
  }

  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 100px;
  }

  .hero-content {
    padding-right: 0;
    padding-top: 30px;
  }

  .gp-container {
    flex-direction: column;
    text-align: center;
  }

  .gp-video {
    margin: 0 auto;
  }
}