/* ========== GLOBAL STYLES & RESET ========== */

@import url("https://fonts.cdnfonts.com/css/astroz");

/* ===== Custom Neon Scrollbar ===== */
::-webkit-scrollbar {
  width: 10px; /* scrollbar width */
}

::-webkit-scrollbar-track {
  background: #050014; /* dark background */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  /* background: linear-gradient(180deg, #00f0ff, #0077ff); */
  border-radius: 10px;
  box-shadow:
    0 0 10px #00f0ff,
    0 0 20px #00f0ff;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  /* background: linear-gradient(180deg, #00ffff, #00bfff); */
  box-shadow:
    0 0 15px #00f0ff,
    0 0 30px #00f0ff;
}

/* Optional: hide buttons/arrows at scrollbar ends */
::-webkit-scrollbar-button {
  display: none;
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #00f0ff #050014;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow: hidden; /* Prevent html from scrolling */
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 60px 0 0 0; /* Add top padding for fixed navbar */
  font-family: "Courier New", monospace;
  color: white;
  /* background: url("images/brick-wall.png"); */
  background-color: #000014;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
  overflow-y: auto; /* Make body the scrolling container */
  height: 100vh; /* Full viewport height */
  text-align: center;
}

/* Page-specific body styles moved to global for consistency */
body.accommodation-page {
  /* background-image: url("images/accommodation-bg.jpg"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: "Courier New", monospace;
  padding: 80px 0 0 0;
  flex-direction: column;
  align-items: center;
  background-color: black;
}

body.blog-page {
  /* background: url("images/blog-background.jpg") no-repeat center center fixed; */
  background-size: cover;
  background-color: black;
}

body.party-events-page {
  /* Background moved to .stage div */
}

body.whatsapp-page {
  background: url("images/whatapps.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-color: #000014;
}



.highlight {
  color: #00ffff;
  font-weight: bold;
  text-shadow:
    0 0 8px #0ff,
    0 0 15px #0ff;
  font-size: 28px;
}

/* ========== LANGUAGE SELECTOR ========== */
.language-selector-container {
  position: fixed;
  top: 140px;
  right: 20px;
  z-index: 1001;
}

.language-selector {
  background: rgba(0, 255, 255, 0.1);
  border: 2px solid #00ffff;
  border-radius: 8px;
  color: #00ffff;
  padding: 8px 12px;
  font-family: "Orbitron", sans-serif;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.language-selector:hover {
  background: rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  border-color: #00ffff;
}

.language-selector:focus {
  outline: none;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.language-selector option {
  background: #000014;
  color: #00ffff;
  font-family: "Orbitron", sans-serif;
}

/* ========== DESKTOP NAVIGATION BAR (769px and above only) ========== */
@media (min-width: 769px) {
  .main-menu {
    background-color: #000010;
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid #00ffff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 24px;
    font-family: "Orbitron", sans-serif;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
  }

  .main-menu a {
    color: #00ffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: text-shadow 0.3s ease;
    flex-shrink: 0;
  }

  .main-menu a:hover,
  .main-menu a.active {
    text-shadow: 0 0 1px #00ffff;
  }

  .main-menu .user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    margin-right: 20px;
    color: #00ffff;
    font-weight: bold;
  }

  .main-menu .welcome-text {
    font-size: 14px;
  }

  .main-menu .auth-link {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: text-shadow 0.3s ease;
  }

  .main-menu .auth-link:hover {
    text-shadow: 0 0 8px #ffcc00;
  }

  .main-menu .admin-link {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: text-shadow 0.3s ease;
  }

  .main-menu .admin-link:hover {
    text-shadow: 0 0 8px #ff6600;
  }
}

/* ========== NAVIGATION PLACEHOLDER ========== */
#navbar-placeholder {
  width: 100%;
  margin: 0; /* Ensure no margin */
  padding: 0; /* Ensure no padding */
  position: relative; /* Establish positioning context */
  display: block; /* Ensure block display */
  text-align: left; /* Override any centering */
  flex: none; /* Prevent flexing */
  order: -1; /* Ensure it appears first */
}

/* ========== FOOTER SECTION ========== */
.footer-section {
  /* background: linear-gradient(
      135deg,
      rgba(20, 0, 40, 0.95) 0%,
      rgba(0, 0, 0, 0.9) 50%,
      rgba(20, 0, 40, 0.95) 100%
    ),
    url("images/homepage-bg.jpg") no-repeat center center; */
  background: #000000;
  background-size: cover;
  padding: 30px;
  text-align: center;
  color: #00eaff;
  font-size: 14px;
  border-top: 2px solid #ff00cc;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #00ffff,
    #ff00cc,
    transparent
  );
  animation: neonFlow 8s linear infinite;
}

