/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Make html and body full height flex container */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

body {
  font-family: 'Arial Black', sans-serif;
  background: rgb(114, 9, 9);
  line-height: 1.6;
}

/* Make the main content wrapper grow to fill space */
.about-page {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  color: aliceblue;
  padding: 1rem 2rem;
  border-bottom: 2px solid #ccc;
  font-family: "Cal Sans", sans-serif;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: aliceblue;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #c20000;
}

/* Hero Section */
.hero {
  display: flex;       
  align-items: center;
  padding: 3rem 1rem;
  background: rgb(114, 9, 9);
  color: aliceblue;    
  gap: 2rem;           
  font-family: "Cal Sans", sans-serif;
  opacity: 0;               
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-delay: 0.2s;
}

.hero-text h1 {
  font-size: 50px;
}

.cover-img {
  max-width: 300px;
  display: block;
  margin-left: 300px;
  margin-right: 100px;
  transition: transform 0.3s ease;
}

.cover-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.4);
}

.hero-text {
  max-width: 600px;
}

/* Content Section */
.content {
  padding: 2rem;
  max-width: 700px;
  margin: auto;
  text-align: center;
  font-family: "Cal Sans", sans-serif;
}

.content h2 {
  color: #c20000;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1rem;
  color: #333;
}

/* Visuals Page */
.video-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
  background: rgb(114, 9, 9);
  max-width: 900px;
  margin: auto;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-delay: 0.2s;
}

.video-grid video {
  width: 90%;
  max-width: 900px;
  border: 2px solid #c20000;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-grid video:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.visuals-page h2 {
  background: rgb(114, 9, 9);
  text-align: center;
  padding-top: 20px;
  color: aliceblue;
  font-family: "Cal Sans", sans-serif;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-delay: 0.2s;
}

/* Freestyle */
.video-freestyle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 60px;
  background-color: #111;
  margin: auto;
}

.video-freestyle video {
  width: 90%;
  max-width: 500px;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-delay: 0.2s;
}

.video-freestyle video:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.video-freestyle h2 {
  text-align: center;
  padding-top: 20px;
  color: aliceblue;
  font-family: "Cal Sans", sans-serif;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-delay: 0.2s;
}

/* Music Page */
.music-page {
  text-align: center;
  padding: 2rem;
  font-family: "Cal Sans", sans-serif;
  background-color: aliceblue;
}

.audio-player {
  margin: 2rem 0;
}

.audio-player p {
  font-weight: bold;
  margin: 1rem 0 0.5rem;
}

.audio-player .track {
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-delay: 0.2s;
}

.audio-player .track::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background: linear-gradient(to right, #ff0000, #c20000, #ff0000);
  box-shadow: 0 0 10px #ff0000, 0 0 20px #c20000, 0 0 30px #ff0000;
  border-radius: 2px;
  animation: pulse-glow 2.5s infinite ease-in-out;
}

.audio-player .track:last-child::after {
  display: none;
}

.download-section {
  margin-top: 2rem;
}

.btn {
  background-color: #c20000;
  color: aliceblue;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border: none;
  display: inline-block;
  transition: background 0.3s ease;
  font-family: "Cal Sans", sans-serif;
  margin-top: 20px;
}

.btn:hover {
  background-color: #900000;
}

/* Profile Scroll */
.profile-scroll {
  padding: 2rem 1rem;
  background: #111;
  color: white;
  overflow-x: auto;
  font-family: "Cal Sans", sans-serif;
}

.profile-scroll h3 {
  font-size: 30px;
}

.scroll-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.profile {
  flex: 0 0 auto;
  width: 150px;
  text-align: center;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  margin: auto;  
  margin-top: 30px;
  font-family: "Cal Sans", sans-serif;
}

.profile img {
  width: 100%;
  border-radius: 50%;
  border: 3px solid #c20000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile img:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.4);
}

.profile p {
  margin-top: 0.5rem;
  font-weight: bold;
  color: aliceblue;
  font-family: "Cal Sans", sans-serif;
  margin-bottom: 50px;
}

/* Thank You Page */
.thank-you-page {
  text-align: center;
  padding: 4rem 2rem;
  color: #111;
  font-family: "Cal Sans", sans-serif;
}

.thank-you-page h1 {
  font-size: 2.5rem;
  color: aliceblue;
  margin-bottom: 1rem;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-delay: 0.2s;
}

.thank-you-page .container {
  background-color: #111;
  padding-bottom: 20px;
  padding-top: 50px;
  border-radius: 20px;
}

.thank-you-page p {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: aliceblue;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-delay: 0.2s;
}

