/* ==========================================================================
   DJ Nélise — shared stylesheet
   Used by every page. Add page-specific sections at the bottom, and prefer
   a modifier class (e.g. .hero--compact) over duplicating a whole block.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --bg: #000;
  --primary: #BF00FF;
  --secondary: #9437FF;
  --accent: #74C5FA;
  --text: #ffffff;
  --body-font: "Libre Franklin", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --headline-font: "Boldonse", "Libre Franklin", sans-serif;
  --shadow-neon: 0 0 20px rgba(191, 0, 255, 0.7), 0 0 40px rgba(191, 0, 255, 0.4);
  --max-width: 1180px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
html, body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, rgba(191,0,255,0.25), #000 50%), #000;
  color: var(--text);
  font-family: var(--body-font);
  line-height: 1.6;
}

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

main {
  margin-top: 70px;
}

/* --------------------------------------------------------------------------
   3. Header / navigation
   -------------------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(191,0,255,0.2);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.25rem;
  gap: 1rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-wrap img {
  height: 42px;
}

/* direct child only — a bare `nav ul` also matches .dropdown-menu and would
   lay the submenu out as a row */
nav > ul {
  display: flex;
  align-items: baseline; /* the flex .dropdown-toggle sits 2px high without
                            this, because inline <a> siblings are baseline-
                            positioned inside the li's 16px strut and it is
                            not. `center` leaves 0.7px off; baseline is exact. */
  gap: 1.5rem;
  list-style: none;
}

nav a {
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s ease;
  box-shadow: var(--shadow-neon);
}

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

/* --------------------------------------------------------------------------
   4. Footer
   -------------------------------------------------------------------------- */
footer {
  background: #000;
  border-top: 1px solid rgba(191,0,255,0.1);
  padding: 1.5rem 1.25rem 4rem;
  text-align: center;
  color: rgba(255,255,255,0.45);
}

/* --------------------------------------------------------------------------
   5. Shared components
   -------------------------------------------------------------------------- */
.btn-primary {
  /* <button> inherits neither font-family nor font-size from body, so these
     are needed for buttons, links and spans carrying this class to match */
  display: inline-block;
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
  background: radial-gradient(circle, rgba(191,0,255,1) 0%, rgba(148,55,255,1) 60%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9999px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 20px rgba(191,0,255,0.7);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(191,0,255,0.9);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(191,0,255,0.5);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  backdrop-filter: blur(10px);
}

.highlight-pill {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  background: rgba(148,55,255,0.12);
  border: 1px solid rgba(191,0,255,0.7);
  padding: 0.4rem 0.75rem 0.4rem 0.4rem;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(191,0,255,0.4);
}

.static-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle, #74C5FA 0%, rgba(116,197,250,0) 70%);
  box-shadow: 0 0 12px rgba(116,197,250,0.8);
  flex: 0 0 auto;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(116,197,250,0.2);
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cursor-dot {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(191,0,255,1) 0%, rgba(191,0,255,0) 70%);
  opacity: 0.9;
  transition: transform 0.04s ease-out;
}

/* --------------------------------------------------------------------------
   6. Section shell
   -------------------------------------------------------------------------- */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem;
}

.section-title {
  font-family: var(--headline-font);
  font-size: 2rem;
  margin-bottom: 1.7rem;
  text-shadow: 0 0 16px rgba(191,0,255,0.5);
}

.section-subtitle {
  margin-bottom: 1.2rem;
  color: rgba(255,255,255,0.55);
  max-width: 640px;
}

/* --------------------------------------------------------------------------
   7. Hero
   Default sizing = home page. Sub-pages add .hero--compact.
   -------------------------------------------------------------------------- */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.25rem 0rem;
  gap: 2.5rem;
  align-items: center;
}

.hero--compact {
  min-height: 78vh;
}

.hero-heading {
  font-family: var(--headline-font);
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  line-height: 1.8em;
  text-shadow: 0 0 25px rgba(191,0,255,0.6);
}

.hero--compact .hero-heading {
  font-size: clamp(2.2rem, 3.6vw, 3.1rem);
  line-height: 1.8em;
}

