/* =============================================
   DJ OOWWEE - Dark & Neon Theme
   ============================================= */

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

:root {
  --bg: #0a0a0a;
  --surface: #111118;
  --surface-2: #1a1a2e;
  --neon-cyan: #00f0ff;
  --neon-pink: #ff00e5;
  --neon-purple: #b000ff;
  --text: #ffffff;
  --text-muted: #a0a0b0;
  --border: #2a2a3a;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.2);
  --glow-pink: 0 0 20px rgba(255, 0, 229, 0.5), 0 0 40px rgba(255, 0, 229, 0.2);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background-color 0.3s, backdrop-filter 0.3s, padding 0.3s;
}

.navbar.scrolled {
  background-color: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  filter: invert(1) drop-shadow(0 0 8px rgba(0, 240, 255, 0.5));
  transition: filter 0.3s;
}

.nav-logo-img:hover {
  filter: invert(1) drop-shadow(0 0 16px rgba(0, 240, 255, 0.8));
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  transition: width 0.3s;
}

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

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

.nav-cta {
  background: var(--neon-cyan);
  color: var(--bg) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: box-shadow 0.3s, transform 0.2s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  box-shadow: var(--glow-cyan);
  transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

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

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

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

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--neon-cyan);
  color: var(--bg);
}

.btn-primary:hover {
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.8rem;
  background: transparent;
  color: var(--neon-pink);
  border: 1px solid var(--neon-pink);
}

.btn-sm:hover {
  background: rgba(255, 0, 229, 0.1);
  box-shadow: var(--glow-pink);
  transform: translateY(-1px);
}

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

/* Video Background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.6) 40%, rgba(10, 10, 10, 0.85) 75%, rgba(10, 10, 10, 0.95) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255, 0, 229, 0.08) 0%, transparent 50%);
}

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

.hero-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.4));
  animation: logoPulse 4s ease-in-out infinite alternate;
}

@keyframes logoPulse {
  from { filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.4)); }
  to { filter: drop-shadow(0 0 35px rgba(0, 240, 255, 0.7)); }
}

.hero-tagline-main {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 12rem);
  line-height: 0.95;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.neon-text {
  display: block;
  color: var(--text);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.3);
}

.neon-text.accent {
  color: var(--neon-cyan);
  text-shadow:
    0 0 20px rgba(0, 240, 255, 0.6),
    0 0 40px rgba(0, 240, 255, 0.3),
    0 0 80px rgba(0, 240, 255, 0.15);
  animation: neonPulse 3s ease-in-out infinite alternate;
}

@keyframes neonPulse {
  from {
    text-shadow:
      0 0 20px rgba(0, 240, 255, 0.6),
      0 0 40px rgba(0, 240, 255, 0.3),
      0 0 80px rgba(0, 240, 255, 0.15);
  }
  to {
    text-shadow:
      0 0 30px rgba(0, 240, 255, 0.8),
      0 0 60px rgba(0, 240, 255, 0.5),
      0 0 120px rgba(0, 240, 255, 0.25),
      0 0 160px rgba(0, 240, 255, 0.1);
  }
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  letter-spacing: 3px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Brand Logos Strip */
.hero-brands {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.brands-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.brands-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
  filter: brightness(1.2);
}

.brand-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--neon-cyan);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 20px; opacity: 0.3; }
}

/* --- PHOTO RECAP --- */
.recap {
  background: var(--bg);
}

/* Recap Event Header */
.recap-event-header {
  text-align: center;
  margin: 60px auto 24px;
  max-width: 900px;
}

.recap-event-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 4px;
}

.recap-event-venue {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 2px;
}

/* Recap Video Grid */
.recap-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.recap-video-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.recap-video-card:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 0 25px rgba(255, 0, 229, 0.1);
}

.recap-video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}

.recap-video-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 4px;
  pointer-events: none;
}

@media (max-width: 480px) {
  .recap-video-grid {
    gap: 6px;
  }

  .recap-video-label {
    font-size: 0.8rem;
    bottom: 8px;
    left: 8px;
  }
}

/* Recap Video Feature */
.recap-video-feature {
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.recap-video-feature:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.1);
}

.recap-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.recap-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recap-video-info {
  padding: 16px 20px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  gap: 16px;
}

.recap-video-location {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-pink);
  background: rgba(255, 0, 229, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
  white-space: nowrap;
}

.recap-video-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--text);
}

.recap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.recap-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}

.recap-item.large {
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.recap-item:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-4px);
}

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

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

.recap-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.recap-overlay span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.recap-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 32px;
}

.recap-note a {
  color: var(--neon-cyan);
  transition: text-shadow 0.3s;
}

