/* DJ Grand Daddy Website - Cyberpunk/Dark Theme */

:root {
  --primary-color: #00ffff;
  --secondary-color: #ff00ff;
  --accent-color: #ffff00;
  --dark-bg: #0a0a0a;
  --darker-bg: #050505;
  --card-bg: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-cyber: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
}

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

body {
  font-family: "Rajdhani", sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Navbar */

.navbar {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

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

.logo h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.tagline {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: -5px;
}

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

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-color);
}

/* Hero Section */

.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #0a0a0a 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 255, 255, 0.03) 2px,
    rgba(0, 255, 255, 0.03) 4px
  );
  pointer-events: none;
}

.hero-content {
  text-align: center;
  z-index: 2;
  animation: fadeInUp 1s ease;
}

.hero-content h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: 5px;
  text-shadow:
    0 0 10px var(--primary-color),
    0 0 20px var(--primary-color),
    0 0 30px var(--primary-color);
}

.glitch {
  position: relative;
  color: var(--primary-color);
}

.hero-tagline {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 300;
}

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

/* Buttons */

.btn {
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--gradient-cyber);
  color: var(--dark-bg);
  border: none;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

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

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Sections */

.genres,
.featured,
.cta {
  padding: 5rem 0;
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Genre Grid */

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

.genre-card:nth-child(5) {
  grid-column: 2;
}

.genre-card:nth-child(6) {
  grid-column: 3;
}

.genre-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.genre-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.genre-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.genre-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

/* Featured Video */

.featured {
  background: var(--darker-bg);
}

.featured-video {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.featured-video iframe {
  width: 100%;
  height: 500px;
}

.featured-info {
  background: var(--card-bg);
  padding: 1.5rem;
  text-align: center;
}

.featured-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* CTA Section */

.cta {
  text-align: center;
  background: linear-gradient(135deg, #1a0a2e 0%, #0a0a0a 100%);
}

.cta h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 1.5rem;
}

/* Page Header */

.page-header {
  background: linear-gradient(135deg, #1a0a2e 0%, #0a0a0a 100%);
  padding: 5rem 0 3rem;
  text-align: center;
  border-bottom: 2px solid var(--primary-color);
}

.page-header h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Video Gallery */

.video-gallery {
  padding: 4rem 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.video-card {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.video-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.1);
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover .play-overlay {
  opacity: 1;
}

.play-button {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--dark-bg);
}

.video-info {
  padding: 1.5rem;
}

.video-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.video-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

/* About Page */

.about-content {
  padding: 4rem 0;
}

/* Artist Profile Section */

.artist-profile {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.profile-image {
  position: relative;
}

.profile-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 3px solid var(--primary-color);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.profile-image img:hover {
  box-shadow: 0 0 50px rgba(0, 255, 255, 0.6);
  transform: scale(1.02);
}

.profile-description h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.roles {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.bio-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.about-text h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about-text h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin: 2rem 0 1rem;
}

.lead {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

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

.genre-list li {
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--card-bg);
  border-left: 3px solid var(--primary-color);
  border-radius: 5px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  border: 2px solid var(--primary-color);
}

.stat-number {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
}

/* Contact Page */

.contact-content {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.contact-info h2,
.contact-form-section h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-link:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
}

.contact-icon {
  font-size: 2.5rem;
}

.contact-details h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.contact-cta {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  border-left: 3px solid var(--secondary-color);
  margin-top: 2rem;
}

.contact-cta h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Contact Form */
/* Kept here in case the contact form is added again later */

.contact-form {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background: var(--darker-bg);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 5px;
  color: var(--text-primary);
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* Footer */

footer {
  background: var(--darker-bg);
  padding: 3rem 0 1rem;
  border-top: 2px solid var(--primary-color);
}

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

.footer-section h3 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.social-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--gradient-cyber);
  color: var(--dark-bg);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 255, 255, 0.5);
}

.site-credit a {
  color: var(--primary-color);
  text-decoration: none;
}

.site-credit a:hover {
  text-decoration: underline;
}

/* Animations */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

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

  .genre-card:nth-child(5),
  .genre-card:nth-child(6) {
    grid-column: auto;
  }

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

  .artist-profile,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }
}
