/*!***********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/components/header/site-header.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************/
/*
 * Header styles that lived as an inline <style> block at the top of
 * /home/norbi/getticket/views.archived/client/_header.pug (~526 lines).
 *
 * The public /css/navbar.css served by Express covers the .navbar / .nav-*
 * skeleton, but the Pug header inlined a bunch of additional rules — search
 * toggle visibility, mobile search overlay, venues + language + user
 * dropdown specifics, responsive breakpoints, dark theme tweaks — that
 * weren't in the standalone stylesheet. Without these, the React port
 * shows the desktop search AND the mobile overlay simultaneously, and the
 * venues button loses its hover/badge styling. Extracted verbatim here.
 *
 * Source: views.archived/client/_header.pug lines 107..632.
 */
  /* Logo styles */
  .logo-wide {
    height: 42px;
    width: auto;
  }

  .logo-icon {
    display: none;
    height: 36px;
    width: 36px;
    border-radius: 8px;
  }

  /* Dark logo shown by default (dark navbar) */
  .logo-dark {
    display: block;
  }

  .logo-light {
    display: none;
  }

  /* Search toggle button (mobile only) */
  .search-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .search-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
  }

  .search-toggle i {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
  }

  /* Mobile search overlay */
  .mobile-search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1100;
    padding: 0 1rem;
    align-items: center;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
  }

  .mobile-search-overlay.active {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-search-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .mobile-search-input {
    flex: 1;
    height: 42px;
    padding: 0 1rem;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    outline: none;
    transition: all 0.2s ease;
  }

  .mobile-search-input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.4);
  }

  .mobile-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }

  .mobile-search-input:focus {
    border-color: #dc2626;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
  }

  .mobile-search-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .mobile-search-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
  }

  /* For Venues Dropdown */
  .venues-dropdown {
    position: relative;
  }

  .venues-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .venues-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
  }

  .venues-dropdown-toggle i {
    font-size: 0.85rem;
    color: #f87171;
  }

  .venues-dropdown-toggle .dropdown-arrow {
    font-size: 0.65rem;
    margin-left: 0.15rem;
    transition: transform 0.2s ease;
    color: rgba(255, 255, 255, 0.7);
  }

  .venues-dropdown:hover .venues-dropdown-toggle .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu.venues-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: #121212;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1001;
    overflow: hidden;
    backdrop-filter: blur(20px);
  }

  .venues-dropdown:hover .venues-menu,
  .venues-dropdown:focus-within .venues-menu {
    opacity: 1;
    visibility: visible;
  }

  .venue-menu-item {
    display: flex !important;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1rem;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.15s ease;
  }

  .venue-menu-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
  }

  .venue-menu-item .dropdown-icon {
    width: 20px;
    text-align: center;
    color: #f87171;
  }

  .venue-menu-item .dropdown-icon i {
    font-size: 0.85rem;
  }

  /* FREE Badge */
  .free-badge {
    background: #22c55e;
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  /* Language Dropdown Styles */
  .language-dropdown {
    position: relative;
  }

  .language-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .language-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
  }

  .flag-icon {
    width: 18px;
    height: 13px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 2px;
  }

  .language-code {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
  }

  .dropdown-arrow {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.2s ease;
  }

  .language-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu.language-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: #121212;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1001;
    overflow: hidden;
    backdrop-filter: blur(20px);
  }

  .language-dropdown:hover .language-menu,
  .language-dropdown:focus-within .language-menu,
  .language-menu.show {
    opacity: 1;
    visibility: visible;
  }

  .language-menu .language-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.15s ease;
  }

  .language-menu .language-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
  }

  .language-menu .language-item.active {
    background: rgba(220, 38, 38, 0.15);
    color: #f87171;
    font-weight: 600;
  }

  .language-item .checkmark {
    margin-left: auto;
    color: #4ade80;
    font-weight: 700;
  }

  /* User Dropdown Styles */
  .user-dropdown {
    position: relative;
  }

  .user-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #dc2626;
    border: none;
    color: white;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .user-dropdown-toggle:hover {
    background: #b91c1c;
  }

  .user-dropdown-toggle i {
    font-size: 0.85rem;
  }

  .user-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: #121212;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
    overflow: hidden;
    backdrop-filter: blur(20px);
  }

  .user-dropdown:hover .dropdown-menu,
  .user-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }

  .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.15s ease;
  }

  .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
  }

  .dropdown-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
  }

  .dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.25rem 0;
  }

  .logout-item:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
  }

  /* Nav Right Layout */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Login button */
  .login-button {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  }

  .login-button:hover {
    filter: brightness(1.1);
    color: white;
    transform: translateY(-1px);
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    /* Show icon logo, hide wide logo */
    .logo-wide {
      display: none !important;
    }
    .logo-icon {
      display: block !important;
    }

    /* Show search toggle, hide desktop search */
    .nav-center {
      display: none;
    }
    .search-toggle {
      display: flex;
    }
    .mobile-search-overlay {
      display: flex;
    }

    .venues-dropdown-text {
      display: none;
    }

    .language-code {
      display: none;
    }

    .username {
      display: none;
    }

    .dropdown-menu {
      min-width: 160px;
    }

    .dropdown-item {
      padding: 0.6rem 0.9rem;
      font-size: 0.8rem;
    }

    .nav-right {
      gap: 0.4rem;
    }
  }

  @media (max-width: 480px) {
    .venues-dropdown-toggle,
    .language-dropdown-toggle,
    .user-dropdown-toggle,
    .login-button,
    .search-toggle {
      padding: 0.4rem 0.6rem;
      font-size: 0.8rem;
      width: 34px;
      height: 34px;
    }

    .logo-icon {
      height: 32px !important;
      width: 32px !important;
    }

    .mobile-search-overlay {
      height: 56px;
      padding: 0 0.75rem;
    }

    .mobile-search-input {
      height: 38px;
      font-size: 0.9rem;
    }

    .mobile-search-close {
      width: 38px;
      height: 38px;
    }
  }

  /* Dark theme is now the default - no landing-page-specific overrides needed */


