@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");

@font-face {
  font-family: "Big John";
  src: url("../fonts/Big John.otf") format("opentype");
}

@font-face {
  font-family: "Game Over";
  src: url("/assets/fonts/Game-Over.woff2") format("woff2");
  /* url("fonts/game-over.woff") format("woff"); */
  font-display: swap;
}

.game-over-font {
  font-family: "Game Over", sans-serif;
}

.big-john-font {
  font-family: "Big John", serif;
}

/* Reset Styles */

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

body {
  overflow-x: hidden !important;
}
/* Root Color Variables */
:root {
  --global-color-primary: #121212;
  --global-color-secondary: #383838;
  --global-color-text: #ffbb2c;
  --global-color-accent: #ff4f4f;
  --global-color-pink: #ff3c8d;
  --global-color-green: #5eff68;
  --global-color-blue: #23a9ff;
  --global-color-dark-blue: #040319;
  --bs-body-bg: #121212;
}

body {
  background-color: var(--bs-body-bg);
}

/* .game-over-font {
  font-family: "Press Start 2P", system-ui;
} */
/* Reset Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Root z-indexes */
:root {
  --z-index-hidden: -1; /* For elements that should be behind everything */
  --z-index-base: 0; /* Default stacking level */
  --z-index-content: 1; /* Regular content */
  --z-index-over-content: 2; /* Elements that should appear above normal content */
  --z-index-modal: 10; /* Modal dialogs and overlays */
  --z-index-navigation: 20; /* Navigation elements */
  --z-index-mob-nav: 24;
  --z-index-nav-btn: 25;
  --z-index-tooltip: 30; /* Tooltips and popovers */
  --z-index-notification: 40; /* Notifications and alerts */
  --z-index-max: 50; /* Maximum z-index for emergency cases */

  --z-index-bartop-image: 2; /* From .bartops-section-1-img-p */
  --z-index-scanline: 66; /* From .banner-logo (originally z-index: 66) */
  --z-index-img-move: 22; /* For .img-move */
}

/* .game-over-font {
  font-family: "Press Start 2P", system-ui;
} */

/* Navbar Theme */
.navbar .navbar-nav .nav-link {
  color: var(--global-color-text);
}
.navbar .navbar-nav .nav-link:hover {
  color: var(--global-color-accent);
}
a[aria-current="page"] {
  color: var(--global-color-blue) !important;
}
a[aria-current="page"]:hover {
  color: var(--global-color-blue) !important;
}
.navbar {
  transition: a 0.4s ease-in-out;
  position: sticky;
  padding: 18px 0px;
}
.navbar:hover {
  background-color: var(--global-color-dark-blue);
}
.pink-border {
  border: 1px solid var(--global-color-pink);
}
::selection {
  background-color: var(--global-color-text);
  color: black;
}
.overlay-blue {
  background-color: hsla(243, 79%, 5%, 0.9);
  width: 100%;
  height: 100%;
}
.blue-btn {
  background-color: #007aff;
  color: #ffffff;
  border: none;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  font-size: 10px;
}
/* Drawer */
.down-arrow {
  width: 15px;
  height: 15px;
}
.nav-item:hover .nav-link {
  color: var(--global-color-accent) !important;
}
.nav-item:hover .down-arrow {
  fill: var(--global-color-accent) !important;
}
@media (max-width: 992px) {
  .dropdown-hover-menu {
    background-color: transparent;
  }
  .dropdown-item {
    padding: 8px 20px;
    color: var(--global-color-text);
    font-family: "Game Over", sans-serif;
    transition: all 0.3s ease;
    text-align: center;
  }
  .dropdown-hover-menu {
    position: absolute;
  }
  .nav-item{
    text-align: center;
  }
}
@media (min-width: 992px) {
  .dropdown-hover:hover + .dropdown-hover-menu,
  .dropdown-hover-menu:hover {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  .dropdown-hover-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    position: absolute;
    margin-top: 0;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--global-color-dark-blue);
  }

  .dropdown-hover[data-bs-toggle] {
    pointer-events: none;
  }

  .dropdown-item {
    padding: 8px 20px;
    color: #fff;
    font-family: "Game Over", sans-serif;
    transition: all 0.3s ease;
  }

  .dropdown-item:hover {
    background-color: var(--global-color-text);
    color: var(--global-color-primary);
    padding-left: 25px;
  }
}
/* Typography - Responsive Font Sizes */

