@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

:root {
    --accent: #ff4444;       /* PDF soft red */
    --accent-light: hsl(5, 100%, 62%); /* lighter pop */
    --dark: #111;
    --nearwhite: #bdbdbd;
}

/* BODY */
body {
    margin: 0;
    background: var(--nearwhite);
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Fade Animation */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 6rem 1.5rem 4rem;
    animation: fadeUp 1s ease;
    background: linear-gradient(180deg, var(--accent-light) 0%, #7c0808 40%);
}

/* MAIN TITLE */
.main-title {
    font-size: 3rem;
    letter-spacing: 0.45rem;
    font-weight: 700;
    color: var(--dark);
}

/* SUB-TITLE */
.sub-title {
    margin-top: 0.4rem;
    font-size: 1.1rem;
    color: var(--accent);
    opacity: 0.8;
    letter-spacing: 0.30rem;
}

/* NAV LINKS */
.nav-links {
    margin-top: 2.8rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
    letter-spacing: 0.1rem;
    transition: 0.3s ease;
    position: relative;
}

/* Bold hover + underline */
.nav-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: 0.35s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* SECTIONS */
.section {
    
    padding: 4rem 1rem;
    text-align: center;
    animation: fadeUp 1s ease; 
    /* BLACK SEPARATOR BAR */
.separator {
    width: 100%;
    height: 6px;
    background: #000000;
    margin: 3.5rem 0;
    border-radius: 2px;
}

}

/* Section Title with Pop */
.section-title {
    font-size: 1.8rem;
    letter-spacing: 0.35rem;
    color: var(--accent);
    margin-bottom: 2rem;
    text-shadow: 0px 2px 10px rgba(217, 106, 104, 0.3);
}

/* ALBUM GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Album Cards with POP design */
.album {
    animation: fadeUp 1s ease;
    transform-origin: center;
}

/* Album images glow and vibrant hover effect */
.album img {
    width: 100%;
    border-radius: 12px;
    transition: 0.4s ease;
    box-shadow: 0px 8px 18px rgba(0,0,0,0.15);
}

.album img:hover {
    transform: scale(1.06);
    box-shadow: 0px 14px 30px rgba(102, 61, 61, 0.45);
    filter: saturate(1.2);
}

/* Album Text */
.album p {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    letter-spacing: 0.20rem;
    opacity: 0.9;
    transition: 0.3s ease;
}

.album p:hover {
    color: var(--accent);
    opacity: 1;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 2.5rem 0;
    font-size: 0.8rem;
    opacity: 0.7;
    letter-spacing: 0.15rem;
    background: linear-gradient(180deg, #ffffff, var(--accent-light));
}
