/* ==========================================================================
   DJ BOT -- Mobile DJ Service
   Main Stylesheet
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS (CSS Custom Properties)
   ========================================================================== */

:root {
  --bg-primary: #0B0F14;
  --bg-secondary: #111820;
  --bg-card: #161C26;
  --accent-blue: #00AEEF;
  --accent-blue-alt: #1DA1FF;
  --accent-blue-glow: rgba(0, 174, 239, 0.3);
  --neon-green: #2EFF7B;
  --neon-yellow: #FFD84D;
  --neon-orange: #FF8C42;
  --neon-red: #FF4D4D;
  --text-primary: #FFFFFF;
  --text-secondary: #C7CCD6;
  --text-muted: #8A8F99;
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --header-height: 90px;
}


/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* -- Selection highlight -- */
::selection {
  background-color: var(--accent-blue);
  color: var(--text-primary);
}

::-moz-selection {
  background-color: var(--accent-blue);
  color: var(--text-primary);
}

/* -- Scrollbar styling (Webkit) -- */
::-webkit-scrollbar {
  width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-blue-alt);
}


/* ==========================================================================
   3. SKIP TO CONTENT (Accessibility)
   ========================================================================== */

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-blue);
  color: var(--text-primary);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}


/* ==========================================================================
   4. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.2rem;
  color: var(--text-primary);
}

h2 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: center;
}

h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
}

p {
  margin-bottom: 1rem;
}

.accent {
  color: var(--accent-blue);
  text-shadow: 0 0 10px var(--accent-blue-glow),
               0 0 20px rgba(0, 174, 239, 0.15);
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
}


/* ==========================================================================
   5. LAYOUT UTILITIES
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 1.5rem;
}

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


/* ==========================================================================
   6. HEADER / NAVIGATION
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: transparent;
  transition: background-color 0.3s ease,
              backdrop-filter 0.3s ease,
              -webkit-backdrop-filter 0.3s ease,
              box-shadow 0.3s ease;
}

.header.scrolled {
  background-color: rgba(17, 24, 32, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* -- Logo / Vinyl Turntables -- */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vinyl {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #222 18%, transparent 18%),
    radial-gradient(circle, #444 20%, transparent 20%),
    repeating-radial-gradient(circle at center, transparent 0px, transparent 3px, rgba(40,40,40,0.6) 3px, rgba(40,40,40,0.6) 4px),
    linear-gradient(135deg, #1a1a1a 0%, #111 100%);
  border: 2px solid #333;
  box-shadow: 0 0 12px rgba(0, 174, 239, 0.3), inset 0 0 8px rgba(0,0,0,0.8);
  animation: spin-vinyl 2s linear infinite;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.vinyl:hover {
  box-shadow: 0 0 20px rgba(0, 174, 239, 0.6), inset 0 0 8px rgba(0,0,0,0.8);
}

.vinyl-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, #888 2px, var(--accent-blue) 2px, var(--accent-blue) 6px, #1a6fa0 6px);
  box-shadow: 0 0 4px rgba(0, 174, 239, 0.5);
}

@keyframes spin-vinyl {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* -- Nav links -- */
.nav-links {
  display: none;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a:focus {
  color: var(--text-primary);
}

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

/* -- Nav CTA (Book Now button) -- */
.nav-cta {
  display: inline-block;
  background-color: var(--accent-blue);
  color: var(--text-primary);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease,
              box-shadow 0.3s ease,
              transform 0.3s ease;
}

.nav-cta:hover,
.nav-cta:focus {
  background-color: var(--accent-blue-alt);
  box-shadow: 0 0 20px var(--accent-blue-glow),
              0 0 40px rgba(0, 174, 239, 0.15);
  transform: translateY(-1px);
  color: var(--text-primary);
}

/* -- Hamburger toggle (mobile) -- */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease,
              opacity 0.3s ease;
}

.nav-toggle span:nth-child(1) {
  margin-bottom: 6px;
}

.nav-toggle span:nth-child(3) {
  margin-top: 6px;
}

/* Hamburger -> X animation */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* -- Mobile nav overlay -- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(11, 15, 20, 0.97);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav a {
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 0;
  transition: color 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--accent-blue);
}

.mobile-nav .nav-cta {
  margin-top: 1rem;
  padding: 14px 36px;
  font-size: 1rem;
}


/* ==========================================================================
   7. HERO SECTION
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    ellipse at 50% 70%,
    rgba(0, 174, 239, 0.08) 0%,
    transparent 60%
  );
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* -- Equalizer bars -- Full-width dramatic visualizer -- */
.eq-container {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 220px;
  margin-bottom: 3rem;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  filter: drop-shadow(0 0 12px rgba(0, 174, 239, 0.15));
}

.eq-bar {
  flex: 1;
  min-width: 8px;
  max-width: 20px;
  border-radius: 4px 4px 0 0;
  animation: equalize 1s ease-in-out infinite alternate;
  position: relative;
}

/* Glow effect on each bar */
.eq-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  filter: blur(6px);
  opacity: 0.4;
  z-index: -1;
}

/* Color assignments — 40 bars, flat/even height, neon gradient left to right */
/* Green zone (bars 1-8) */
.eq-bar:nth-child(1) { background-color: var(--neon-green); height: 160px; animation-duration: 1.1s; animation-delay: 0s; }
.eq-bar:nth-child(2) { background-color: var(--neon-green); height: 180px; animation-duration: 0.7s; animation-delay: 0.12s; }
.eq-bar:nth-child(3) { background-color: var(--neon-green); height: 150px; animation-duration: 0.9s; animation-delay: 0.05s; }
.eq-bar:nth-child(4) { background-color: var(--neon-green); height: 190px; animation-duration: 0.6s; animation-delay: 0.18s; }
.eq-bar:nth-child(5) { background-color: var(--neon-green); height: 170px; animation-duration: 0.8s; animation-delay: 0.08s; }
.eq-bar:nth-child(6) { background-color: #6fff6a; height: 185px; animation-duration: 0.55s; animation-delay: 0.22s; }
.eq-bar:nth-child(7) { background-color: #6fff6a; height: 155px; animation-duration: 0.75s; animation-delay: 0.03s; }
.eq-bar:nth-child(8) { background-color: #a0ff5e; height: 195px; animation-duration: 0.5s; animation-delay: 0.15s; }

/* Green-Yellow transition (bars 9-14) */
.eq-bar:nth-child(9)  { background-color: #c8ff50; height: 175px; animation-duration: 0.65s; animation-delay: 0.1s; }
.eq-bar:nth-child(10) { background-color: var(--neon-yellow); height: 190px; animation-duration: 0.45s; animation-delay: 0.2s; }
.eq-bar:nth-child(11) { background-color: var(--neon-yellow); height: 160px; animation-duration: 0.85s; animation-delay: 0.06s; }
.eq-bar:nth-child(12) { background-color: var(--neon-yellow); height: 200px; animation-duration: 0.52s; animation-delay: 0.16s; }
.eq-bar:nth-child(13) { background-color: #ffe04d; height: 170px; animation-duration: 0.7s; animation-delay: 0.13s; }
.eq-bar:nth-child(14) { background-color: #ffc94d; height: 185px; animation-duration: 0.58s; animation-delay: 0.24s; }

/* Yellow-Orange transition (bars 15-20) */
.eq-bar:nth-child(15) { background-color: #ffb84d; height: 195px; animation-duration: 0.42s; animation-delay: 0.07s; }
.eq-bar:nth-child(16) { background-color: var(--neon-orange); height: 165px; animation-duration: 0.68s; animation-delay: 0.19s; }
.eq-bar:nth-child(17) { background-color: var(--neon-orange); height: 180px; animation-duration: 0.48s; animation-delay: 0.11s; }
.eq-bar:nth-child(18) { background-color: var(--neon-orange); height: 200px; animation-duration: 0.55s; animation-delay: 0.25s; }
.eq-bar:nth-child(19) { background-color: #ff7040; height: 155px; animation-duration: 0.62s; animation-delay: 0.04s; }
.eq-bar:nth-child(20) { background-color: #ff7040; height: 190px; animation-duration: 0.4s; animation-delay: 0.17s; }

/* Orange-Red transition (bars 21-28) */
.eq-bar:nth-child(21) { background-color: #ff5e3a; height: 175px; animation-duration: 0.72s; animation-delay: 0.09s; }
.eq-bar:nth-child(22) { background-color: #ff5e3a; height: 195px; animation-duration: 0.5s; animation-delay: 0.21s; }
.eq-bar:nth-child(23) { background-color: var(--neon-red); height: 160px; animation-duration: 0.82s; animation-delay: 0.02s; }
.eq-bar:nth-child(24) { background-color: var(--neon-red); height: 185px; animation-duration: 0.58s; animation-delay: 0.14s; }
.eq-bar:nth-child(25) { background-color: var(--neon-red); height: 200px; animation-duration: 0.44s; animation-delay: 0.23s; }
.eq-bar:nth-child(26) { background-color: #ff3333; height: 170px; animation-duration: 0.66s; animation-delay: 0.07s; }
.eq-bar:nth-child(27) { background-color: #ff3333; height: 190px; animation-duration: 0.48s; animation-delay: 0.18s; }
.eq-bar:nth-child(28) { background-color: #ff1a1a; height: 155px; animation-duration: 0.76s; animation-delay: 0.1s; }

/* Red back to green (bars 29-34) */
.eq-bar:nth-child(29) { background-color: #ff1a1a; height: 180px; animation-duration: 0.52s; animation-delay: 0.2s; }
.eq-bar:nth-child(30) { background-color: var(--neon-red); height: 195px; animation-duration: 0.6s; animation-delay: 0.05s; }
.eq-bar:nth-child(31) { background-color: #ff5e3a; height: 165px; animation-duration: 0.46s; animation-delay: 0.16s; }
.eq-bar:nth-child(32) { background-color: var(--neon-orange); height: 185px; animation-duration: 0.7s; animation-delay: 0.08s; }
.eq-bar:nth-child(33) { background-color: #ffc94d; height: 175px; animation-duration: 0.54s; animation-delay: 0.22s; }
.eq-bar:nth-child(34) { background-color: var(--neon-yellow); height: 195px; animation-duration: 0.64s; animation-delay: 0.03s; }

/* Back to green (bars 35-40) */
.eq-bar:nth-child(35) { background-color: #c8ff50; height: 160px; animation-duration: 0.78s; animation-delay: 0.15s; }
.eq-bar:nth-child(36) { background-color: #a0ff5e; height: 190px; animation-duration: 0.5s; animation-delay: 0.11s; }
.eq-bar:nth-child(37) { background-color: #6fff6a; height: 170px; animation-duration: 0.88s; animation-delay: 0.19s; }
.eq-bar:nth-child(38) { background-color: var(--neon-green); height: 185px; animation-duration: 0.56s; animation-delay: 0.06s; }
.eq-bar:nth-child(39) { background-color: var(--neon-green); height: 155px; animation-duration: 0.74s; animation-delay: 0.13s; }
.eq-bar:nth-child(40) { background-color: var(--neon-green); height: 180px; animation-duration: 0.62s; animation-delay: 0.01s; }

@keyframes equalize {
  0% {
    transform: scaleY(0.3);
  }
  15% {
    transform: scaleY(0.8);
  }
  30% {
    transform: scaleY(0.5);
  }
  50% {
    transform: scaleY(1);
  }
  65% {
    transform: scaleY(0.4);
  }
  80% {
    transform: scaleY(0.9);
  }
  100% {
    transform: scaleY(0.6);
  }
}

/* -- Hero CTA buttons -- */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}


/* ==========================================================================
   8. BUTTONS
   ========================================================================== */

.btn-primary {
  display: inline-block;
  background-color: var(--accent-blue);
  color: var(--text-primary);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid var(--accent-blue);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--accent-blue-alt);
  border-color: var(--accent-blue-alt);
  box-shadow: 0 0 20px var(--accent-blue-glow),
              0 0 40px rgba(0, 174, 239, 0.15);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--accent-blue);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid var(--accent-blue);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--accent-blue);
  color: var(--text-primary);
  box-shadow: 0 0 20px var(--accent-blue-glow),
              0 0 40px rgba(0, 174, 239, 0.15);
  transform: translateY(-2px);
}

/* -- Pulsing glow on Book Now CTA -- */
.btn-pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 5px var(--accent-blue-glow);
  }
  50% {
    box-shadow: 0 0 20px var(--accent-blue-glow),
                0 0 40px rgba(0, 174, 239, 0.15);
  }
}


/* ==========================================================================
   9. ABOUT SECTION
   ========================================================================== */

.about {
  background-color: var(--bg-secondary);
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.about-image {
  flex: 0 0 auto;
  order: -1;
}

.about-text {
  flex: 1;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 20px var(--accent-blue-glow),
              0 0 40px rgba(0, 174, 239, 0.15),
              0 0 60px rgba(0, 174, 239, 0.08);
  border: 3px solid var(--accent-blue);
}


/* ==========================================================================
   10. SERVICES SECTION
   ========================================================================== */

.services {
  background-color: var(--bg-primary);
}

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

.service-card {
  background-color: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: border-color 0.3s ease,
              transform 0.3s ease,
              box-shadow 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 174, 239, 0.15),
              0 8px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-blue);
}

/* Gradient border on hover via pseudo-element */
.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    var(--neon-green),
    var(--neon-yellow),
    var(--neon-orange),
    var(--neon-red)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: transparent;
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--accent-blue);
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--accent-blue);
  fill: none;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}


/* ==========================================================================
   11. SERVICE AREAS SECTION
   ========================================================================== */

.areas {
  background-color: var(--bg-secondary);
}

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

.area-card {
  background-color: var(--bg-card);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid transparent;
  transition: border-color 0.3s ease,
              transform 0.3s ease,
              box-shadow 0.3s ease;
}

.area-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-blue);
  box-shadow: 0 0 15px rgba(0, 174, 239, 0.15);
}

.area-icon {
  color: var(--accent-blue);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.area-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--accent-blue);
  fill: none;
}

.area-card h3 {
  margin-bottom: 0.5rem;
}

.area-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.travel-note {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 2rem;
  font-size: 0.9rem;
}


/* ==========================================================================
   12. GALLERY SECTION
   ========================================================================== */

.gallery {
  background-color: var(--bg-primary);
}

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

.gallery-item {
  aspect-ratio: 4 / 3;
  background-color: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.gallery-item:hover {
  box-shadow: 0 0 20px rgba(0, 174, 239, 0.15);
}

/* Neon gradient border glow on hover */
.gallery-item::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    var(--neon-green),
    var(--neon-yellow),
    var(--neon-orange),
    var(--neon-red)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

.gallery-item span,
.gallery-item .gallery-placeholder {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

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

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

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 1;
}


/* ==========================================================================
   13. BOOKING SECTION
   ========================================================================== */

.booking {
  background-color: var(--bg-secondary);
}

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

.booking-card {
  background-color: var(--bg-card);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease,
              transform 0.3s ease,
              box-shadow 0.3s ease;
}

.booking-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 174, 239, 0.15),
              0 10px 40px rgba(0, 0, 0, 0.3);
}

.booking-icon {
  color: var(--accent-blue);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.booking-icon svg {
  width: 56px;
  height: 56px;
  stroke: var(--accent-blue);
  fill: none;
}

.booking-card h3 {
  margin-bottom: 1rem;
}

.booking-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.booking-card .btn-primary {
  width: 100%;
  text-align: center;
}


/* ==========================================================================
   14. CONTACT SECTION
   ========================================================================== */

.contact {
  background-color: var(--bg-primary);
}

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

/* -- Form styles -- */
.contact-form {
  order: 1;
}

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

.form-group label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 10px var(--accent-blue-glow);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238A8F99' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background-color: var(--bg-card);
  color: var(--text-primary);
}

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

.contact-form .btn-primary {
  width: 100%;
  text-align: center;
  padding: 14px 32px;
}

.required {
  color: var(--neon-red);
  margin-left: 2px;
}

.form-success-message {
  background-color: rgba(46, 255, 123, 0.1);
  border: 1px solid var(--neon-green);
  color: var(--neon-green);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.95rem;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -- Contact info -- */
.contact-info {
  order: 2;
}

.contact-details {
  margin-bottom: 2rem;
}

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

.contact-item-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-card);
  border-radius: 50%;
  color: var(--accent-blue);
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-blue);
  fill: none;
}

.contact-item-text h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.contact-item-text p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.contact-item-text a {
  color: var(--accent-blue);
  transition: color 0.3s ease;
}

.contact-item-text a:hover {
  color: var(--accent-blue-alt);
}

/* -- Social links -- */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--bg-card);
  border-radius: 50%;
  color: var(--accent-blue);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease,
              color 0.3s ease,
              transform 0.3s ease,
              box-shadow 0.3s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-blue);
  fill: none;
  transition: stroke 0.3s ease;
}

.social-link:hover {
  background-color: var(--accent-blue);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--accent-blue-glow);
}

.social-link:hover svg {
  stroke: var(--text-primary);
}


/* ==========================================================================
   15. NEON GRADIENT DIVIDER
   ========================================================================== */

.neon-divider {
  height: 2px;
  max-width: 80%;
  margin: 0 auto;
  opacity: 0.6;
  border: none;
  background: linear-gradient(
    to right,
    var(--neon-green),
    var(--neon-yellow),
    var(--neon-orange),
    var(--neon-red),
    var(--neon-orange),
    var(--neon-yellow),
    var(--neon-green)
  );
}


/* ==========================================================================
   16. FOOTER
   ========================================================================== */

.footer {
  background-color: #0A0E13;
  padding: 3rem 1.5rem 1.5rem;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-logo img {
  height: 45px;
  width: auto;
  opacity: 0.8;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  list-style: none;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--text-primary);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social .social-link {
  width: 38px;
  height: 38px;
}

.footer-social .social-link svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}


/* ==========================================================================
   17. BACK TO TOP BUTTON
   ========================================================================== */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent-blue);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  transition: opacity 0.3s ease,
              transform 0.3s ease,
              box-shadow 0.3s ease;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-primary);
  fill: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--accent-blue-glow),
              0 0 40px rgba(0, 174, 239, 0.15);
}