/* Default - 1440px (Base Styles) */
.sa-nav-font {
  font-size: 20px;
}
.sa-large-font {
  font-size: 105px;
}
.sa-card-title-font {
  font-size: 48px;
}
.sa-card-head {
  font-size: 30px;
}
.sa-bartop-btn-font {
  font-size: 17px;
}
.sa-card-head-large {
  font-size: 70px;
}
.sa-contact-head {
  font-size: 60px;
}
.sa-card-subhead {
  font-size: 29px;
}
.sa-card-number-font {
  font-size: 45px;
}
.small-font {
  font-size: 18px;
  /* word-spacing: -5px; */
}
.bartop-card-head {
  font-size: 23px;
  white-space: nowrap;
}

/* 2560px and above */
@media (min-width: 2560px) {
  .sa-nav-font {
    font-size: 16px;
  }
  .sa-large-font {
    font-size: 150px;
  }
  .sa-card-title-font {
    font-size: 30px;
  }
  .sa-card-head {
    font-size: 35px;
  }
  .sa-bartop-btn-font {
    font-size: 30px;
  }
  .sa-card-head-large {
    font-size: 100px;
  }
  .sa-contact-head {
    font-size: 90px;
  }
  .sa-card-subhead {
    font-size: 42px;
  }
  .sa-card-number-font {
    font-size: 46px;
  }
  .small-font {
    font-size: 11px;
  }
  .bartop-card-head {
    font-size: 27px;
  }
}

/* 1920px */
@media (min-width: 1920px) and (max-width: 2559px) {
  .sa-nav-font {
    font-size: 16px;
  }
  .sa-large-font {
    font-size: 120px;
  }
  .sa-card-title-font {
    font-size: 30px;
  }
  .sa-card-head {
    font-size: 25px;
  }
  .sa-bartop-btn-font {
    font-size: 22px;
  }
  .sa-card-head-large {
    font-size: 85px;
  }
  .sa-contact-head {
    font-size: 60px;
  }
  .sa-card-subhead {
    font-size: 34px;
  }
  .sa-card-number-font {
    font-size: 46px;
  }
  .small-font {
    font-size: 15px;
  }
  .bartop-card-head {
    font-size: 25px;
  }
}

/* 1024px to 1439px */
@media (max-width: 1439px) and (min-width: 1025.9px) {
  .sa-nav-font {
    font-size: 18px;
  }
  .sa-large-font {
    font-size: 95px;
  }
  .sa-card-title-font {
    font-size: 28px;
  }
  .sa-card-head {
    font-size: 18px;
  }
  .sa-bartop-btn-font {
    font-size: 15px;
  }
  .sa-card-head-large {
    font-size: 60px;
  }
  .sa-contact-head {
    font-size: 32px;
  }
  .sa-card-subhead {
    font-size: 26px;
  }
  .sa-card-number-font {
    font-size: 42px;
  }
  .small-font {
    font-size: 8px;
  }
  .bartop-card-head {
    font-size: 19px;
  }
}

/* 768px to 1023px */
@media (max-width: 1024px) and (min-width: 768px) {
  .sa-nav-font {
    font-size: 14px;
  }
  .sa-large-font {
    font-size: 80px;
  }
  .sa-card-title-font {
    font-size: 31px;
  }
  .sa-card-head {
    font-size: 16px;
  }
  .sa-bartop-btn-font {
    font-size: 14px;
  }
  .sa-card-head-large {
    font-size: 49px;
  }
  .sa-contact-head {
    font-size: 25px;
  }
  .sa-card-subhead {
    font-size: 22px;
  }
  .sa-card-number-font {
    font-size: 35px;
  }
  .small-font {
    font-size: 11px;
  }
  .bartop-card-head {
    font-size: 19px;
  }
}

/* 475px to 767px */
@media (max-width: 767px) and (min-width: 475px) {
  .sa-nav-font {
    font-size: 15px;
  }
  .sa-large-font {
    font-size: 65px;
  }
  .sa-card-title-font {
    font-size: 20px;
  }
  .sa-card-head {
    font-size: 12px;
  }
  .sa-bartop-btn-font {
    font-size: 10px;
  }
  .sa-card-head-large {
    font-size: 45px;
  }
  .sa-contact-head {
    font-size: 20px;
  }
  .sa-card-subhead {
    font-size: 18px;
  }
  .sa-card-number-font {
    font-size: 30px;
  }
  .small-font {
    font-size: 9px;
  }
  .bartop-card-head {
    font-size: 18px;
  }
}