@keyframes neonFlow {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Neon Logo */
.footer-section .neon-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-section .neon-live {
  color: #00ffff;
  text-shadow:
    0 0 3px #00ffff,
    0 0 6px #00ffff,
    0 0 12px #00ffff;
  animation: flicker 2s infinite alternate;
}

.footer-section .neon-in {
  color: #ffffff;
  text-shadow: 0 0 5px #ffffff;
  font-size: 1.8rem;
}

.footer-section .neon-oz {
  color: #ffff00;
  text-shadow:
    0 0 3px #ffff00,
    0 0 6px #ffff00,
    0 0 12px #ffff00;
  animation: flicker 2s infinite alternate-reverse;
}

@keyframes flicker {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Footer Description */
.footer-description {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #00eaff;
  text-shadow: 0 0 8px rgba(0, 234, 255, 0.5);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Instant Access Section */
.instant-access {
  margin-bottom: 40px;
}

.neon-separator {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #00ffff,
    #ff00cc,
    transparent
  );
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.quick-access-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.quick-icon {
  font-size: 2rem;
  color: #00eaff;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 50%;
  background: rgba(0, 234, 255, 0.1);
  border: 1px solid rgba(0, 234, 255, 0.3);
  text-shadow: 0 0 8px rgba(0, 234, 255, 0.5);
}

.quick-icon:hover {
  transform: scale(1.2);
  color: #00ffff;
  background: rgba(0, 255, 255, 0.2);
  border-color: #00ffff;
  text-shadow:
    0 0 15px #00ffff,
    0 0 25px #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

/* Footer Grid Layout */
.footer-columns {
  display: grid;
  gap: 18px 28px;
  align-items: start;
  margin-bottom: 30px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.footer-column {
  min-width: 140px;
  margin: 0;
}

.footer-column h4 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  text-align: left;
  color: #ffff00;
  text-shadow:
    0 0 8px #ffff00,
    0 0 15px rgba(255, 255, 0, 0.5);
  line-height: 1.6;
  transition: all 0.3s ease;
}

.footer-column h4:hover {
  text-shadow:
    0 0 12px #ffff00,
    0 0 25px #ffff00,
    0 0 40px rgba(255, 255, 0, 0.8);
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  color: #ffffff;
  font-size: 0.95em;
  margin: 6px 0;
  line-height: 1.5;
  transition: all 0.25s ease;
  text-align: left;
}

.footer-column li a {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: all 0.3s ease;
}

.footer-column li:hover,
.footer-column li a:hover {
  color: #00eaff;
  text-shadow: 0 0 8px rgba(0, 234, 255, 0.5);
  letter-spacing: 2px;
}

.link-icon {
  margin-right: 8px;
  font-size: 1.1em;
  transition: all 0.3s ease;
}

.footer-column li:hover .link-icon {
  transform: scale(1.2);
  text-shadow: 0 0 10px currentColor;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85em;
  color: white;
  border-top: 1px solid #444;
  padding-top: 15px;
}

.footer-links {
  margin-top: 10px;
  text-align: right;
  font-size: 0.85em;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 8px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: #00eaff;
  text-shadow: 0 0 8px rgba(0, 234, 255, 0.5);
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #00eaff;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Social Media Enhancements */
.social-media {
  display: flex;
  justify-content: left;
  gap: 20px;
  margin-bottom: 15px;
}

.social-icon {
  font-size: 1.8rem;
  color: #00eaff;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 12px;
  border-radius: 50%;
  background: rgba(0, 234, 255, 0.1);
  border: 1px solid rgba(0, 234, 255, 0.3);
  text-shadow: 0 0 8px rgba(0, 234, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  position: relative;
}

.social-icon:hover {
  transform: scale(1.2);
  animation: socialPulse 1.5s ease-in-out infinite;
}

/* Custom Tooltips */
.social-icon::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  border: 6px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.social-icon:hover::after,
.social-icon:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Enhanced Brand Colors with Better Glow */
.social-icon.facebook:hover {
  color: #1877f2 !important;
  text-shadow:
    0 0 10px #1877f2,
    0 0 20px #1877f2,
    0 0 30px #1877f2,
    0 0 40px #1877f2 !important;
  background: rgba(24, 119, 242, 0.3) !important;
  border-color: #1877f2 !important;
  box-shadow: 0 0 25px rgba(24, 119, 242, 0.6) !important;
}

.social-icon.instagram:hover {
  color: #e4405f !important;
  text-shadow:
    0 0 10px #e4405f,
    0 0 20px #e4405f,
    0 0 30px #e4405f,
    0 0 40px #e4405f !important;
  background: rgba(228, 64, 95, 0.3) !important;
  border-color: #e4405f !important;
  box-shadow: 0 0 25px rgba(228, 64, 95, 0.6) !important;
}

.social-icon.whatsapp:hover {
  color: #25d366 !important;
  text-shadow:
    0 0 10px #25d366,
    0 0 20px #25d366,
    0 0 30px #25d366,
    0 0 40px #25d366 !important;
  background: rgba(37, 211, 102, 0.3) !important;
  border-color: #25d366 !important;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.6) !important;
}

.social-icon.youtube:hover {
  color: #d65252 !important;
  text-shadow:
    0 0 10px #ff0000,
    0 0 20px #ff0000,
    0 0 30px #ff0000,
    0 0 40px #ff0000 !important;
  background: rgba(255, 0, 0, 0.3) !important;
  border-color: #ff0000 !important;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.6) !important;
}

@keyframes socialPulse {
  0%,
  100% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1.25);
  }
}

.contact-info {
  text-align: left;
  margin-bottom: 15px;
  flex: 1;
}

.contact-info strong {
  color: #00eaff;
  text-shadow: 0 0 5px rgba(0, 234, 255, 0.5);
}

.contact-button {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(0, 255, 255, 0.1);
  border: 2px solid #00eaff;
  border-radius: 8px;
  color: #00eaff;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 234, 255, 0.5);
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 234, 255, 0.3);
}

.contact-button:hover {
  background: rgba(0, 255, 255, 0.2);
  border-color: #00ffff;
  color: #00ffff;
  text-shadow:
    0 0 10px #00ffff,
    0 0 20px #00ffff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Connect With Us Column Layout */
.connect-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.connect-column h4 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffff33;
  text-shadow: 0 0 8px #ffff33;
  margin-bottom: 10px;
}

.connect-column .app-download-section {
  position: static;
  transform: none;
  margin-top: 12px;
}

/* App Download Section */
.app-download-section {
  margin-top: 20px;
}

.app-download-panel {
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid transparent;
  border-image: linear-gradient(45deg, #ff00cc, #00ffff) 1;
  border-radius: 15px;
  padding: 15px;
  box-shadow:
    0 0 20px rgba(0, 255, 255, 0.3),
    0 0 40px rgba(255, 0, 204, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 220px;
}

.app-download-panel h5 {
  color: #00eaff;
  font-size: 1rem;
  margin-bottom: 10px;
  text-shadow: 0 0 8px rgba(0, 234, 255, 0.5);
  text-align: center;
}

.app-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-badge {
  display: block;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  filter: grayscale(0.5) blur(0.5px);
  opacity: 0.7;
}

.app-badge:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.badge-text {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: bold;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

.google-play {
  background: linear-gradient(135deg, #414141, #000000);
}

.app-store {
  background: linear-gradient(135deg, #007aff, #0056cc);
}

/* Footer Bottom Text Enhancements */
.footer-bottom p {
  color: #00eaff;
  font-size: 1rem;
  text-shadow: 0 0 8px rgba(0, 234, 255, 0.5);
  margin-bottom: 10px;
}

/* Optional Floating Pulse Animation */
.footer-section::after {
  /* content: "✨"; */
  position: absolute;
  font-size: 1.5rem;
  color: #00ffff;
  text-shadow:
    0 0 10px #00ffff,
    0 0 20px #00ffff;
  pointer-events: none;
  animation: floatingPulse 30s infinite linear;
  z-index: 1;
}

@keyframes floatingPulse {
  0%,
  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5);
  }
  10% {
    opacity: 1;
    transform: translate(20%, -10%) scale(1);
  }
  20% {
    opacity: 0.8;
    transform: translate(40%, -20%) scale(0.8);
  }
  30% {
    opacity: 1;
    transform: translate(60%, -5%) scale(1.2);
  }
  40% {
    opacity: 0.6;
    transform: translate(80%, -15%) scale(0.9);
  }
  50% {
    opacity: 1;
    transform: translate(100%, -10%) scale(1);
  }
  60% {
    opacity: 0.7;
    transform: translate(80%, -25%) scale(0.8);
  }
  70% {
    opacity: 1;
    transform: translate(60%, -20%) scale(1.1);
  }
  80% {
    opacity: 0.5;
    transform: translate(40%, -30%) scale(0.7);
  }
  90% {
    opacity: 1;
    transform: translate(20%, -25%) scale(1);
  }
}

/* ========== FOOTER RESPONSIVE STYLES ========== */

/* Large screens (1200px and above) */
@media (min-width: 1200px) {
  .footer-columns {
    grid-template-columns: repeat(9, minmax(120px, 1fr));
    gap: 20px 36px;
  }

  .footer-container {
    max-width: 1400px;
  }

  .footer-column h4 {
    font-size: 1.1rem;
  }

  .footer-column li {
    font-size: 0.95rem;
  }
}

/* Tablet tweaks (769px - 1199px) */
@media (max-width: 1199px) and (min-width: 769px) {
  .footer-columns {
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    gap: 18px 28px;
  }

  .app-download-panel {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-column h4 {
    text-align: left;
  }
}

/* Mobile & small tablets (<= 768px) — stack columns vertically and center content */
@media (max-width: 768px) {
  .footer-section {
    padding: 20px 15px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-column,
  .footer-column li,
  .footer-column h4 {
    text-align: center;
  }

  .footer-column h4 {
    font-size: 1.1em;
    margin-bottom: 8px;
  }

  .footer-column li {
    font-size: 0.92rem;
    margin: 5px 0;
  }

  .social-media {
    justify-content: center;
    gap: 20px;
  }

  .social-icon {
    font-size: 1.3em;
    width: auto;
    height: auto;
  }

  .footer-description {
    font-size: 1em;
    margin: 15px 0 20px 0;
  }

  .app-download-panel {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-links {
    text-align: center;
    margin-top: 15px;
  }

  .footer-links a {
    display: inline-block;
    margin: 5px 8px;
  }

  .quick-access-icons {
    gap: 20px;
  }

  .quick-icon {
    font-size: 1.8rem;
    padding: 8px;
  }

  .footer-section .neon-logo {
    font-size: 2rem;
    letter-spacing: 1px;
    gap: 8px;
  }

  .footer-section .neon-in {
    font-size: 1.4rem;
  }

  .footer-bottom {
    font-size: 0.8em;
  }
}

/* Mobile phones (480px and below) */
@media (max-width: 480px) {
  .footer-section {
    padding: 15px 10px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .footer-column h4 {
    text-align: center;
    font-size: 1em;
  }

  .footer-column li {
    font-size: 0.85em;
    margin: 5px 0;
  }

  .footer-description {
    font-size: 0.95em;
    margin: 10px 0 15px 0;
  }

  .social-media {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .social-icon {
    font-size: 1.2em;
    width: 45px;
    height: 45px;
    padding: 10px;
  }

  .contact-info {
    font-size: 0.85em;
    text-align: center;
  }

  .footer-bottom {
    font-size: 0.8em;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    text-align: center;
  }

  .footer-links a {
    margin: 2px 0;
    font-size: 0.8em;
  }

  .quick-access-icons {
    gap: 15px;
    justify-content: center;
  }

  .quick-icon {
    font-size: 1.5rem;
    padding: 6px;
  }

  .app-download-panel {
    padding: 12px;
  }

  .app-download-panel h5 {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .badge-text {
    font-size: 0.7rem;
  }

  .footer-section .neon-logo {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    gap: 6px;
    flex-direction: column;
    gap: 4px;
  }

  .footer-section .neon-live,
  .footer-section .neon-oz {
    font-size: 1.6rem;
  }

  .footer-section .neon-in {
    font-size: 1.2rem;
  }
}

/* Extra small devices (360px and below) */
@media (max-width: 360px) {
  .footer-section {
    padding: 10px 8px;
  }

  .footer-description {
    font-size: 0.9em;
    margin: 8px 0 12px 0;
  }

  .footer-column h4 {
    font-size: 0.95em;
  }

  .footer-column li {
    font-size: 0.8em;
  }

  .social-media {
    gap: 10px;
  }

  .social-icon {
    font-size: 1.1em;
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  .quick-access-icons {
    gap: 10px;
  }

  .quick-icon {
    font-size: 1.3rem;
    padding: 5px;
  }

  .app-download-panel {
    padding: 10px;
  }

  .app-download-panel h5 {
    font-size: 0.85rem;
  }

  .badge-text {
    font-size: 0.65rem;
  }

  .footer-bottom p {
    font-size: 0.9em;
  }

  .footer-links a {
    font-size: 0.75em;
  }

  .footer-section .neon-logo {
    font-size: 1.5rem;
  }

  .footer-section .neon-live,
  .footer-section .neon-oz {
    font-size: 1.4rem;
  }

  .footer-section .neon-in {
    font-size: 1rem;
  }
}

/* ========== DESKTOP NAVIGATION BAR (769px and above) - Enhanced ========== */
@media (min-width: 769px) {
  /* Hide mobile elements on desktop */
  .menu-header,
  .menu-toggle,
  .menu-overlay {
    display: none !important;
  }

  .main-menu {
    background-color: #000010;
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid #00ffff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 32px;
    font-family: "Orbitron", sans-serif;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
  }

  .main-menu a {
    color: #00ffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: text-shadow 0.3s ease;
    flex-shrink: 0;
  }

  .main-menu a.active {
    font-weight: 600;
    color: #ff00cc;
  }

  .main-menu .user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    margin-right: 20px;
    color: #00ffff;
    font-weight: bold;
  }

  .main-menu .welcome-text {
    font-size: 14px;
  }

  .main-menu .auth-link {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: text-shadow 0.3s ease;
  }

  .main-menu .auth-link:hover {
    text-shadow: 0 0 8px #ffcc00;
  }

  .main-menu .admin-link {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: text-shadow 0.3s ease;
  }

  .main-menu .admin-link:hover {
    text-shadow: 0 0 8px #ff6600;
  }
}

/* ========== MOBILE NAVIGATION (768px and below) ========== */
@media (max-width: 768px) {
  /* Hide desktop nav elements on mobile */
  .main-menu {
    display: none !important; /* Hide desktop nav on mobile */
  }

  /* Menu Toggle Button (Hamburger) - Mobile Only */
  .menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid #00ffff;
    border-radius: 8px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex; /* Show on mobile */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  }

  .menu-toggle:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: #00ffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  /* MENU Title */
  .menu-header {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1500;
    display: flex; /* Show on mobile */
    align-items: center;
    gap: 15px;
    pointer-events: none;
  }

  .menu-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow:
      0 0 10px rgba(0, 255, 255, 0.8),
      0 0 20px rgba(0, 255, 255, 0.6),
      0 0 30px rgba(0, 255, 255, 0.4);
    letter-spacing: 8px;
  }

  /* Mobile Main Navigation Menu */
  .main-menu {
    position: fixed;
    top: -32px;
    right: -100%; /* Start off-screen */
    width: 70%;
    max-width: 400px;
    height: 100vh;
    background: transparent;
    z-index: 1500;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    padding: 120px 30px 30px 30px;
    display: block !important; /* Show mobile menu on mobile */
  }

  .main-menu.active {
    right: 0;
  }

  .main-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 25px;
    margin-bottom: 10px;
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid #00ffff;
    border-radius: 12px;
    color: #00ffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
  }

  .main-menu a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(0, 255, 255, 0.2),
      transparent
    );
    transition: left 0.5s ease;
  }

  .main-menu a:hover::before {
    left: 100%;
  }

  .main-menu a:hover {
    background: rgba(0, 255, 255, 0.15);
    box-shadow:
      0 0 25px rgba(0, 255, 255, 0.4),
      inset 0 0 15px rgba(0, 255, 255, 0.1);
    transform: translateX(-5px);
  }

  .main-menu a.active {
    background: rgba(255, 0, 204, 0.15);
    border-color: #ff00cc;
    color: #ff00cc;
    box-shadow: 0 0 25px rgba(255, 0, 204, 0.4);
  }

  .main-menu a .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
  }

  /* User Info Section */
  .user-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(0, 255, 255, 0.3);
  }

  .user-info a {
    background: rgba(255, 204, 0, 0.1);
    border-color: #ffcc00;
    color: #ffcc00;
  }

  .user-info a:hover {
    background: rgba(255, 204, 0, 0.2);
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.4);
  }

  .admin-link {
    background: rgba(255, 102, 0, 0.1) !important;
    border-color: #ff6600 !important;
    color: #ff6600 !important;
  }

  .admin-link:hover {
    background: rgba(255, 102, 0, 0.2) !important;
    box-shadow: 0 0 25px rgba(255, 102, 0, 0.4) !important;
  }

  /* Overlay */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1400;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile Optimization */
  .menu-title {
    font-size: 2rem;
    letter-spacing: 5px;
  }
}

/* Override any conflicting footer styles */

/* Force footer columns to use flex layout */
.footer-section .footer-columns {
  display: flex !important;
  justify-content: space-around !important;
  flex-wrap: wrap !important;
  margin-bottom: 220px !important;
  gap: unset !important;
  grid-template-columns: unset !important;
  align-items: unset !important;
}

.footer-section .footer-column {
  flex: 1 1 200px !important;
  margin: 10px !important;
  min-width: unset !important;
  text-align: unset !important;
}

.footer-section .footer-column h4 {
  font-size: 1.2em !important;
  margin-bottom: 15px !important;
  color: #ffff00 !important;
  text-shadow:
    0 0 8px #ffff00,
    0 0 15px rgba(255, 255, 0, 0.5) !important;
  transition: all 0.3s ease !important;
  line-height: 1.8 !important;
}

.footer-section .footer-column h4:hover {
  text-shadow:
    0 0 12px #ffff00,
    0 0 25px #ffff00,
    0 0 40px rgba(255, 255, 0, 0.8) !important;
  color: #ffffff !important;
}

.footer-section .footer-column ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-section .footer-column li {
  color: #ffffff !important;
  font-size: 0.95em !important;
  margin: 8px 0 !important;
  line-height: 1.6 !important;
  transition: all 0.3s ease !important;
}

.footer-section .footer-column li a {
  color: #ffffff !important;
  text-decoration: none !important;
  display: inline-flex !important;
  gap: 8px !important;
  align-items: center !important;
  transition: all 0.3s ease !important;
}

.footer-section .footer-column li a:hover {
  color: #00eaff !important;
  text-shadow: 0 0 8px rgba(0, 234, 255, 0.5) !important;
}

.footer-section .footer-column li:hover {
  color: #00eaff !important;
  text-shadow: 0 0 8px rgba(0, 234, 255, 0.5) !important;
}

/* Connect column flex layout */
.footer-section .connect-column {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 15px !important;
}

.footer-section .connect-column .app-download-section {
  position: static !important;
  transform: none !important;
  margin-top: 12px !important;
}

/* App download panel */
.footer-section .app-download-panel {
  max-width: 220px !important;
}

/* Footer bottom alignment */
.footer-section .footer-bottom {
  text-align: center !important;
  font-size: 0.85em !important;
  color: white !important;
  border-top: 1px solid #444 !important;
  padding-top: 15px !important;
}

.footer-section .footer-links {
  margin-top: 10px !important;
  text-align: center !important;
  font-size: 0.85em !important;
}

/* Responsive footer for tablets */
@media (max-width: 768px) {
  .footer-section .footer-columns {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
  }

  .footer-section .footer-column {
    flex: 1 1 100% !important;
    margin: 15px 0 !important;
    text-align: center !important;
    min-width: auto !important;
  }

  .footer-section .footer-column h4 {
    font-size: 1.1em !important;
    margin-bottom: 8px !important;
  }

  .footer-section .footer-column li {
    font-size: 0.9em !important;
  }

  .footer-section .social-media {
    justify-content: center !important;
    gap: 20px !important;
  }

  .footer-section .app-download-panel {
    max-width: 100% !important;
    margin: 0 auto !important;
  }
}

/* Responsive footer for mobile */
@media (max-width: 480px) {
  .footer-section .footer-columns {
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
  }

  .footer-section .footer-column {
    flex: 1 1 100% !important;
    margin: 10px 0 !important;
    text-align: center !important;
    min-width: auto !important;
  }

  .footer-section .footer-column h4 {
    text-align: center !important;
    font-size: 1em !important;
  }

  .footer-section .footer-column li {
    font-size: 0.85em !important;
  }

  .footer-section .social-media {
    gap: 15px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .footer-section .social-icon {
    font-size: 1.2em !important;
    width: 45px !important;
    height: 45px !important;
    padding: 10px !important;
  }

  .footer-section .footer-links {
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 15px !important;
  }

  .footer-section .footer-links a {
    margin: 2px 0 !important;
    font-size: 0.8em !important;
  }

  .footer-section .app-download-panel {
    padding: 12px !important;
  }

  .footer-section .app-download-panel h5 {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
  }
}

/* ===== MOBILE FOOTER 2-COLUMN LAYOUT ===== */

/* Mobile view - 2 columns (480px and below) */
@media (max-width: 480px) {
  .footer-section .footer-columns {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px 15px !important;
    align-items: start !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
    margin-bottom: 30px !important;
  }

  .footer-section .footer-column {
    flex: unset !important;
    margin: 0 !important;
    text-align: center !important;
    min-width: auto !important;
  }

  .footer-section .footer-column h4 {
    text-align: center !important;
    font-size: 0.95em !important;
    margin-bottom: 8px !important;
  }

  .footer-section .footer-column ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .footer-section .footer-column li {
    font-size: 0.8em !important;
    margin: 4px 0 !important;
    line-height: 1.4 !important;
  }

  /* Connect column spans both columns */
  .footer-section .connect-column {
    grid-column: 1 / -1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 15px !important;
    margin-top: 10px !important;
  }

  .footer-section .connect-column h4 {
    font-size: 1.1rem !important;
    font-weight: bold !important;
    color: #ffff33 !important;
    text-shadow: 0 0 8px #ffff33 !important;
    margin-bottom: 10px !important;
  }

  .footer-section .social-media {
    justify-content: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
  }

  .footer-section .social-icon {
    font-size: 1.2em !important;
    width: 45px !important;
    height: 45px !important;
    padding: 10px !important;
  }

  .footer-section .contact-info {
    text-align: center !important;
    font-size: 0.85em !important;
  }

  .footer-section .app-download-panel {
    max-width: 100% !important;
    width: 240px !important;
    padding: 12px !important;
    margin: 0 auto !important;
  }

  .footer-section .app-download-panel h5 {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
  }

  .footer-section .badge-text {
    font-size: 0.65rem !important;
  }
}

/* Tablets (481px - 768px) - 3 columns */
@media (min-width: 481px) and (max-width: 768px) {
  .footer-section .footer-columns {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px 15px !important;
    align-items: start !important;
    margin-bottom: 30px !important;
  }

  .footer-section .footer-column {
    flex: unset !important;
    margin: 0 !important;
    text-align: center !important;
  }

  .footer-section .connect-column {
    grid-column: 1 / -1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 15px !important;
    margin-top: 15px !important;
  }
}

/* ===== MOBILE LANGUAGE SELECTOR ===== */
@media (max-width: 768px) {
  .language-selector-container {
    position: fixed;
    top: 15px;
    left: 55%;
    transform: translateX(-50%);
    z-index: 1001;
  }

  .language-selector {
    font-size: 12px;
    padding: 6px 10px;
    width: auto;
    min-width: 120px;
  }
}

/* ===== EXTRA SMALL MOBILE (409px and below) ===== */
@media (max-width: 409px) {
  /* Language Selector */
  .language-selector-container {
    top: 10px;
    left: 55%;
    transform: translateX(-50%);
  }

  .language-selector {
    font-size: 11px;
    padding: 5px 8px;
    min-width: 110px;
  }

  /* Menu Toggle Button */
  .menu-toggle {
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    gap: 5px;
  }

  .menu-toggle span {
    width: 22px;
    height: 2.5px;
  }

  /* Menu Title */
  .menu-header {
    top: 20px;
  }

  .menu-title {
    font-size: 1.6rem;
    letter-spacing: 4px;
  }

  /* Mobile Navigation Menu */
  .main-menu {
    width: 85%;
    max-width: 320px;
    padding: 100px 20px 30px 20px;
  }

  .main-menu a {
    padding: 12px 18px;
    margin-bottom: 8px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .main-menu a .icon {
    font-size: 1.3rem;
  }

  /* User Info Section */
  .user-info {
    margin-top: 25px;
    padding-top: 25px;
  }

  /* Footer 2-Column Layout for Extra Small Screens */
  .footer-section .footer-columns {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px 10px !important;
  }

  .footer-section .footer-column h4 {
    font-size: 0.9em !important;
  }

  .footer-section .footer-column li {
    font-size: 0.75em !important;
  }

  .footer-section .social-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.1em !important;
  }

  .footer-section .app-download-panel {
    width: 220px !important;
    padding: 10px !important;
  }
}

/* South Australia column with promotional image */
.footer-sa-column {
  position: relative;
}

.footer-promotional-image {
  position: absolute;
  bottom: -280px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;

  z-index: 5;
}

/* Responsive adjustments for the promotional image */
@media (max-width: 1199px) and (min-width: 769px) {
  .footer-promotional-image {
    width: auto;
    height: 320px;
  }

  .footer-sa-column {
    order: 999;
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-promotional-image {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 20px auto 0;
  }
}

@media (max-width: 768px) {
  .footer-sa-column {
    order: 999;
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-promotional-image {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 20px auto 0;
    display: block;
    width: 220px;
    height: 350px;
  }
}

@media (max-width: 480px) {
  .footer-sa-column {
    order: 999;
    margin-top: 15px;
  }

  .footer-promotional-image {
    width: 280px;
    height: 290px;
    margin: 15px auto 0;
  }
}

@media (max-width: 360px) {
  .footer-promotional-image {
    width: 260px;
    height: 260px;
  }
}