.recap-note a:hover {
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

@media (max-width: 768px) {
  .recap-grid {
    grid-template-columns: 1fr;
  }

  .recap-item.large {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .recap-item {
    aspect-ratio: 4 / 3;
  }

  .recap-overlay {
    opacity: 1;
  }

  .hero-logo {
    width: 80px;
    height: 80px;
  }
}

/* --- SECTIONS --- */
.section {
  padding: 100px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 16px;
}

.highlight {
  color: var(--neon-cyan);
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

/* --- EVENTS --- */
.events {
  background: var(--surface);
}

.events-grid {
  display: grid;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 48px;
}

.event-card {
  display: flex;
  gap: 24px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.event-card:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 0 30px rgba(255, 0, 229, 0.1);
  transform: translateY(-4px);
}

.event-date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 80px;
  border: 1px solid var(--neon-pink);
  border-radius: 8px;
  background: rgba(255, 0, 229, 0.05);
}

.event-month {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--neon-pink);
  text-transform: uppercase;
}

.event-day {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
}

.event-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 6px;
}

.event-venue {
  font-weight: 600;
  color: var(--neon-cyan);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.event-location {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.event-time {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.event-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* --- MIXES --- */
.mixes {
  background: var(--bg);
}

.mixes-grid {
  max-width: 800px;
  margin: 0 auto;
}

.mix-embed {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  padding: 4px;
  transition: border-color 0.3s;
}

.mix-embed:hover {
  border-color: var(--neon-cyan);
}

.mix-embed iframe {
  display: block;
  border-radius: 6px;
}

.mixes-cta {
  text-align: center;
  margin-top: 32px;
}

/* --- SUBSCRIBE --- */
.subscribe {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.subscribe::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(0, 240, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.subscribe::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 0, 229, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.subscribe-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.subscribe-form {
  margin-top: 32px;
}

.form-group {
  display: flex;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.form-group:focus-within {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.form-input {
  flex: 1;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--surface-2);
  border: none;
  color: var(--text);
  outline: none;
}

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

.form-btn {
  border-radius: 0;
  white-space: nowrap;
  padding: 16px 28px;
}

.form-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- FOOTER --- */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 4px;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.3s;
}

.footer-socials a:hover {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

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

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 24px;
    transition: right 0.35s ease;
    border-left: 1px solid var(--border);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .event-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-date {
    flex-direction: row;
    gap: 8px;
    width: auto;
    height: auto;
    padding: 8px 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .form-group {
    flex-direction: column;
  }

  .form-btn {
    border-radius: 0 0 6px 6px;
  }
}

@media (max-width: 480px) {
  .hero-sub {
    font-size: 0.85rem;
    letter-spacing: 1px;
  }

  .section {
    padding: 70px 0;
  }

  .event-card {
    padding: 20px;
  }
}

/* --- OVERLAY for mobile nav --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* --- ACTIVE NAV LINK --- */
.active-link {
  color: var(--neon-cyan) !important;
}

/* --- BRANDS PAGE --- */
.brands-hero {
  background: var(--surface);
  padding: 60px 0 80px;
}

.brand-section {
  background: var(--bg);
}

.brand-section:nth-child(even) {
  background: var(--surface);
}

.brand-card {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.brand-card.reverse {
  flex-direction: row-reverse;
}

.brand-card-logo {
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.brand-card-logo:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

.brand-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-card-info {
  flex: 1;
}

.brand-card-name {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 4px;
}

.brand-card-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--neon-cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.brand-card-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.brand-card-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.detail-item {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-pink);
  min-width: 80px;
}

.detail-value {
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .brand-card,
  .brand-card.reverse {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .brand-card-logo {
    width: 200px;
    height: 200px;
    padding: 30px;
    margin: 0 auto;
  }

  .brand-card-name {
    font-size: 2.5rem;
  }

  .detail-item {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .detail-label {
    min-width: auto;
  }

  .brand-card-info .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- TRIPS PAGE --- */
.trips-hero {
  background: var(--surface);
  padding: 60px 0 80px;
}

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

.trip-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 48px 32px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
}

.trip-link-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.1);
  transform: translateY(-6px);
}

.trip-flag {
  font-size: 3.5rem;
  line-height: 1;
}

.trip-link-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--text);
}

.trip-link-details {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.trip-link-cta {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-top: 8px;
  transition: letter-spacing 0.3s;
}

.trip-link-card:hover .trip-link-cta {
  letter-spacing: 4px;
}

@media (max-width: 600px) {
  .trips-grid {
    grid-template-columns: 1fr;
  }
}
