/* ===============================
   HEADER & NAVIGATION STYLES
   Hard Dance UK – custom header
   =============================== */

header.header-wrapper {
  background: #020617;                 /* deep navy */
  padding: 1em 2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #111827;
}

/* Logo */
header.header-wrapper .logo img {
  height: 40px;
  display: block;
}

/* Search Form (desktop) */
header.header-wrapper form {
  flex-grow: 1;
  margin: 0 2em;
}

header.header-wrapper form input[type="text"],
header.header-wrapper form input[type="search"],
header.header-wrapper form .form-control[type="text"],
header.header-wrapper form .form-control[type="search"] {
  width: 100%;
  padding: 0.95em 1.2em !important;
  font-size: 1.2rem !important;
  border-radius: 8px !important;
  background: #ffffff !important;      /* white bar */
  color: #111827 !important;           /* dark text */
  border: 1px solid #111827 !important;
  line-height: 1.25 !important;
  height: auto !important;
  box-shadow: none !important;
}

/* Icons (account, basket) */
header.header-wrapper .icons {
  display: flex;
  gap: 1em;
  align-items: center;
}

header.header-wrapper .icons a {
  color: #e5e7eb !important;
  text-decoration: none;
}

header.header-wrapper .icons a:hover {
  color: #ffffff !important;
}

/* icon size */
header.header-wrapper .icons i {
  font-size: 2rem !important;
  line-height: 1 !important;
  display: inline-block;
}

/* Burger button – icon only, no block */
.nav-toggle {
  display: none;                        /* shown in mobile via media query */
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: #e5e7eb;
  align-items: center;
  justify-content: center;
}

.nav-toggle i {
  font-size: 2rem;
  color: #e5e7eb;                       /* same as other icons */
}

.nav-toggle:hover i {
  color: #ffffff;
}

/* Main Navigation – desktop */
.nav-main {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 0.5em;
  background: #020617;                  /* same as header */
}

/* root menu bar */
.nav-main > ul {
  list-style: none;
  display: flex;
  gap: 1.5em;
  margin: 0;
  padding: 0.3em 0;
}

.nav-main > ul > li {
  position: relative;
}

/* desktop links */
.nav-main > ul > li > a {
  color: #dbeafe;                        /* light blue, not grey */
  text-decoration: none;
  padding: 0.5em 0.75em;
  display: block;
  font-weight: 600;
  font-size: 1.5rem;                     /* your original size */
  transition: color 0.3s ease;
}

.nav-main > ul > li > a:hover {
  color: #ffffff;
}

/* Dropdown menu (Styles) */
.nav-main > ul > li > ul {
  display: none;
  position: absolute;
  background: #020617;
  padding: 0.5em 0;
  top: 100%;
  left: 0;
  z-index: 999;
  min-width: 200px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.7);
  border: 1px solid #111827;
}

/* show dropdown on hover (desktop) */
.nav-main > ul > li:hover > ul {
  display: block;
}

.nav-main > ul > li > ul > li > a {
  display: block;
  padding: 0.6em 1em;
  color: #ffffff !important;
  white-space: nowrap;
  font-size: 1.3rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-main > ul > li > ul > li > a:hover {
  background: #020b1a !important;
  color: #ffffff !important;
}

/* Mini search INSIDE mobile menu (hidden on desktop) */
.nav-main .mobile-search {
  display: none;
  width: 100%;
  padding: 0.5em 1em;
  box-sizing: border-box;
}

.nav-main .mobile-search form {
  margin: 0;
}

.nav-main .mobile-search input[type="text"] {
  width: 100%;
  padding: 0.7em 0.9em;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #111827;
  background: #ffffff;
  color: #111827;
}

/* ===============================
   Mobile Responsive
   =============================== */

@media (max-width: 992px) {
  header.header-wrapper {
    flex-direction: row;
    align-items: center;
  }

  /* hide big search on mobile */
  header.header-wrapper form {
    display: none;
  }

  /* logo left, icons + burger right */
  header.header-wrapper .logo {
    order: 1;
  }

  header.header-wrapper .icons {
    order: 2;
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
    margin-left: 0.5em;
  }

  .nav-main {
    justify-content: flex-start;
    width: 100%;
    order: 4;
  }

  /* hide menu by default on mobile */
  .nav-main > ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    background: #020617;
    border-top: 1px solid #111827;
    display: none;
  }

  /* show when burger toggles .is-open */
  .nav-main.is-open > ul {
    display: flex;
  }

  .nav-main > ul > li {
    width: 100%;
  }

  .nav-main > ul > li > a {
    width: 100%;
    font-size: 1.2rem;
    padding: 0.8em 1em;
  }

  /* dropdown inside mobile list */
  .nav-main > ul > li > ul {
    position: static;
    box-shadow: none;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .nav-main > ul > li > ul > li > a {
    padding-left: 2em;
    font-size: 1.1rem;
  }

  /* show mini search at top of menu */
  .nav-main .mobile-search {
    display: block;
  }
}
<style>
  /* Hard Dance UK – global modal styling */

  .modal-backdrop.in {
    background-color: #020617;
    opacity: 0.85;
  }

  .modal-dialog {
    margin-top: 60px;
  }

  .modal-content {
    background: #020617;
    border-radius: 16px;
    border: 1px solid #111827;
    box-shadow: 0 20px 60px rgba(0,0,0,0.9);
    color: #e5e7eb;
  }

  .modal-header {
    border-bottom: 1px solid #111827;
    padding: 14px 18px;
  }

  .modal-header .close {
    color: #9ca3af;
    opacity: 0.8;
  }

  .modal-header .close:hover {
    color: #f9fafb;
    opacity: 1;
  }

  .modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #f9fafb;
  }

  .modal-body {
    padding: 16px 18px 18px;
    font-size: 14px;
    color: #d1d5db;
  }

  .modal-footer {
    border-top: 1px solid #111827;
    padding: 12px 18px 14px;
  }

  .modal-footer .btn-primary {
    border-radius: 999px;
    padding: 7px 20px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background-color: #22d3ee;
    border-color: #22d3ee;
    color: #020617;
    box-shadow: 0 10px 30px rgba(34,211,238,0.4);
  }

  .modal-footer .btn-primary:hover {
    background-color: #06b6d4;
    border-color: #06b6d4;
  }

  /* Comment window panel body */
  .windowPanel {
    background:#020617;
    border-radius:16px;
    border:1px solid #111827;
    box-shadow:0 18px 38px rgba(0,0,0,0.9);
    padding:16px 18px 18px;
  }
</style>
