/* ======================= */
/* General Styling */
body {
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
  margin: 0 auto;
  padding: 0;
  color: #FFF;
  max-width: 1200px;
  background: linear-gradient(rgba(0, 0, 0, 0.9),
                              rgba(0, 0, 0, 0.9)),
              url('Pictures/stars-bg.jpg') no-repeat center/cover;
  background-attachment: fixed;
}


/* ======================= */
/* Fullscreen Video Container */
#intro {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#intro video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======================= */
/* Navbar / Sticky Header */
.sticky-header {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
}

.sticky-header .logo {
  max-height: 100px;  /* maximum height on large screens */
  height: auto;
  width: auto;
}

.sticky-header .nav-links {
  display: flex;
  gap: 15px;
  z-index: 1001;
  transition: opacity 160ms ease, transform 160ms ease;
}

.sticky-header .nav-links a {
  color: #00FF00;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

.sticky-header .nav-links a:hover {
  color: white;
}

/* Hamburger / Responsive Menu */
.sticky-header .icon {
  display: none;
  text-decoration: none;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: #00FF00;
  padding: 8px;
  cursor: pointer;
}

/* ======================= */
/* Parallax & Sections */
.parallax {
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: #FFF;
}

#home {
  background-image: url('galaxy-bg.jpg');
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #00FF00;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

/* ======================= */
/* Typography */
h1, h2 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: #00FF00;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }

p {
  font-size: 1rem;
  line-height: 1.5;
}

/* ======================= */
/* Buttons */
button {
  background-color: #00FF00;
  color: black;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #008800;
}

/* ======================= */
/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px;
  background-color: #111;
}

.carousel .slide {
  display: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease;
}

.carousel .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel .slide.active {
  display: block;
  opacity: 1;
}

/* Carousel Navigation Arrows */
.carousel .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #00FF00;
  cursor: pointer;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 50%;
}

.carousel .arrow-left { left: 10px; }
.carousel .arrow-right { right: 10px; }

/* discography section */
.discography {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.release-card {
  background: #111; /* dark mode style */
  border: 1px solid #333;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.release-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.release-card h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: #fff;
}

.release-card .songs {
  font-size: 0.9rem;
  color: #bbb;
  margin: 0.5rem 0;
}

.release-card .meta {
  font-size: 0.85rem;
  color: #999;
}



/* ======================= */
/* Gallery Section Styling */
#gallery {
  text-align: center;
  padding: 60px 20px;
  background-color: #111;
}

#gallery h2 {
  font-size: 2rem;
  color: #00FF00;
  margin-bottom: 20px;
}

#gallery p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 0 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid #00FF00;
  transition: transform 0.3s ease;
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00FF00;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* ======================= */
/* Custom Icons */
.custom-icons i {
  color: #00FF00;
  margin: 0 15px;
  font-size: 2rem;
  transition: transform 0.3s ease-in-out;
}

.custom-icons i:hover {
  transform: scale(1.2);
}

/* ======================= */
/* Fade-in and Slide-in Animations */
.fade-in, .slide-in {
  position: relative;
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in { transform: translateY(20px); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.slide-in { transform: translateX(-20px); }
.slide-in.visible { opacity: 1; transform: translateX(0); }

/* ======================= */
/* Footer Styling */
footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  color: #666;
  bottom: 0;
  width: 100%;
  position: relative;
}

footer p { margin: 10px 0; font-size: 14px; }
footer nav { margin-top: 10px; }

footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer-links li {
  display: inline;
  margin: 0 15px;
}

footer .footer-links a {
  color: #00FF00;
  text-decoration: none;
  font-weight: bold;
}

footer .footer-links a:hover {
  color: white;
  text-decoration: underline;
}

/* ===================================================================== */
/* Responsive Adjustments */
/* ===================================================================== */
@media (max-width: 768px) {
  body { padding: 10px; }

  .sticky-header {
	  flex-wrap: wrap;
	  padding: 10px 16px;
	  align-items: center;
	}

  .sticky-header .logo {
	  max-height: 80px; /* slightly smaller on tablets */
	  order: 1;
  }

	.sticky-header .nav-links {
	  flex-direction: column;
	  gap: 10px;
	  width: 100%;
	  background: rgba(0,0,0,0.95);
	  text-align: center;
	  overflow: hidden;
	  max-height: 0;
	  transition: max-height 0.3s ease;
	}


  .sticky-header.responsive .nav-links {
	  display: flex;
	  max-height: 500px; /* big enough to show all links */
  }
  
  .sticky-header .icon {
	  display: block; order: 3;
  }

  .nav-links a {
    display: block;
    padding: 12px 16px;
    color: #00FF00;
    font-weight: 700;
  }

  .nav-links a:hover,
  .nav-links a.active { color: #ffffff; background: rgba(255,255,255,0.03); }

  button { font-size: 0.9rem; padding: 8px 16px; }

  .gallery-images { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
  .gallery-item .overlay { font-size: 1rem; }
  
  .gallery-images {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* smaller images on tablets */
    gap: 15px;
  }
  
  .carousel {
    height: 250px; /* reduce carousel height on tablets */
  }

  .carousel .slide img {
    object-fit: cover; /* ensures images fill container nicely */
  }
}

@media (max-width: 480px) {
  .sticky-header { flex-direction: column; text-align: center; }
  .sticky-header .logo { max-height: 60px; /* smaller on mobile */ }
  .nav-links { gap: 5px; }
  button { font-size: 0.8rem; padding: 6px 12px; }
  footer { font-size: 0.8rem; }
  
  .gallery-images {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* even smaller on mobile */
    gap: 10px;
  }

  .gallery-item img {
    height: 120px; /* set a fixed height for mobile for consistency */
  }
  
  .carousel {
    height: 180px; /* reduce further on mobile */
  }

  .carousel .slide img {
    object-fit: cover;
  }
}