/* ==========================================================================
   18. SCROLL ANIMATIONS
   ========================================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease,
              transform 0.6s ease;
}

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

.fade-in-delay-1 {
  transition-delay: 0.15s;
}

.fade-in-delay-2 {
  transition-delay: 0.3s;
}

.fade-in-delay-3 {
  transition-delay: 0.45s;
}


/* ==========================================================================
   19. RESPONSIVE -- TABLET (min-width: 768px)
   ========================================================================== */

@media (min-width: 768px) {

  :root {
    --header-height: 80px;
  }

  section {
    padding: 5rem 2rem;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  /* Hero */
  .hero-cta {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  /* About */
  .about-content {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .about-image {
    order: 0;
  }

  .about-image img {
    width: 230px;
    height: 230px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Service Areas */
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Booking */
  .booking-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: start;
  }

  .contact-form {
    order: 1;
  }

  .contact-info {
    order: 2;
  }

  /* Footer */
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer {
    padding: 3rem 2rem 1.5rem;
  }
}


/* ==========================================================================
   20. RESPONSIVE -- DESKTOP (min-width: 1024px)
   ========================================================================== */

@media (min-width: 1024px) {

  section {
    padding: 6rem 2rem;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  /* Navigation -- desktop layout */
  .nav-toggle {
    display: none;
  }

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

  .mobile-nav {
    display: none;
  }

  /* Logo / Vinyl */
  .vinyl {
    width: 75px;
    height: 75px;
  }

  .vinyl-label {
    width: 24px;
    height: 24px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Service Areas */
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  /* About */
  .about-image img {
    width: 260px;
    height: 260px;
  }
}


/* ==========================================================================
   21. RESPONSIVE -- LARGE DESKTOP (min-width: 1200px)
   ========================================================================== */

@media (min-width: 1200px) {

  .container,
  .nav-container {
    padding: 0 2rem;
  }

  .hero-content {
    padding: 0 2rem;
  }

  section {
    padding: 6rem 0;
  }

  /* Center-constrained sections */
  .about > .container,
  .services > .container,
  .areas > .container,
  .gallery > .container,
  .booking > .container,
  .contact > .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
  }
}


/* ==========================================================================
   22. REDUCED MOTION PREFERENCE
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .eq-bar {
    animation: none;
  }
}
