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

body {
  font-family: 'Arial', sans-serif;
  background: #000;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Header & Hero */
#hero {
  position: relative;
  min-height: 100vh;
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* Animated gradient overlay for texture/movement */
#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(60deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
  mix-blend-mode: overlay;
  animation: moveGradient 20s linear infinite;
  pointer-events: none;
}

@keyframes moveGradient {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2;
}

/* Logo image styling */
.logo-img {
  height: 60px;
  width: auto;
}

/* Large animated logo container & styling */
.logo-container {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.large-logo {
  width: 300px;
  max-width: 80%;
  height: auto;
  display: inline-block;
  /* Add a subtle glow effect to enhance visibility */
  filter: drop-shadow(0 0 10px #00ffff) drop-shadow(0 0 20px #ff00ff);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #00ffff;
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #00ffff;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero-content {
  text-align: center;
  padding: 0 20px 120px;
  z-index: 2;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #00ffff;
}

.hero-content p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
}

.cta-button {
  display: inline-block;
  background: #ff00ff;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background: #00ffff;
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: #ff00ff;
  text-shadow: 0 0 6px #00ffff;
}

.section p {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Release grid and cards */
.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.release-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.release-card h3 {
  color: #00ffff;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.release-card p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  flex-grow: 1;
}

.release-card ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: #ddd;
}

.release-card a {
  color: #ff00ff;
  text-decoration: underline;
  font-weight: 500;
  align-self: flex-start;
}

.release-card a:hover {
  color: #00ffff;
}

/* Upcoming and new release images */
.upcoming-cover {
  display: block;
  max-width: 300px;
  width: 100%;
  border-radius: 8px;
  margin: 0 auto 20px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

/* Contact section */
.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-section input,
.contact-section textarea {
  padding: 12px;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #f5f5f5;
  font-size: 1rem;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
  color: #bbb;
}

.contact-section button {
  padding: 12px;
  background: #00ffff;
  color: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-section button:hover {
  background: #ff00ff;
  transform: translateY(-2px);
}

.social-links {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

.social-links a {
  color: #00ffff;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

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

/* Footer */
footer {
  background: #0a0a0a;
  padding: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #888;
}

footer .designer {
  color: #ff00ff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2.5rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
  .nav {
    flex-direction: column;
    gap: 10px;
  }
}