/* ===============================
   GLOBAL STYLES
   =============================== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    text-align: center;
    scroll-behavior: smooth;
}

h1, h2 {
    color: #ff00aa;
    text-shadow: 0 0 10px #ff00aa, 0 0 20px #ff00aa;
}

a {
    color: #ff00aa;
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
}

a:hover {
    text-shadow: 0 0 5px #ff00aa, 0 0 15px #ff00aa;
}

section {
    padding: 60px 20px;
    padding-top: 80px; /* Extra top padding so content isn't hidden behind nav */
}

/* Lyrics link styling */
.lyrics-link {
    display: inline-block;
    background-color: #ff00aa;
    color: black;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 0 10px #ff00aa, 0 0 20px #ff00aa;
}

.lyrics-link:hover {
    background-color: #ff33bb;
    transform: scale(1.05);
}


/* ===============================
   LOGO ANIMATION
   =============================== */
.logo {
    width: 200px;
    animation: neonPulse 2s infinite;
}

@keyframes neonPulse {
    0% { filter: drop-shadow(0 0 5px #ff00aa) drop-shadow(0 0 10px #ff00aa); }
    50% { filter: drop-shadow(0 0 15px #ff00aa) drop-shadow(0 0 30px #ff00aa); }
    100% { filter: drop-shadow(0 0 5px #ff00aa) drop-shadow(0 0 10px #ff00aa); }
}

/* ===============================
   NAVIGATION BAR
   =============================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    font-weight: bold;
    color: #ff00aa;
    text-transform: uppercase;
}

nav a:hover {
    text-shadow: 0 0 5px #ff00aa, 0 0 15px #ff00aa;
}

/* ===============================
   PLACEHOLDER BOX
   =============================== */
.placeholder {
    background: #222;
    padding: 50px;
    color: #ff00aa;
    border: 1px solid #ff00aa;
}

/* ===============================
   GALLERY GRID
   =============================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    padding: 10px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ===============================
   LIGHTBOX
   =============================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
}

/* Lightbox Close Button */
.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    user-select: none;
    z-index: 10001;
}

/* Navigation arrows inside lightbox */
.lightbox .prev, .lightbox .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    transition: background 0.3s;
    border-radius: 5px;
    z-index: 10001;
}

.lightbox .prev:hover, .lightbox .next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox .prev { left: 20px; }
.lightbox .next { right: 20px; }