.hero-slogan {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.hero-subtext {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.hero-right {
  position: relative;
}

.hero-card {
  background: radial-gradient(circle at top, rgba(148,55,255,0.35), rgba(0,0,0,0.95));
  border: 1px solid rgba(191,0,255,0.2);
  border-radius: 1.5rem;
  padding: 1.25rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(191,0,255,0.45);
}

.hero-card h3 {
  font-family: var(--headline-font);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.hero-card img {
  width: 100%;
  border-radius: 1rem;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-card-caption {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

.hero-avatar {
  position: absolute;
  top: -82px;
  right: -38px;
  width: 230px;
  max-width: 45vw;
  filter: drop-shadow(0 0 20px rgba(191,0,255,0.8));
}

/* --------------------------------------------------------------------------
   8. Content blocks
   -------------------------------------------------------------------------- */

/* About + animated wave */
.about-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.5rem;
  align-items: center;
}

.about-wave {
  height: 160px;
  background: radial-gradient(circle, rgba(191,0,255,0.15) 0, rgba(0,0,0,0) 70%);
  position: relative;
}

.wave-line {
  position: absolute;
  width: 100%;
  height: 100%;
}

.wave-line svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 12px rgba(191,0,255,0.6));
}

.wave-line path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: draw 5s linear infinite;
}

@keyframes draw {
  0%   { stroke-dashoffset: 800; }
  100% { stroke-dashoffset: 0; }
}

/* Genre cards */
.genre-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.genre-card {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(191,0,255,0.7);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 0 16px rgba(191,0,255,0.1);
}

.genre-card h4 {
  margin-top: 0;
}

.genre-card:nth-child(1) {
  background: radial-gradient(circle, rgba(191,0,255,0.12), rgba(0,0,0,0));
}

.genre-card:nth-child(2) {
  background: radial-gradient(circle, rgba(148,55,255,0.12), rgba(0,0,0,0));
}

.genre-card:nth-child(3) {
  background: radial-gradient(circle, rgba(116,197,250,0.09), rgba(0,0,0,0));
}

/* Occasions */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}

.occasion {
  display: flex;
  flex-direction: column; /* lets .occasion-cta pin itself to the bottom */
  background: repeating-linear-gradient(135deg, rgba(191,0,255,0.2) 0 15px, rgba(0,0,0,0.4) 15px 30px);
  border: 1px solid rgba(191,0,255,0.7);
  border-radius: 1rem;
  padding: 1rem;
  min-height: 130px;
  box-shadow: 0 0 12px rgba(191,0,255,0.06);
}

/* Cards that link to a detail page — the whole card is the click target */
.occasion--link {
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.occasion--link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* hover only on real pointers, so tapping doesn't leave a card stuck lifted */
@media (hover: hover) and (pointer: fine) {
  .occasion--link:hover {
    transform: translateY(-4px);
    border-color: rgba(191,0,255,1);
    box-shadow: 0 0 26px rgba(191,0,255,0.5);
  }

  .occasion--link:hover .occasion-cta {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(191,0,255,0.9);
  }
}

/* the UA default h4 margin-top (1.33em) doubles the gap the card padding
   already provides — drop it and let the padding set the spacing */
.occasion h4 {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.occasion-cta {
  margin-top: auto;   /* push to the bottom so CTAs line up across cards */
  align-self: center; /* ...without stretching to the card's full width */
  margin-bottom: 0.25rem;
}

/* Bulleted service list */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.9rem;
}

.service-list li {
  position: relative;
  padding-left: 1.6rem;
  color: rgba(255,255,255,0.85);
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--accent) 0%, rgba(116,197,250,0) 70%);
  box-shadow: 0 0 10px rgba(116,197,250,0.8);
}

/* Past work cards */
.past-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.past-work-card {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(191,0,255,0.7);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 16px rgba(191,0,255,0.1);
}

.past-work-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.past-work-card-body {
  padding: 1.1rem;
}

.past-work-card-body h4 {
  font-family: var(--headline-font);
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
}

