/* === Base Setup === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background: #0a0a0a;
  color: #0ff;
  scroll-behavior: smooth;
  overflow-x: hidden;
  position: relative;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

/* === Section Spacing === */
section + section {
  margin-top: 4rem;
}
x
/* === Noise Overlay === */
body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCI+PHJlY3Qgd2lkdGg9IjUwMCIgaGVpZ2h0PSI1MDAiIGZpbGw9IiMwMDAiLz48ZyBmaWxsPSIjZmZmIiBvcGFjaXR5PSIuMDQiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIi8+PC9nPjwvc3ZnPg==') repeat;
  mix-blend-mode: overlay;
  z-index: 999;
}

/* === Grid Overlay === */
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-size: 40px 40px;
  background-image:
    linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
  z-index: 998;
}

/* === Navbar === */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: black;
  padding: 1rem;
  text-align: center;
  z-index: 1000;
}

.navbar a {
  color: #0ff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #fff;
}

/* === Sections === */
.section {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.section.show {
  opacity: 1;
  transform: translateY(0);
}

.section.fade-out {
  opacity: 0;
  transform: translateY(40px);
}

.section h2, .section p {
  text-shadow:
    0 0 6px #0ff,
    0 0 12px #0aa,
    0 0 18px #0aa;
}

/* === Logo === */
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  overflow: visible;
}

.logo-svg {
  width: 520px;
  max-width: 100%;
  height: auto;
  overflow: visible;
  filter:
    drop-shadow(0 0 12px #00ffff)
    drop-shadow(0 0 30px #00aaff);
}

@keyframes logoGlow {
  from {
    filter: drop-shadow(0 0 6px #0ff) drop-shadow(0 0 14px #0aa);
  }
  to {
    filter: drop-shadow(0 0 14px #0ff) drop-shadow(0 0 28px #0aa);
  }
}

.tagline {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #0ff;
  text-shadow: 0 0 6px #0ff, 0 0 12px #0aa;
}
.email-tooltip {
  position: relative;
  color: #0ff;
  text-decoration: underline;
  cursor: pointer;
}

.email-tooltip::after {
  content: attr(data-email);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  color: #0ff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  z-index: 10;
}

.email-tooltip:hover::after {
  opacity: 1;
}
form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  margin-top: 1rem;
  gap: 1rem;
}

input, textarea, button {
  padding: 12px;
  font-family: inherit;
  border: 1px solid #0ff4;
  background: #111;
  color: #0ff;
  border-radius: 4px;
  font-size: 1rem;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #0ff;
}

button {
  background: #0ff;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background: #0aa;
}

.honeypot-wrap {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form-response {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #0f8;
}
#email-link {
  color: #0ff;
  font-weight: bold;
  text-decoration: underline;
}
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.store-item {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #0ff4;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s ease;
}

.store-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px #0ff5;
}
.store-item img:hover {
  transform: scale(1.05);
  filter: brightness(1.15) drop-shadow(0 0 12px #0ff);
}

.store-item img {
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.store-item h3 {
  color: #0ff;
  margin-bottom: 0.5rem;
}

.store-item .price {
  font-weight: bold;
  color: #0aa;
  margin-bottom: 0.5rem;
}

.store-item p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.store-item button {
  padding: 0.6rem 1.2rem;
  background: transparent;
  border: 1px solid #0ff8;
  color: #0ff;
  border-radius: 4px;
  cursor: not-allowed;
  font-family: inherit;
}
.about-section {
  color: #00ffff;
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  padding: 100px 60px;
  line-height: 1.6;
}

.about-section h2 {
  font-size: 2em;
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  margin-bottom: 20px;
}

.about-section p {
  max-width: 800px;
  margin: 0 auto;
  white-space: normal;         /* ✅ Enables word wrap */
  word-wrap: break-word;       /* ✅ Break long words if needed */
  text-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
  font-size: 1.1em;
}
.site-footer {
  background-color: #0a0a0a;
  color: #00ffff;
  text-align: center;
  padding: 20px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95em;
  box-shadow: 0 -2px 10px rgba(0, 255, 255, 0.2);
}

.site-footer p {
  margin: 8px 0;
  text-shadow: 0 0 4px #0ff, 0 0 8px #0ff;
}

.site-footer a {
  color: #00ffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #ffffff;
  text-shadow: 0 0 6px #fff, 0 0 12px #0ff;
}

.brand {
  font-weight: bold;
}

/*=== CONTACT FORM ===*/
#contact {
  margin-top: 3rem;
  padding-top: 6rem;
}

.contact-section {
  max-width: 700px;
  margin: auto;
  padding: 2rem 1rem;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 0.25rem;  /* 👈 reduce space below heading */
}

.contact-intro {
  font-size: 1rem;
  color: #66faff;
  margin-bottom: 1rem;   /* 👈 reduce this to pull form up */
}
.contact-section h2,
.contact-intro {
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
}

.hidden {
  opacity: 0;
  transform: translateY(0); /* prevent big space before animation */
  transition: all 0.6s ease-out;

form {
  max-width: 500px;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 2em;
  border: 1px solid #ddd;
  border-radius: 8px;
}

input, textarea {
  padding: 0.8em;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

button {
  background-color: #0073e6;
  color: white;
  padding: 0.8em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.fade-message {
  margin-top: 1em;
  transition: opacity 0.5s ease;
  opacity: 0;
  font-weight: bold;
}
.form-message {
  margin-top: 1em;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-message.success {
  color: green;
}

.form-message.error {
  color: red;
}