/* 425px to 474px */
@media (max-width: 474px) and (min-width: 425px) {
  .sa-nav-font {
    font-size: 14px;
  }
  .sa-large-font {
    font-size: 55px;
  }
  .sa-card-title-font {
    font-size: 16px;
  }
  .sa-card-head {
    font-size: 10px;
  }
  .sa-bartop-btn-font {
    font-size: 8px;
  }
  .sa-card-head-large {
    font-size: 35px;
  }
  .sa-contact-head {
    font-size: 20px;
  }
  .sa-card-subhead {
    font-size: 16px;
  }
  .sa-card-number-font {
    font-size: 25px;
  }
  .small-font {
    font-size: 8px;
  }
  .bartop-card-head {
    font-size: 20px;
  }
}

/* Below 425px (Mobile 320px - 424px) */
@media (max-width: 424px) {
  .sa-nav-font {
    font-size: 12px;
  }
  .sa-large-font {
    font-size: 40px;
  }
  .sa-card-title-font {
    font-size: 16px;
  }
  .sa-card-head {
    font-size: 8px;
  }
  .sa-bartop-btn-font {
    font-size: 7px;
  }
  .sa-card-head-large {
    font-size: 25px;
  }
  .sa-contact-head {
    font-size: 18px;
  }
  .sa-card-subhead {
    font-size: 14px;
  }
  .sa-card-number-font {
    font-size: 20px;
  }
  .small-font {
    font-size: 7px;
  }
  .bartop-card-head {
    font-size: 18px;
  }
}

@media screen and (max-width: 991px) {
  .nav-item {
    margin: auto;
  }
  .navbar-nav {
    padding-right: 0px !important;
    gap: 0px !important;
  }
  .navbar-collapse {
    background-color: var(--global-color-dark-blue);
    top: 0;
    position: absolute;
    width: 100%;
  }
  .home-footer-wrapper-left {
    padding-right: 20px !important;
  }
  .home-footer-wrapper-left a {
    width: 100% !important;
  }
  .navbar-brand {
    left: 30px !important;
  }
}
.nav-top {
  z-index: var(--z-index-navigation);
}
.navbar-toggler {
  z-index: var(--z-index-nav-btn);
}
.navbar-collapse {
  z-index: var(--z-index-mob-nav);
}
.navbar-brand {
  left: 80px;
  top: 13px;
  z-index: var(--z-index-navigation);
}
.container-fluid {
  padding: 0px !important;
}
.navbar-toggler-icon {
  background-image: none;
  color: var(--global-color-text);
}



@media (max-width: 991.98px) {
  /* Ensure dropdown is visible on mobile */
  .dropdown-hover-menu {
    display: none;
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background-color: transparent;
    border: none;
    box-shadow: none;
    margin-top: 0;
  }

  /* Show dropdown when active */
  .dropdown-hover-menu.show {
    display: block !important;
  }

  /* Style dropdown items for mobile */
  .dropdown-item {
    text-align: center;
    padding: 10px 20px;
    color: var(--global-color-text) !important;
    font-size: 16px !important;
    white-space: nowrap;
  }

  .dropdown-item:hover {
    background-color: var(--global-color-text) !important;
    color: var(--global-color-primary) !important;
  }
  
  /* Make sure the toggle is clickable */
  .dropdown-hover {
    pointer-events: auto !important;
  }
}
/* Apply hover effect only on larger screens (e.g., >= 576px for Bootstrap's default breakpoint) */
@media (min-width: 576px) {
  .navbar .dropdown {
    cursor: pointer;
  }
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
}


.footer .container {
  max-width: 900px;
  padding: 30px 10px;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  color: var(--global-color-text);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 15px;
  font-weight: 400;
  font-family: "Game Over", sans-serif;
}

.footer-links a:hover {
  color: #0275d8;
}

.footer .logo-container {
  margin-top: 30px;
}

.footer .logo-container svg {
  fill: #00a4ff;
  width: 25px;
  height: 25px;
}
