/* CSS Variables - Retro DJ Theme */
:root {
  /* Colors based on the Next.js theme */
  --background: #1e2951; /* Deep blue background */
  --foreground: #fafafa; /* White text */
  --card: #252d5a; /* Slightly lighter blue for cards */
  --card-foreground: #fafafa; /* White text on cards */
  --primary: #df59fc; /* Bright pink primary */
  --primary-foreground: #fafafa; /* White text on primary */
  --secondary: #2d3561; /* Secondary blue */
  --secondary-foreground: #fafafa; /* White text on secondary */
  --muted: #2d3561; /* Muted blue */
  --muted-foreground: #f0abfc; /* Light pink muted text */
  --accent: #df59fc; /* Pink accent */
  --accent-foreground: #fafafa; /* White text on accent */
  --border: #a855f7; /* Pink borders */
  --input: #2d3561; /* Blue input backgrounds */
  --ring: #df59fc; /* Pink focus rings */
  --radius: 0.625rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}

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

.center {
  text-align: center;
}

.neon-glow {
  text-shadow: 0 0 9px currentColor, 0 0 18px currentColor, 0 0 27px currentColor;
}

.accent-text {
  color: var(--accent);
  font-weight: 600;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

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

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

.btn-outline {
  background-color: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #1e2951 0%, #252d5a 50%, #2d3561 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Grid pattern removed for cleaner background */
  background: none;
  z-index: 1;
}

.hero-background {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 4vw, 2rem);
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* About Section */
.about-section {
  padding: 5rem 0;
}

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

.section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.about-description {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-description p {
  margin-bottom: 1rem;
}

.genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.genre-tag {
  padding: 0.5rem 1rem;
  background-color: rgba(223, 89, 252, 0.2);
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.about-image {
  display: flex;
  justify-content: center;
}

.profile-image {
  width: 20rem;
  height: 20rem;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--accent);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background-color: rgba(37, 45, 90, 0.5);
}

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

.service-card {
  background-color: var(--card);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.service-content {
  padding: 2rem;
  text-align: center;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  color: var(--accent);
  margin: 0 auto 1rem;
  display: block;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Location Section */
.location-section {
  padding: 5rem 0;
}

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

.location-image {
  order: 2;
}

.location-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.location-text {
  order: 1;
}

.location-info {
  margin-top: 1.5rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.location-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.location-description {
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: rgba(37, 45, 90, 0.5);
}

.contact-content {
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.contact-image {
  margin: 3rem 0;
}

.contact-profile {
  width: 16rem;
  height: 16rem;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--accent);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  display: block;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 32rem;
  margin: 0 auto 3rem;
}

.contact-card {
  background-color: var(--card);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.contact-card-content {
  padding: 2rem;
  text-align: center;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  color: var(--accent);
  margin: 0 auto 1rem;
  display: block;
}

.contact-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.contact-value {
  color: var(--accent);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  word-break: break-all;
}

.contact-cta {
  margin-top: 3rem;
}

.contact-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(168, 85, 247, 0.3);
}

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

.footer-stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-star {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.footer-star.primary {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.footer-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-link {
  color: var(--accent);
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-link i {
  width: 1.5rem;
  height: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .location-image {
    order: 1;
  }
  
  .location-text {
    order: 2;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 24rem;
  }
  
  .profile-image {
    width: 16rem;
    height: 16rem;
  }
  
  .contact-profile {
    width: 12rem;
    height: 12rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .genre-tags {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .about-section,
  .services-section,
  .location-section,
  .contact-section {
    padding: 3rem 0;
  }
  
  .profile-image {
    width: 12rem;
    height: 12rem;
  }
  
  .contact-profile {
    width: 10rem;
    height: 10rem;
  }
  
  .service-content,
  .contact-card-content {
    padding: 1.5rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading Animation */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Hover Effects */
.profile-image:hover,
.contact-profile:hover,
.location-img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Focus Styles for Accessibility */
.btn:focus,
.footer-link:focus {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}