/*
Theme Name: DJ KRYPTO
Theme URI: https://djkrypto.com
Author: DJ KRYPTO
Author URI: https://djkrypto.com
Description: A modern, mysterious electronic music artist theme featuring dark aesthetics, neon accents, and an enigmatic design. Perfect for DJs, music producers, and artists who want to maintain an air of mystery.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: djkrypto
Tags: music, dj, artist, dark, modern, one-page, responsive, custom-menu

This theme, like WordPress, is licensed under the GPL.
*/

:root {
  --background: 240 10% 3.9%;
  --foreground: 0 0% 98%;
  --primary: 280 100% 65%;
  --primary-foreground: 0 0% 100%;
  --secondary: 240 5% 15%;
  --accent: 180 100% 50%;
  --muted: 240 5% 15%;
  --muted-foreground: 240 5% 60%;
  --border: 240 10% 15%;
  --card: 240 10% 8%;
  --neon-purple: 280 100% 65%;
  --neon-cyan: 180 100% 50%;
  --neon-pink: 330 100% 60%;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.text-glow {
  text-shadow: 0 0 20px hsl(var(--primary) / 0.5);
}

.text-glow-cyan {
  text-shadow: 0 0 20px hsl(var(--accent) / 0.5);
}

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

/* Utility Classes */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  background-color: hsl(var(--primary) / 0.9);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
  background: transparent;
}

.btn-outline:hover {
  background-color: hsl(var(--primary) / 0.1);
  transform: translateY(-2px);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes glow {
  0%, 100% { filter: drop-shadow(0 0 5px hsl(var(--primary) / 0.5)); }
  50% { filter: drop-shadow(0 0 20px hsl(var(--primary) / 0.8)); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

.animate-slide-up {
  animation: slide-up 0.6s ease-out;
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--border));
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.site-logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: hsl(var(--foreground));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  color: hsl(var(--foreground));
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.nav-links a:hover {
  color: hsl(var(--primary));
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  font-size: 1.5rem;
  cursor: pointer;
}

.hamburger-icon {
  display: block;
  width: 25px;
  height: 2px;
  background: hsl(var(--foreground));
  position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  display: block;
  width: 25px;
  height: 2px;
  background: hsl(var(--foreground));
  position: absolute;
}

.hamburger-icon::before {
  top: -8px;
}

.hamburger-icon::after {
  top: 8px;
}

.mobile-menu {
  display: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsl(var(--background) / 0.8), hsl(var(--background) / 0.6), hsl(var(--background)));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem 1rem;
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.2rem;
  color: hsl(var(--muted-foreground));
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 10;
}

.scroll-icon {
  width: 30px;
  height: 50px;
  border: 2px solid hsl(var(--primary));
  border-radius: 20px;
  position: relative;
}

.scroll-icon::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: hsl(var(--primary));
  border-radius: 50%;
  animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
  0% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 30px;
    opacity: 0;
  }
}

/* About Section */
.about-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(270 50% 15% / 0.4), hsl(280 50% 10% / 0.5), hsl(240 50% 12% / 0.4));
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  z-index: 0;
}

.about-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(225deg, hsl(280 100% 65% / 0.2), transparent, hsl(330 100% 60% / 0.2));
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  animation-delay: 0.5s;
  opacity: 0.6;
  z-index: 0;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.about-image {
  position: relative;
  width: 70%;
  margin: 0 auto;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(280 100% 65% / 0.5), hsl(270 60% 50% / 0.4), hsl(330 100% 60% / 0.5));
  filter: blur(80px);
  transition: all 0.7s;
  animation: pulseSlow 4s ease-in-out infinite;
  z-index: 0;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(225deg, hsl(280 60% 50% / 0.3), transparent, hsl(240 60% 50% / 0.3));
  filter: blur(30px);
  animation: pulseSlow 4s ease-in-out infinite;
  animation-delay: 1s;
  opacity: 0.6;
  z-index: 0;
}

.about-image:hover::before {
  filter: blur(60px);
}

@keyframes pulseSlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 1;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Music Section */
.music-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.music-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.8);
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-description {
  color: hsl(var(--muted-foreground));
  max-width: 600px;
  margin: 1rem auto;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

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

.track-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.track-card:hover {
  border-color: hsl(var(--primary));
  transform: translateY(-5px);
}

.track-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.track-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.track-card:hover .track-image img {
  transform: scale(1.1);
}

.track-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--background)), hsl(var(--background) / 0.5), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.track-card:hover .track-overlay {
  opacity: 0.4;
}

