/* Global Styles */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}
body {
  font-family: 'Roboto', sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
header {
  background: #111;
  padding: 2rem;
  text-align: center;
  border-bottom: 2px solid #0ff;
  box-shadow: 0 0 20px #0ff inset;
}
header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #0ff;
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
}
header p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  color: #8ff;
}

nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
nav a {
  text-decoration: none;
  color: #0ff;
  font-weight: bold;
  transition: 0.3s;
}
nav a:hover {
  color: #f0f;
  text-shadow: 0 0 10px #f0f;
}

.nav-arrow {
  color: #0ff;
  font-weight: bold;
  transition: 0.3s;
}
.nav-arrow:hover {
  color: #f0f;
  text-shadow: 0 0 10px #f0f;
}

/* Section Styling */
section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}
section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: #0ff;
  margin-bottom: 1rem;
  border-bottom: 2px solid #0ff;
  display: inline-block;
  padding-bottom: 0.5rem;
}
section p, li {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.contact-info a {
  color: #0ff;
  text-decoration: none;
}
.contact-info a:hover {
  color: #f0f;
  text-shadow: 0 0 5px #f0f;
}

.card {
  background: #111;
  border: 1px solid #0ff;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 15px #0ff;
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px #f0f;
}
.card h3 {
  color: #0ff;
  margin-bottom: 0.5rem;
}
.card ul {
  list-style: disc inside;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #111;
  border-top: 2px solid #0ff;
  margin-top: 4rem;
}
footer a {
  color: #0ff;
  text-decoration: none;
}
footer a:hover {
  color: #f0f;
  text-shadow: 0 0 5px #f0f;
}

/* Animations */
@keyframes glitch {
  0% { text-shadow: 2px 0 #0ff, -2px 0 #f0f; }
  25% { text-shadow: -2px 0 #0ff, 2px 0 #f0f; }
  50% { text-shadow: 2px 0 #f0f, -2px 0 #0ff; }
  75% { text-shadow: -2px 0 #f0f, 2px 0 #0ff; }
  100% { text-shadow: 2px 0 #0ff, -2px 0 #f0f; }
}
.glitch {
  animation: glitch 1.5s infinite;
}

/* Label Styling */
.labels {
  display: flex;
  flex-direction: column; /* stack them vertically */
  gap: 1rem; /* spacing between labels */
  margin: 2rem 0;
}

.label {
  display: inline-block;
  background: linear-gradient(135deg, #0ff, #00aaff);
  color: #000;
  font-weight: bold;
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  box-shadow: 0 0 10px #0ff, 0 0 20px #00f inset;
  transition: transform 0.2s, box-shadow 0.2s;
}

.label:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px #f0f, 0 0 25px #0ff inset;
}
.label:active {
  transform: translateY(0);
  box-shadow: 0 0 5px #f0f, 0 0 10px #0ff inset;
}

.learn-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #ff9800; /* bright enough for sunshine mode */
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.learn-btn:hover {
  background: #e68900;
}
