/* JANZ Music Portfolio Design System */
:root {
  --bg-dark: #0b0c10;
  --bg-card: rgba(22, 24, 34, 0.75);
  --bg-card-hover: rgba(30, 34, 50, 0.9);
  --navbar-bg: rgba(11, 12, 16, 0.92);
  --primary-gold: #f39c12;
  --primary-gold-glow: rgba(243, 156, 18, 0.4);
  --accent-purple: #9b59b6;
  --accent-purple-glow: rgba(155, 89, 182, 0.4);
  --accent-cyan: #00f2fe;
  --accent-cyan-glow: rgba(0, 242, 254, 0.3);
  --text-main: #f8f9fa;
  --text-muted: #a0a5b5;
  --border-light: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.12);
  --input-bg: rgba(11, 12, 16, 0.7);
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Light Mode Overrides */
[data-theme="light"] {
  --bg-dark: #f4f6f9;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.98);
  --navbar-bg: rgba(244, 246, 249, 0.92);
  --text-main: #1a1d24;
  --text-muted: #5a6275;
  --border-light: rgba(0, 0, 0, 0.08);
  --glass-border: rgba(0, 0, 0, 0.12);
  --input-bg: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Image Copy & Download Protection */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}

/* Background Ambient Glows */
body::before, body::after {
  content: '';
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
}

body::before {
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, var(--accent-purple), transparent);
}

body::after {
  bottom: 100px;
  right: -100px;
  background: radial-gradient(circle, var(--primary-gold), transparent);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography & General Utilities */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--primary-gold) 50%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-gold {
  background: linear-gradient(135deg, #ffe066 0%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(243, 156, 18, 0.15);
  border: 1px solid rgba(243, 156, 18, 0.3);
  color: var(--primary-gold);
  backdrop-filter: blur(8px);
}

.badge-purple {
  background: rgba(155, 89, 182, 0.15);
  border-color: rgba(155, 89, 182, 0.3);
  color: #d79ef3;
}

.badge-cyan {
  background: rgba(0, 242, 254, 0.15);
  border-color: rgba(0, 242, 254, 0.3);
  color: var(--accent-cyan);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), #e67e22);
  color: #0b0c10;
  box-shadow: 0 4px 20px var(--primary-gold-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(243, 156, 18, 0.6);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-tiktok {
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--accent-cyan-glow);
}

.btn-tiktok:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 242, 254, 0.5);
}

/* Header Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.9rem 0;
  background: var(--navbar-bg);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lang-toggle, .theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(243, 156, 18, 0.12);
  border: 1px solid rgba(243, 156, 18, 0.35);
  color: var(--primary-gold);
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
}

.theme-toggle {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
}

.lang-toggle:hover, .theme-toggle:hover {
  background: var(--primary-gold);
  color: #0b0c10;
  box-shadow: 0 4px 15px var(--primary-gold-glow);
  transform: translateY(-1px);
}

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

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.logo span {
  color: var(--primary-gold);
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

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

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

/* Hero Section */
.hero {
  min-height: 100vh;
  padding-top: 8rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.6rem;
  margin: 1.2rem 0 1rem 0;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-quote {
  font-style: italic;
  font-size: 1.1rem;
  border-left: 3px solid var(--primary-gold);
  padding-left: 1rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* Hero Card Image */
.hero-image-wrapper {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: var(--transition);
}

.hero-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(11, 12, 16, 0.95), transparent);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #2ecc71;
  font-weight: 600;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 10px #2ecc71;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

/* Sections Styling */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

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

.section-header p {
  color: var(--text-muted);
  margin-top: 0.8rem;
  font-size: 1.1rem;
}

/* Story Section */
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.story-img-container {
  position: relative;
}

.story-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.story-content h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.story-content p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.story-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.highlight-box {
  background: var(--bg-card);
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
}

.highlight-box i {
  font-size: 1.5rem;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.highlight-box h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.highlight-box p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* Acts / Performance Formats */
.acts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.act-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.act-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: rgba(243, 156, 18, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.act-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(243, 156, 18, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.act-icon i {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", sans-serif;
  font-weight: 900;
}

.act-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.act-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.act-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.act-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.act-features i {
  color: var(--primary-gold);
}

/* TikTok Live Spotlight */
.tiktok-banner {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.1) 0%, rgba(155, 89, 182, 0.15) 100%);
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: 24px;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.tiktok-content h3 {
  font-size: 2.2rem;
  margin: 0.8rem 0 1rem 0;
}

.tiktok-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}

.tiktok-schedule {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.schedule-item {
  background: rgba(11, 12, 16, 0.6);
  padding: 1rem 1.4rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-item span {
  display: block;
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 600;
  text-transform: uppercase;
}

.schedule-item strong {
  font-size: 1.1rem;
}

.tiktok-visual {
  text-align: center;
  position: relative;
}

.tiktok-phone-mockup {
  width: 240px;
  height: 420px;
  margin: 0 auto;
  border-radius: 36px;
  border: 6px solid #222;
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 242, 254, 0.25);
  position: relative;
  overflow: hidden;
}

.tiktok-phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.tiktok-live-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff0050;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  letter-spacing: 1px;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  border: 1px solid var(--glass-border);
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 12, 16, 0.85), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Social & Contact Hub */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.social-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--bg-card);
  padding: 1.4rem 1.8rem;
  border-radius: 18px;
  border: 1px solid var(--glass-border);
  text-decoration: none;
  color: var(--text-main);
  transition: var(--transition);
}

.social-card:hover {
  transform: translateX(8px);
  background: var(--bg-card-hover);
  border-color: rgba(243, 156, 18, 0.4);
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.social-icon.instagram { background: rgba(225, 48, 108, 0.15); color: #e1306c; }
.social-icon.tiktok { background: rgba(0, 242, 254, 0.15); color: #00f2fe; }
.social-icon.facebook { background: rgba(24, 119, 242, 0.15); color: #1877f2; }

.social-info h4 { font-size: 1.1rem; }
.social-info p { font-size: 0.9rem; color: var(--text-muted); }

/* Booking Form */
.booking-form-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

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

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

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--input-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.98rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 12px var(--primary-gold-glow);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border-light);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

footer p {
  margin-top: 0.5rem;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid, .story-grid, .tiktok-banner, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .acts-grid, .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card {
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .acts-grid, .gallery-grid, .story-highlights {
    grid-template-columns: 1fr;
  }

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

  .tiktok-banner {
    padding: 2rem;
  }

  .tiktok-schedule {
    flex-direction: column;
    gap: 0.8rem;
  }
}