.track-download-button {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid rgba(139, 92, 246, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  z-index: 10;
  color: hsl(var(--foreground));
  text-decoration: none;
}

.track-download-button:hover {
  background: rgba(139, 92, 246, 0.9);
  border-color: hsl(var(--primary));
  transform: scale(1.05);
  color: hsl(var(--primary-foreground));
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: hsl(var(--background) / 0.6);
  backdrop-filter: blur(4px);
  border: 2px solid hsl(var(--primary) / 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.track-card:hover .play-button {
  transform: scale(1);
  background: hsl(var(--primary) / 0.8);
  color: hsl(var(--primary-foreground));
}

.track-card.playing .play-button {
  background: hsl(var(--primary) / 0.9);
  color: hsl(var(--primary-foreground));
  transform: scale(1);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.play-button svg {
  width: 40px;
  height: 40px;
  margin-left: 3px;
}

.play-button.pause svg {
  margin-left: 0;
}

.track-info {
  padding: 1rem;
}

.track-info h3 {
  font-size: 1.1rem;
  color: hsl(var(--foreground));
  transition: color 0.3s ease;
}

.track-card:hover .track-info h3,
.track-card.playing .track-info h3 {
  color: hsl(var(--primary));
}

/* Upcoming Events Section */
.upcoming-events-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.event-card {
  position: relative;
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  animation: fade-in 0.5s ease-out forwards;
  opacity: 0;
}

.event-card:hover {
  border-color: hsl(var(--primary));
  transform: scale(1.05);
}

.event-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)), hsl(var(--primary)));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-card:hover .event-accent {
  opacity: 1;
}

.event-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.event-venue {
  font-size: 1.5rem;
  font-weight: bold;
  color: hsl(var(--foreground));
  transition: color 0.3s ease;
  margin: 0;
}

.event-card:hover .event-venue {
  color: hsl(var(--primary));
}

.event-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.event-icon svg {
  color: hsl(var(--primary));
}

.event-card:hover .event-icon {
  background: hsl(var(--primary) / 0.2);
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.event-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.event-detail svg {
  color: hsl(var(--accent));
  flex-shrink: 0;
}

.event-detail span {
  font-weight: 500;
}

.event-cta {
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
}

.event-button {
  width: 100%;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.event-button:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Events Section */
.events-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.events-image-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 0.5rem;
  overflow: hidden;
}

.events-background-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.events-image-wrapper:hover .events-background-image {
  transform: scale(1.05);
}

.events-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--background)), hsl(var(--background) / 0.6), transparent);
}

.events-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.events-content h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.events-content p {
  font-size: clamp(1.25rem, 3vw, 2rem);
  margin: 0.5rem 0;
}

.events-description {
  max-width: 700px;
  margin: 2rem auto;
  color: hsl(var(--muted-foreground));
}

.events-description p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(270 50% 15% / 0.4), hsl(280 50% 10% / 0.5), hsl(240 50% 12% / 0.4));
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  z-index: 0;
}

.contact-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(225deg, hsl(280 100% 65% / 0.2), transparent, hsl(330 100% 60% / 0.2));
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  animation-delay: 0.5s;
  opacity: 0.6;
  z-index: 0;
}

.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: hsl(var(--card) / 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  color: hsl(var(--foreground));
  font-family: inherit;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
}

.contact-form-wrapper button {
  width: 100%;
}

/* Footer Styles */
.site-footer {
  background: hsl(var(--background) / 0.95);
  border-top: 1px solid hsl(var(--border));
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: hsl(var(--primary));
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  line-height: 2;
}

.footer-section a:hover {
  color: hsl(var(--primary));
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
}

/* Responsive Styles */
@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu.active {
    display: block;
    padding: 1rem 0;
    border-top: 1px solid hsl(var(--border));
    background: hsl(var(--background) / 0.95);
    backdrop-filter: blur(10px);
  }
  
  .mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-nav-links li {
    padding: 0.5rem 0;
  }
  
  .mobile-nav-links a {
    color: hsl(var(--foreground));
    text-decoration: none;
    display: block;
    padding: 0.5rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .tracks-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .testimonial-card {
    padding: 2rem 1rem;
  }
  
  .testimonial-quote {
    font-size: 3rem;
  }
  
  .testimonial-card blockquote {
    font-size: 1.2rem;
  }
  
  .youtube-grid {
    grid-template-columns: 1fr;
  }
}

/* YouTube Section */
.youtube-section {
  padding: 5rem 0;
  background-color: hsl(var(--background));
}

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.youtube-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid hsl(var(--primary) / 0.2);
}

.youtube-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.youtube-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #dc2626;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-youtube:hover {
  background-color: #b91c1c;
  transform: translateY(-2px);
}

.btn-youtube svg {
  width: 1.25rem;
  height: 1.25rem;
}