/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background-color: #0c0c0c;
  color: #f3f3f3;
  line-height: 1.6;
  scroll-behavior: smooth;
}

section {
  padding: 80px 20px;
  text-align: center;
}

h1, h2, h3 {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

/* GLITCH EFFECT ON HOVER */
h1:hover, h2:hover, h3:hover, .btn:hover {
  animation: glitch 1s infinite;
}

@keyframes glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

/* FADE-IN ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

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

/* HERO */
#hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-image {
  max-width: 800px;
  margin-bottom: -76px;
  margin-top: 20px;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 6rem;
  letter-spacing: 6px;
  color: #ffffff;
  line-height: 1;
  margin-top: -10px;
  z-index: 2;
  position: relative;
}

.hero-content p {
  font-size: 1.3rem;
  color: #ddd;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #ff4444;
  color: #fff;
  padding: 10px 25px;
  margin: 10px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn:hover {
  background: #ff0000;
}

/* ALBUM GRID */
.album-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.album img {
  width: 200px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 68, 68, 0.5);
}

/* VIDEO */
.video iframe {
  width: 90%;
  max-width: 800px;
  height: 450px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 68, 68, 0.4);
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
  justify-items: center;
}

.gallery-grid img {
  width: 100%;
  max-width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* SOCIALS */
.social-links a {
  margin: 0 10px;
  color: #ff4444;
  font-weight: bold;
  text-decoration: none;
}

.social-links a:hover {
  color: #fff;
}

/* FOOTER */
footer {
  background-color: #111;
  padding: 20px 0;
  color: #666;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-image {
    max-width: 260px;
    margin-bottom: -40px;
  }

  .video iframe {
    height: 250px;
  }

  .gallery-grid img,
  .album img {
    width: 100%;
    max-width: 300px;
  }
}
.album-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.album-card {
  background-color: #141414;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
  max-width: 240px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.album-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 68, 68, 0.5);
}

.album-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.album-card h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #fff;
}

.album-card p {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 10px;
}

.about-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.roadmap-legend {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 5px;
  margin-bottom:30px;
  font-style: italic;
}