:root {
  --bg: #101010;
  --accent: #00ff41; /* Matrix green or Electric blue works well */
  --text: #ffffff;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  margin: 0;
  text-transform: uppercase;
  background:
    linear-gradient(rgb(20, 20, 20), rgba(0, 0, 0, 0.622)),
    url("images/vert2.jpg") bottom/cover;
}

nav {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  font-family: "Syncopate", sans-serif;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}
nav a {
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.nav-links{
    margin-left: auto;
    margin-right: 20px;
}

.hero {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* Add this: matches the shadow to your main page background color */
  box-shadow: inset 0 0 50px 20px rgb(0, 0, 0); 
}

.hero::before {
  content: "";
  position: absolute;

  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(14, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("images/final.jpg") no-repeat center top/cover;
  filter: blur(8px);
  /* Adjust the pixels for more/less blur */

  z-index: -1; /* Puts the image behind the text */
}

.hero h1 {
  font-family: "Syncopate", sans-serif;
  font-size: clamp(4rem, 15vw, 10rem);
  margin: 0;
  line-height: 0.8;
}

.track-list {
  padding: 4rem 2rem;
}
.track-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #222;
  padding: 20px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.track-item {
  margin-bottom: 30px; /* This creates the gap between the songs */
  padding: 15px;
  border-bottom: 1px solid #333; /* Optional: subtle divider */
}

/* Make the button look like a button and stay on its own line */
.cta-btn {
  display: inline-block;
  margin-top: 10px;
  background: #1db954; /* Spotify Green */
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 20px;
}

.cta-btn:hover {
  transform: scale(1.05);
}

.logo {
  display: flex;
  align-items: center;
  font-size: 2rem;
}
/* 1. Target the list to remove bullets and lay them out horizontally */
ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px; /* Adds space between the icons */
  padding: 0;
}

/* 2. Make the links/icons bigger */
ul li a {
  text-decoration: none;
  color: inherit; /* Keeps your existing colors */
  font-size: 2rem; /* Adjust this number to go bigger or smaller */
  transition: transform 0.3s ease;
}

/* 3. Add a little "pop" when you hover over them */
ul li a:hover {
  transform: scale(1.2);
  color: #1db954; /* Optional: turn green on hover */
}

.fa-soundcloud:hover {
  color: #ff5500;
}
.fa-youtube:hover {
  color: #ff0000;
}
.fa-instagram:hover {
  color: #ee41e5;
}

p {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  margin-top: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.video-container {
  margin: 50px auto 0 auto;
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  overflow: hidden; /* This chops off the sharp corners of the video inside */
}

.video-container iframe {
  width: 100%;
  aspect-ratio: 16 / 9; /* Keeps the video from looking squashed */
  border-radius: 20px; /* Match this to your container's radius */
  overflow: hidden; /* Just to be safe */
  border: none;
}

/* --- MOBILE OPTIMIZATIONS (Screens smaller than 768px) --- */
@media (max-width: 768px) {
  nav {
    display: flex;
    flex-direction: column; /* This creates the 3 rows */
    align-items: center; /* This centers them horizontally */
    gap: 20px; /* Space between the 3 rows */
    padding: 2rem;
    font-family: "Syncopate", sans-serif;
  }

  /* Row 1: The Logo */
  .logo {
    font-size: 2.5rem;
    letter-spacing: 5px;
  }

  /* Row 2: The Text Link */
  .nav-links  {
    margin-left: 20px;
  }

  .nav-links a:hover {
    border-bottom: 1px solid var(--accent);
  }

  /* Row 3: The Social Icons */
  .social-icons {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px; /* Space between icons */
    padding: 0;
    margin: 0;
  }

  .social-icons li a {
    font-size: 2rem;
    transition: transform 0.3s ease;
  }
  /* 1. Fix the Navigation */
  nav {
    flex-direction: column; /* Stacks logo above the links */
    gap: 20px;
    padding: 1rem;
    text-align: center;
  }

  nav ul {
    justify-content: center;
    padding: 0;
  }

  /* 2. Scale down the Hero Text */
  .hero {
    height: 60vh; /* Shorter hero so content isn't buried */
  }

  /* clamp() helps, but let's ensure it doesn't overflow the screen width */
  .hero h1 {
    font-size: 3.5rem;
    padding: 0 10px;
  }

  /* 3. The Grid Fix: Stack the columns! */
  .grid-2 {
    grid-template-columns: 1fr; /* Changes 2 columns to 1 */
    gap: 40px;
    padding: 0 1rem;
  }

  /* 4. Social Icons */
  ul {
    justify-content: center;
    flex-wrap: wrap; /* Allows icons to wrap if they run out of space */
  }

  /* 5. Content Spacing */
  .track-list {
    padding: 2rem 1rem;
  }

  .track-card {
    flex-direction: column; /* Stacks track info above the button */
    text-align: center;
    gap: 15px;
  }

  /* 6. Video Container */
  .video-container {
    width: 95%; /* Give it a little breathing room on the sides */
    margin-top: 30px;
  }
}
