/* MAIN STYLE FILE – 42 */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
}

/* Navigation Bar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 2rem;
  background-color: #0a0a0a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid #222;
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(to right, #00d4ff, #ff00ff);
  -webkit-background-clip: text;
  color: transparent;
}

/* Navigation Links */
.nav-links a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ff75ff;
}

/* Dropdown styling */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #111;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  padding: 0.5rem;
  border: 1px solid #333;
  white-space: nowrap;
  min-width: 180px; /* Adjust as needed */
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 0.3rem 0.75rem; /* adds horizontal spacing */
  text-decoration: none;
  font-size: 0.95rem;
}

.dropdown-content a:hover {
  color: #ff75ff;
}

/* Main content spacing (accounts for fixed nav) */
main, section {
  padding: 6rem 2rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Headings */
h1, h2, h3 {
  font-family: 'DM Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0;
}

/* Glowing Accent Text */
.glow {
  color: white;
  text-shadow: 0 0 5px #00d4ff, 0 0 10px #ff00ff;
}
.events-list {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.event-card {
  background: #111;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-left: 3px solid #ff75ff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
}

.event-card h3 {
  margin-top: 0;
}
.home-button {
  position: absolute;
  top: 1.2rem;
  left: 1.5rem;
  padding: 0.4rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.85rem;
  border-radius: 5px;
  text-decoration: none;
  z-index: 9999;
  transition: background 0.3s ease;
}

.home-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.event-card .date {
  font-size: 0.9rem;
  color: #aaa;
}

/* Orbit Wrapper for central alignment */
.orbit-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  z-index: 1; /* ensures planets stay above SVG */
}

/* Orbital animation for planets */
.planet-orbit {
  animation: orbit 20s linear infinite;
  transform-origin: center center;
}

/* Optional: customize duration per planet with classes like .orbit-slow or .orbit-fast */
@keyframes orbit {
  from { transform: rotate(0deg) translateX(150px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}


.shiny-42 {
  font-size: 7rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(145deg, #ff00ff, #00d4ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
  margin-bottom: 2rem;

  text-shadow:
    0 0 10px rgba(255, 0, 255, 0.4),
    0 0 20px rgba(0, 212, 255, 0.3),
    0 0 30px rgba(255, 255, 255, 0.2);
  animation: pulse-glow 5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    text-shadow:
      0 0 10px rgba(255, 0, 255, 0.4),
      0 0 20px rgba(0, 212, 255, 0.3),
      0 0 30px rgba(255, 255, 255, 0.2);
  }
  50% {
    text-shadow:
      0 0 20px rgba(255, 0, 255, 0.6),
      0 0 30px rgba(0, 212, 255, 0.4),
      0 0 40px rgba(255, 255, 255, 0.3);
  }
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 4rem;
}

.gallery img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(255,255,255,0.08);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(255,0,255,0.3);
}
.gallery video {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(255,255,255,0.08);
}
.gallery-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-slider img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(255,255,255,0.08);
  transition: transform 0.3s ease;
}

.gallery-slider img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(255,0,255,0.3);
}


