@font-face {
  font-family: 'Deltha';
  src: url('public/Fonts/Deltha.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #00ff41;
  --secondary-color: #39ff14;
  --dark-bg: #0a0a0a;
  --darker-bg: #000000;
  --light-text: #ffffff;
  --gray-text: #b0b0b0;
  --accent-color: #ffd700;
  --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  --gradient-green: linear-gradient(135deg, #00ff41 0%, #39ff14 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Deltha', cursive;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title {
  font-family: 'Deltha', sans-serif;
  font-weight: normal;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 2px solid var(--primary-color);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-image {
  height: 40px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(100%);
  transition: filter 0.3s ease;
}

.logo-image:hover {
  filter: brightness(0) saturate(100%) invert(100%) drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.nav-logo h1 {
  font-family: 'Deltha', cursive;
  font-size: 2rem;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--light-text);
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.nav-link:focus,
.nav-link:active {
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.nav-link:hover {
  color: var(--primary-color);
  text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-green);
  transition: width 0.3s ease;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--light-text);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-dark);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  text-align: center;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

.hero-logo {
  height: 200px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) saturate(100%) invert(100%);
  animation: glow-logo 2s ease-in-out infinite alternate;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--gray-text);
  text-transform: uppercase;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  border: 2px solid;
  transition: all 0.3s ease;
  cursor: pointer;
  background: none;
  font-family: inherit;
}

.btn-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: transparent;
}

.btn-primary:hover {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--light-text);
  border-color: var(--light-text);
}

.btn-secondary:hover {
  background: var(--light-text);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-small:hover {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: 5rem 0;
}

.about {
  background: var(--darker-bg);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-text);
}

.band-members h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  text-align: center;
}

.members-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.member {
  background: rgba(0, 255, 65, 0.1);
  padding: 1.5rem;
  border: 1px solid var(--primary-color);
  text-align: center;
  transition: transform 0.3s ease;
}

.member-photo {
  margin-bottom: 1rem;
}

.member-photo img {
  width: 200px;
  height: 250px;
  max-width: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.member:hover .member-photo img {
  opacity: 0.8;
}

.member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 255, 65, 0.3);
}

.member h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Music Section */
.music {
  background: var(--dark-bg);
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.album {
  background: var(--darker-bg);
  border: 1px solid var(--primary-color);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.album:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 255, 65, 0.4);
}

.album-cover {
  width: 100%;
  height: 300px;
  background: #000000;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.album h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.album p {
  color: var(--gray-text);
  margin-bottom: 1rem;
}

.album-links {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Gallery Section */
.gallery {
  background: var(--dark-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Section */
.contact {
  background: var(--darker-bg);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--gray-text);
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  color: var(--primary-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary-color);
  background: transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
  background: var(--dark-bg);
  padding: 2rem;
  border: 1px solid var(--primary-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--darker-bg);
  border: 1px solid var(--primary-color);
  color: var(--light-text);
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

/* Footer */
.footer {
  background: var(--darker-bg);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--primary-color);
}

.footer p {
  color: var(--gray-text);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.8);
  }
  to {
    text-shadow: 0 0 30px rgba(0, 255, 65, 1), 0 0 40px rgba(0, 255, 65, 0.8);
  }
}

@keyframes glow-logo {
  from {
    filter: brightness(0) saturate(100%) invert(100%) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  }
  to {
    filter: brightness(0) saturate(100%) invert(100%) drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
  }
}

/* Coming Soon Overlay */
.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(3px);
}

.coming-soon-content {
  text-align: center;
}

.coming-soon-text {
  font-family: 'Arial', sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
  animation: glow-logo 2s ease-in-out infinite alternate;
  margin: 0;
}

.music {
  position: relative;
}

/* Hide Netlify bot field for spam protection */
.hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .coming-soon-text {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-logo h1 {
    font-size: 1.5rem;
  }

  .logo-image {
    height: 35px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-logo {
    height: 150px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .members-grid {
    grid-template-columns: 1fr;
  }

  .albums-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