/* Footer */
footer {
  margin-top: auto;
  text-align: center;
  padding: 1.5rem;
  background: aliceblue;
  color: grey;
  font-family: "Cal Sans", sans-serif;
 

  letter-spacing: 0.05em;
}

/* Main Form Section */
.sign-in {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

form {
  background-color: #111;
  padding: 2rem 2.5rem;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 0 20px rgba(194, 0, 0, 0.7);
  animation: fadeIn 0.6s ease-out forwards;
  color: aliceblue;
}

form h2 {
  text-align: center;
  margin-bottom: 1.5rem;

  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: aliceblue;
}

form h1 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: aliceblue;
}

form label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: bold;
  color: aliceblue;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"] {
  width: 100%;
  padding: 0.6rem 0.8rem;
  margin-bottom: 1.2rem;
  border: none;
  border-radius: 6px;
  background-color: #222;
  color: aliceblue;
  font-size: 1rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

form input:focus {
  background-color: #333;
  outline: none;
  box-shadow: 0 0 8px #c20000;
}

form button.btn,
form button {
  width: 100%;
  padding: 0.75rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 6px;
  background-color: #c20000;
  color: aliceblue;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

form button:hover {
  background-color: #900000;
}



/* Responsive tweaks */
@media (max-width: 480px) {
  .about-page form {
    padding: 1.5rem 1.5rem;
    max-width: 100%;
  }
}







@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px); /* subtle upward movement */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}








@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }

  .cover-img {
    margin: 0 auto;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .profile-scroll h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 28px;
  }

  .btn {
    width: 100%;
    padding: 1rem;
  }

  .profile {
    width: 120px;
  }

  .navbar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }


    .video-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .video-grid video {
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }

  .visuals-page h2 {
    font-size: 24px;

    
  }

  
}

/* Extra Small Devices - 320px */
@media (max-width: 320px) {
  .audio-player .track::after {
    width: 95%;
    height: 2px;
    box-shadow: 0 0 6px #ff0000, 0 0 12px #c20000;
  }

  .audio-player p {
    font-size: 0.85rem;
  }

  audio {
    width: 100%;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }

  .cover-img {
    margin: 0 auto;
  }

  .thank-you-page h1 {
    font-size: 30px;
  }

  .thank-you-page p {
    font-size: 10px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* Small Phones - 375px */
@media (max-width: 375px) {
  .audio-player .track::after {
    width: 90%;
  }

  .audio-player p {
    font-size: 0.9rem;
  }

  .thank-you-page h1 {
    font-size: 30px;
  }

  .thank-you-page p {
    font-size: 10px;
    margin-left: 20px;
    margin-right: 20px;
  }
}


/* Large Phones - 425px */
@media (max-width: 425px) {
  .audio-player .track::after {
    width: 85%;
  }

  .audio-player p {
    font-size: 1rem;
  }
.thank-you-page h1 {
    font-size: 30px;
  }

  .thank-you-page p {
    font-size: 10px;
    margin-left: 20px;
    margin-right: 20px;
  }

}

/* Tablets - 768px */
@media (max-width: 768px) {
  .music-page {
    padding: 2rem 1rem;
  }

  .audio-player .track::after {
    width: 75%;
    box-shadow: 0 0 8px #ff0000, 0 0 16px #c20000;
  }

 .thank-you-page h1 {
    font-size: 30px;
  }

  .thank-you-page p {
    font-size: 10px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* Small Laptops - 1024px */
@media (max-width: 1024px) {
  .audio-player .track::after {
    width: 65%;
    
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }

  .cover-img {
    margin: 0 auto;
  }

 
}

/* Large Screens - 1440px */
@media (max-width: 1440px) {
  .audio-player .track::after {
    width: 55%;
    box-shadow: 0 0 12px #ff0000, 0 0 24px #c20000, 0 0 36px #ff0000;
  }

  .audio-player p {
    font-size: 1.05rem;
  }

  audio {
    max-width: 600px;
    width: 100%;
  }

  .music-page {
    padding: 3rem 2rem;
  }


}

/* Ultra-Wide Screens - 2560px */
@media (min-width: 1921px) and (max-width: 2560px) {


  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }

  .cover-img {
    margin: 0 auto;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .profile-scroll h3 {
    font-size: 24px;
  }
  .audio-player .track::after {
    width: 45%;
    box-shadow: 0 0 14px #ff0000, 0 0 28px #c20000, 0 0 42px #ff0000;
  }

  .thank-you-page h1 {
    font-size: 30px;
  }

  .thank-you-page p {
    font-size: 50px;
    margin-left: 20px;
    margin-right: 20px;
  }


}

