/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0d0d1a;
  color: #fff;
  line-height: 1.6;
}

/* Header */
header {
  background: #000;
  padding: 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  max-width: 180px;
  margin-bottom: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 10px;
}

nav a {
  color: #00bfff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #a166ff;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: radial-gradient(circle at top, #1a1a2e, #000);
}

.hero h1 {
  font-size: 3rem;
  color: #00bfff;
}

.hero p {
  font-size: 1.2rem;
  color: #aaa;
  margin-top: 10px;
}

/* Sections */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  color: #a166ff;
  margin-bottom: 20px;
}

/* Location Buttons */
.menu-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.location-btn {
  background: #1a1a2e;
  border: 2px solid #00bfff;
  color: #00bfff;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.location-btn:hover {
  background: #00bfff;
  color: #0d0d1a;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #000;
  font-size: 0.9rem;
  color: #666;
}

/* 🌫️ Full-Screen Blue Mist Spray */
.mist-spray {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle, rgba(0, 191, 255, 0.2) 10%, rgba(0, 191, 255, 0.1) 30%, transparent 70%);
  backdrop-filter: blur(25px);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  display: none;
}

.mist-spray.active {
  animation: fullScreenMist 1.6s ease forwards;
}

@keyframes fullScreenMist {
  0% {
    opacity: 0;
    transform: scale(1);
    filter: blur(2px);
  }
  35% {
    opacity: 0.9;
    transform: scale(1.05);
    filter: blur(4px);
  }
  70% {
    opacity: 0.6;
    transform: scale(1.1);
    filter: blur(6px);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
    filter: blur(10px);
  }
}