
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0e0e0e;
  color: #f2f2f2;
  line-height: 1.6;
}

.hero {
  text-align: center;
  padding: 80px 20px 40px;
  background: linear-gradient(to bottom, #0f0f0f, #1a1a1a);
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-title span {
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

.tagline {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #00ffff;
  color: #000;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #00cccc;
}

section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

section h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,255,255,0.2);
}

.footer {
  text-align: center;
  padding: 40px 20px;
  background-color: #111;
  font-size: 14px;
  color: #666;
}

/* Background logo overlay */
body::before {
  content: "";
  background: url('images/logo_gradient_pinkblue_alt.png') no-repeat center center;
  background-size: 500px;
  opacity: 0.05;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}
body > * {
  position: relative;
  z-index: 1;
}
