:root {
--bg-color: #050505;;
--text-color: #f0f0f0;
--accent-color: #ff3366; 
--font-main: 'Courier New', Courier, monospace;
--header-height: 80px;
}
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background-color: var(--bg-color);
        color: var(--text-color);
        font-family: var(--font-main);
        overflow-x: hidden;
    }

    a {
        color: inherit;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    a:hover {
        color: var(--accent-color);
    }

    /* --- HEADER NAVIGATION --- */
    header {
        position: fixed;
        top: 0;
        width: 100%;
        height: var(--header-height);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 40px;
        background: #1a1a1a;
        backdrop-filter: blur(10px);
        z-index: 1000;
    }

    .nav-left {
        display: flex;
        gap: 20px;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .nav-center h1 {
        font-size: 2rem;
        letter-spacing: 4px;
        text-transform: uppercase;
        margin: 0;
        font-weight: bold;
    }

    .nav-right {
        display: flex;
        gap: 15px;
    }

    .social-icon {
        width: 24px;
        height: 24px;
        fill: var(--text-color);
        transition: fill 0.3s ease;
    }
    
    .nav-right a:hover .social-icon {
        fill: var(--accent-color);
    }

.hero {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-top: var(--header-height);
  padding-left: 20px;
  padding-right: 20px;
  

  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px; /* Size of the grid squares */
}

.hero-image-container {
  width: 100%;
  max-width: 600px;
  height: 60vh;     
  background-color: transparent; 
  background-image: url('imgs/jclRealMe-NoText.jpeg');
  background-size: contain; 
  background-position: center;
  background-repeat: no-repeat; 
  border-radius: 4px;
  filter: drop-shadow(0px 0px 40px rgba(255, 255, 255, 0.268)); 
}
    /* --- GRID SECTION (Song Links) --- */
    .grid-section {
        padding: 80px 40px;
        max-width: 1400px;
        margin: 0 auto;
}
    .grid-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }

    .grid-item {
        aspect-ratio: 1 / 1;
        background-color: #111;
        position: relative;
        overflow: hidden;
        border-radius: 4px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease;
        cursor: pointer;
    }

    .grid-item:hover {
        transform: scale(1.02);
    }

    .grid-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }

    .grid-item:hover img {
        opacity: 1;
    }

    .grid-content {
        position: absolute;
        bottom: 20px;
        left: 20px;
        z-index: 2;
    }

    .grid-title {
        font-size: 1.2rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    }

    .artist-name {
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    font-weight: 800; 
    text-transform: uppercase;
    letter-spacing: -0.02em; 
    color: #ffffff;
}

/* --- LABEL WATERMARK --- */
.label-watermark {
  position: fixed; 
  bottom: 15px;
  right: 20px;
  font-family: monospace; 
  font-size: 0.7rem; 
  color: rgba(255, 255, 255, 0.4); 
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1000; 
  pointer-events: none; 
}

/* --- THE SEPARATOR --- */
.cyber-divider {
    width: 80%; 
    max-width: 800px; 
    margin: 10px auto 30px auto; 
    border: 0; 
    height: 2px; 
    background: rgba(255, 255, 255, 0.2); 
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.1); 
}

/* --- BIO --- */
.bio-terminal {
  width: 100%;
  max-width: 700px;
  margin: 0 auto; /* Centers it perfectly under the hero */
  padding: 20px;
  font-family: monospace; 
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85); 
  text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.3); 
}

/* The Blinking Cursor */
.cursor {
  font-weight: bold;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}
    
/* Responsive adjustments for mobile */
    @media (max-width: 768px) {
        header {
            flex-direction: column;
            justify-content: center;
            gap: 15px;
            padding: 10px;
            height: auto;
        }
        .hero {
            padding-top: 120px;
            height: 65vh;
            min-height: 400px;

        }
        .grid-section {
            padding: 40px 20px;
             margin-top: -10px;
        }
            .cyber-divider {
        width: 90%; 
        margin: 0px auto 20px auto; 
    }
    }
    @media (max-width: 768px) {
  .hero-image-container {
    height: 45vh; /* Shrunk down for mobile */
    max-width: 90%;
  }
}


@media (max-width: 768px) {
  .hero-image-container {
    height: 55vh; 
    width: 100%;
  }
}