.past-work-card-body p {
  margin: 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* Testimonial */
.testimonial-card {
  background: radial-gradient(circle at top, rgba(148,55,255,0.2), rgba(0,0,0,0.9));
  border: 1px solid rgba(191,0,255,0.3);
  border-radius: 1.25rem;
  padding: 1.75rem 2rem;
  max-width: 720px;
  box-shadow: 0 0 24px rgba(191,0,255,0.25);
}

.testimonial-card p.quote {
  font-size: 1.15rem;
  line-height: 1.6;
  font-style: italic;
  color: #fff;
  margin: 0 0 1rem;
}

.testimonial-card p.attribution {
  color: var(--accent);
  font-size: 0.85rem;
  margin: 0;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.9rem;
  max-width: 780px;
}

.faq-item {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(191,0,255,0.7);
  border-radius: 0.9rem;
  padding: 0.2rem 1.1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.9rem 1.6rem 0.9rem 0;
  font-weight: 500;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0.75rem;
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0 0 1rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Embedded media */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.media-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  border: 1px solid rgba(191,0,255,0.15);
}

/* --------------------------------------------------------------------------
   9. Gallery carousel
   -------------------------------------------------------------------------- */
.gallery-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(191,0,255,0.15);
  background: radial-gradient(circle, rgba(191,0,255,0.04), rgba(0,0,0,0.3));
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery-track {
  width: 100%;
  display: flex;
  transition: transform 0.5s ease;
  border-radius: inherit;
}

.gallery-slide {
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.gallery-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  display: block;
}

.gallery-controls {
  position: absolute;
  inset: auto 0 12px;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.gallery-btn {
  background: radial-gradient(circle, rgba(191,0,255,1) 0%, rgba(148,55,255,1) 60%);
  color: #fff;
  border: none;
  border-radius: 9999px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(191,0,255,0.6);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.gallery-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(191,0,255,0.9);
}

/* --------------------------------------------------------------------------
   10. Booking modal
   -------------------------------------------------------------------------- */
.booking-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle, rgba(0,0,0,0.6), rgba(0,0,0,0.95));
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.booking-modal {
  background: radial-gradient(circle at top, rgba(148,55,255,0.5), #000 60%);
  border: 1px solid rgba(191,0,255,0.4);
  border-radius: 1.4rem;
  padding: 1.5rem 1.5rem 1.2rem;
  width: min(500px, 92vw);
  box-shadow: 0 0 30px rgba(191,0,255,0.7);
  position: relative;
}

.booking-modal h3 {
  margin-top: 0;
  font-family: var(--headline-font);
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(191,0,255,0.3);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #fff;
}

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

.form-group label {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(191,0,255,0.7);
  border-radius: 0.55rem;
  padding: 0.5rem 0.6rem;
  color: #fff;
  font-family: inherit;
}

.success-msg {
  display: none;
  background: rgba(116,197,250,0.12);
  border: 1px solid rgba(116,197,250,0.3);
  padding: 0.45rem 0.65rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   11. Utilities
   -------------------------------------------------------------------------- */
.chip--accent {
  border-color: rgba(116,197,250,0.5);
}

.btn-block {
  width: 100%;
}

.stack-sm {
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   12. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    margin-top: 1.5rem;
  }
  /* mobile nav rules live in the "Mobile nav" block at the end of this file */
  .hero-avatar {
    position: static;
    margin-bottom: 1rem;
  }
  .about-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .hero-heading {
    font-size: 2.25rem;
  }
  .hero--compact .hero-heading {
    font-size: 2rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .gallery-slide {
    height: 260px;
  }
}

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown-toggle {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0;
  text-align: left; /* buttons default to center */
}

.dropdown-toggle .caret { 
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.2s ease;
  transform: translateY(1px); 
}

.has-dropdown.open .dropdown-toggle .caret,
.has-dropdown:hover .dropdown-toggle .caret { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  display: block;          /* stack items vertically */
  width: max-content;      /* grow to the longest label so nothing wraps */
  min-width: 200px;
  background: rgba(0,0,0,0.92);
  border: 1px solid rgba(191,0,255,0.3);
  border-radius: 0.75rem;
  padding: 0.5rem;
  list-style: none;
  box-shadow: 0 0 24px rgba(191,0,255,0.35);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.dropdown-menu li a:hover { background: rgba(191,0,255,0.15); }

/* the top-level underline is positioned below the link box, so inside the
   panel it hangs past the bottom edge — mark the current page instead */
.dropdown-menu li a::after { content: none; }

.dropdown-menu li a.active {
  background: rgba(191,0,255,0.18);
  color: var(--accent);
}

/* Hamburger */
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(191,0,255,0.35);
  border-radius: 0.5rem;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.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); }

/* Mobile nav (slide-in panel under the header) */
@media (max-width: 940px) {
  .hamburger { display: flex; }

  /* NOTE: `header` sets backdrop-filter, which per the Filter Effects spec
     makes it the containing block for position:fixed descendants. A fixed
     panel here resolves top/bottom against the ~67px header, not the
     viewport, and collapses to zero height. Anchor to the header with
     position:absolute instead — do not switch this back to fixed. */
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100dvh - 70px); /* 70px ≈ header height; keeps long menus scrollable */
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(191,0,255,0.2);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
  }

  nav.open {
    transform: translateX(0);
    visibility: visible;
  }

  /* stack vertically — a row here overflows the panel and pushes the
     links off-screen to the right */
  nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1.5rem;
    list-style: none;
  }

  nav ul li { width: 100%; border-bottom: 1px solid rgba(191,0,255,0.15); }

  /* display:block is required — these are inline by default, so the padding
     below wouldn't affect layout and the tap targets would overlap */
  nav ul li a,
  nav ul li .dropdown-toggle {
    display: block;
    padding: 1rem 0;
    width: 100%;
    font-size: 1rem;
  }

  /* The submenu stays expanded on mobile, so the Events row is a group label
     rather than a control: no caret, and taps do nothing. */
  .dropdown-toggle {
    pointer-events: none;
    cursor: default;
  }

  .dropdown-toggle .caret { display: none; }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: block;
    width: auto;      /* override desktop max-content — fill the panel */
    min-width: 0;
    box-shadow: none;
    border: none;
    background: rgba(191,0,255,0.06);
    margin-bottom: 0.5rem;
  }
}
