/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:      #00c6d4;
  --teal-lt:   #33d6de;
  --purple:    #a855f7;
  --purple-dk: #7c3aed;
  --grad:      linear-gradient(135deg, #00c6d4 0%, #7b5ea7 50%, #a855f7 100%);
  --grad-h:    linear-gradient(135deg, #33d6de 0%, #9b7bca 50%, #c084fc 100%);
  --dark:      #0a0a0f;
  --surface:   #12121a;
  --surface2:  #1a1a26;
  --border:    #252535;
  --text:      #f0f0f0;
  --muted:     #888;
  --white:     #ffffff;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== NAVBAR ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
}

/* Logo wrapper — background matches navbar so white bg on PNG is invisible */
.nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  background: #0a0a0f;
  border-radius: 6px;
  padding: 2px 6px;
}

/* Logo img — no blend mode, no filter = 100% original colours */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  pointer-events: none;
}

nav ul {
  display: flex;
  gap: 32px;
}

nav ul li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.5px;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 4px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--grad);
  transition: width 0.25s;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--white);
}

nav ul li a:hover::after,
nav ul li a.active::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.hero-bg[src] { transform: none; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,15,0.3) 0%, rgba(10,10,15,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(240,240,240,0.7);
  max-width: 560px;
  margin: 0 auto 36px;
}

.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--grad);
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  background: var(--grad-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168,85,247,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

.scroll-hint::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--muted), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ===== SECTION LAYOUT ===== */
.section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 64px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== GENRE CARDS (Portfolio) ===== */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.genre-card {
  position: relative;
  height: 420px;
  overflow: hidden;
  cursor: pointer;
}

.genre-card:first-child {
  grid-column: span 2;
  height: 520px;
}

.genre-card img,
.genre-card .genre-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.genre-card .genre-bg {
  background-size: cover;
  background-position: center;
}

.genre-card:hover img,
.genre-card:hover .genre-bg { transform: scale(1.06); }

.genre-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 60%);
  transition: background 0.4s;
}

.genre-card:hover .genre-overlay {
  background: linear-gradient(to top, rgba(0,198,212,0.55) 0%, rgba(168,85,247,0.2) 60%);
}

.genre-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 36px;
  z-index: 2;
}

.genre-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  display: block;
}

.genre-info h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.genre-info p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  max-width: 400px;
}

/* ===== SPOTIFY EMBED ===== */
.spotify-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.spotify-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.spotify-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.spotify-text p { color: var(--muted); margin-bottom: 28px; }

.spotify-embed iframe {
  border-radius: 12px;
  width: 100%;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,198,212,0.12);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.service-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

.service-price {
  margin-top: 24px;
  font-size: 0.8rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  border-radius: 8px;
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--teal);
  border-radius: 8px;
  z-index: -1;
}

.about-content .section-tag { display: block; margin-bottom: 12px; }

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 24px;
  line-height: 1.1;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.highlight-item {
  border-left: 2px solid var(--teal);
  padding-left: 16px;
}

.highlight-item strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

.highlight-item span { font-size: 0.8rem; color: var(--muted); }

/* ===== BOOKING FORM ===== */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.booking-info h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.booking-info p { color: var(--muted); margin-bottom: 32px; font-size: 0.95rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,198,212,0.15);
}

.form-group select option { background: var(--dark); }

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

/* ===== FOOTER ===== */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-brand .nav-logo {
  font-size: 1.4rem;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p { color: var(--muted); font-size: 0.875rem; max-width: 280px; line-height: 1.7; }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: var(--muted);
  font-size: 0.875rem;
  transition: color 0.25s;
}

.footer-col ul li a:hover { color: var(--teal); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  transition: all 0.25s;
}

.social-link:hover {
  background: var(--grad);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.8rem; color: var(--muted); }

.footer-bottom a { color: var(--teal); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 160px 24px 80px;
  text-align: center;
  background: linear-gradient(to bottom, var(--surface) 0%, var(--dark) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero .section-tag { display: block; margin-bottom: 12px; }

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p { color: var(--muted); max-width: 500px; margin: 0 auto; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--grad);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(168,85,247,0.35);
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ===== DIVIDER ===== */
.divider {
  width: 48px; height: 3px;
  background: var(--grad);
  margin: 16px 0 24px;
  border-radius: 2px;
}
.divider-center { margin: 16px auto 24px; }

/* ===== FADE IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== GLOW ACCENT (decorative) ===== */
.hero::before {
  content: '';
  position: absolute;
  top: 20%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,198,212,0.08) 0%, rgba(168,85,247,0.06) 50%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .genre-grid { grid-template-columns: 1fr; }
  .genre-card:first-child { grid-column: span 1; height: 380px; }
  .genre-card { height: 320px; }
  .about-grid,
  .booking-grid,
  .spotify-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap::after { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav ul {
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(10,10,15,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
  }
  nav ul.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  nav ul li a { display: block; padding: 14px 28px; font-size: 1rem; }
  nav ul li a::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .form-card { padding: 28px 20px; }
  .about-highlights { grid-template-columns: 1fr; }
}
