body, html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #000000;
  color: #FFD700;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000000;
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  z-index: 1000;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}

.menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;

  position: fixed;
  top: 100px;
  right: 40px;
  transform: translateX(-40px); /* shifts left */

}





.menu li a {
  color: #FFD700;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.menu li a:hover {
  transform: scale(1.1);
  color: #fff;
}

.hero, .parallax {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero h1, .parallax h2 {
  font-size: 3em;
  text-align: center;
  text-shadow: 2px 2px 10px #000;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  filter: brightness(1.2);
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.scroll-down {
  position: absolute;
  bottom: 20px;
  font-size: 2em;
  color: #fff;
}

.hero, .parallax {
  min-height: 100vh;        /* ensures each section fills the viewport */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* creates the parallax effect */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.parallax {
  margin-top: 0;            /* no overlap with previous section */
  z-index: 1;               /* keeps each section layered correctly */
}



footer {
  background: #000;
  color: #FFD700;
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  margin: 20px 0;
}

.footer-links a {
  color: #FFD700;
  margin: 0 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.footer-social img {
  width: 25px;
  height: 25px;
  filter: brightness(1.2);
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.2);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

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


html {
  scroll-behavior: smooth;
}

.scroll-down a {
  color: #fff;
  text-decoration: none;
  font-size: 2em;
  transition: color 0.3s ease;
}

.scroll-down a:hover {
  color: #FFD700;
}

.menu li a:hover,
.footer-links a:hover {
  color: #fff;
  text-shadow: 0 0 8px #FFD700;
}

.menu li a:hover::after,
.footer-links a:hover::after {
  width: 100%;
}


 //Glow Pulse

//transition Glow effect

.hero h1 {
  transition: text-shadow 2s ease, color 2s ease; /* 1s = slower */
}

.hero h1:hover {
  color: #FFD700;
  text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700;
}


//Animated Glow Effect

/*
.hero h1:hover {
  color: #FFD700;
  animation: glowPulse 2s infinite alternate; /* 2s = slower cycle */
}

@keyframes glowPulse {
  from {
    text-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700;
  }
  to {
    text-shadow: 0 0 20px #FFD700, 0 0 40px #FF4500;
  }
}

*/

/* Underline

.hero h1 {
  position: relative;
  display: inline-block;
}

.hero h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 3px;
  background: #FFD700;
  transition: width 0.4s ease;
}

.hero h1:hover::after {
  width: 100%;
}
*/



/*

 Letter Spacing Expansion

.hero h1 {
  transition: letter-spacing 0.4s ease, color 0.4s ease;
}

.hero h1:hover {
  letter-spacing: 4px;
  color: #fff;
}


*/



/*Flicker Neon Effect


.hero h1 {
  transition: color 0.3s ease;
}

.hero h1:hover {
  color: #FFD700;
  animation: flicker 1s infinite;
}

@keyframes flicker {
  0%, 19%, 21%, 64%, 100% { opacity: 1; }
  20%, 65%, 75% { opacity: 0.5; }
}

*/


//Cover Hero Edge While Scrolling


.hero {
  height: 100vh;
  background-image: url('images/hero.jpg');
  background-size: cover;       /* scales image to cover entire area */
  background-position: center;  /* keeps it centered */
  background-repeat: no-repeat; /* prevents tiling */
}


html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* prevents horizontal scrollbars */
}


.hero {
  background-attachment: scroll; /* disables parallax sticking */
}


.hero {
  background-size: 100% 100%; /* stretches image to fit viewport */
}





/* Dark Overlay Hero


.hero {
  height: 100vh;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  z-index: 0; /* sits behind text */
}

.hero h1,
.hero .social-icons {
  position: relative;
  z-index: 1; /* ensures text/icons are above overlay */
}
*/



/*Gradient Overlay

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
}
*/





.listen-btn {
  margin-top: 30px;
  padding: 12px 30px;
  font-size: 1.2em;
  font-weight: bold;
  color: #000;
  background: #FFD700;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.listen-btn:hover {
  background: #fff;
  color: #FFD700;
  box-shadow: 0 0 15px #FFD700;
  transform: scale(1.05);
}





.listen-btn {
  margin-top: 30px;
  padding: 12px 30px;
  font-size: 1.2em;
  font-weight: bold;
  color: #000;
  background: #FFD700;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  animation: pulseGlow 2s infinite; /* continuous glow */
}

.listen-btn:hover {
  background: #fff;
  color: #FFD700;
  box-shadow: 0 0 15px #FFD700;
  transform: scale(1.05);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700;
  }
  50% {
    box-shadow: 0 0 20px #FFD700, 0 0 40px #FF4500;
  }
  100% {
    box-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700;
  }
}




/* Hero Slideshow


.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slideshow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.slide {
  position: absolute;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.hero h1,
.hero .social-icons,
.hero .listen-btn {
  position: relative;
  z-index: 1; /* ensures text/icons are above slideshow */
}

*/



.hero {
  position: relative;
  height: 100vh;
  background: url('your-image.jpg') center/cover no-repeat;
  filter: grayscale(100%); /* Converts image to black & white */
  overflow: hidden;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(255,255,255,0.1)
  );
  mix-blend-mode: multiply; /* Keeps it monochrome */
}



.hero::before {
  filter: blur(15px);
}

.hero h1, .hero p {
  position: relative;
  color: #fff;
  text-shadow: 0 0 8px rgba(0,0,0,0.8);
}







filter: grayscale(100%) contrast(120%);
text-shadow: 0 0 20px rgba(255,255,255,0.6);
background: linear-gradient(270deg, #000, #333, #fff);
background-size: 400% 400%;
animation: bwShift 12s ease infinite;

@keyframes bwShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

