/* General Reset */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Lucida Console", "Monaco", "Courier New", monospace;
    color: #1a1a1a;
    overflow-x: hidden;
    background-color: #121212; /* subtle dark background behind image */
}

/* Background Image */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("artist-photo1.jpg") no-repeat center center / cover;
    filter: saturate(60%) brightness(60%);
    z-index: -1;
}

/* Layout */
#main-container {
    width: 100%;
    max-width: 480px;
    position: relative;
}

/* Status Bar */
.status-bar {
    font-size: 10px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #e0e0e0; /* softened white for better contrast with grey card */
    text-shadow: 1px 1px 1px #000;
}

/* Roygbiv Link */
.status-bar a,
.status-bar a:visited {
    position: relative;
    color: #caffbf;
    text-decoration: none;
    font-family: monospace;
}

/* Link hover glitch */
.status-bar a:hover {
    color: #00ffd5;
    text-shadow: 0 0 4px rgba(0, 255, 213, 0.6);
}

/* Profile Card */
.profile-card {
    background-color: #f2f2f2; /* light grey background */
    border: 3px solid #000;
    padding: 25px;
    box-shadow: 8px 8px 0px #000;
}

/* Image container */
.image-container {
    width: 100%;
    border: 1px solid #000;
    margin-bottom: 20px;
    overflow: hidden;
}

.artist-image {
    width: 100%;
    display: block;
    filter: grayscale(100%);
}

.artist-name {
    font-size: 1.5rem;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.divider {
    height: 2px;
    background-color: #000;
    margin-bottom: 20px;
}

.bio-section {
    font-size: 13px;
    line-height: 1.6;
}

/* Footer */
.footer {
    text-align: left;
    margin-top: 25px;
    font-size: 10px;
    color: #e0e0e0;
    text-shadow: 1px 1px 1px #000;
}

.footer-container {
    display: flex;
    gap: 10px; /* space between photos and quotes */
    align-items: flex-start;
}

/* Left column: stacked photos for desktop */
.footer-photos {
    display: flex;
    flex-direction: column;
    gap: 10px; /* space between photos */
}

/* Footer photos */
.footer .footer-photo {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
}

/* Right column: quotes */
.footer-quotes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-quotes p {
    margin: 0;
    font-size: 10px;
    line-height: 1.3;
}

/* MOBILE: revert to original perfect layout */
@media (max-width: 480px) {
    .footer-container {
        flex-direction: column; /* stack each quote separately */
        align-items: flex-start;
    }

    .footer-photos {
        flex-direction: row; /* photos side by side above each quote */
        gap: 10px;
        margin-bottom: 5px;
    }

    /* Optional: reduce photo size slightly on mobile */
    .footer .footer-photo {
        width: 25px;
        height: 25px;
    }
}




/* Mobile */
@media (max-width: 480px) {
    .profile-card {
        padding: 15px;
    }
}

/* CRT Scanlines */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 0px,
        rgba(0, 0, 0, 0.15) 1px,
        transparent 2px,
        transparent 4px
    );
    mix-blend-mode: overlay;
    z-index: 0;
}

/* Glitch link layers */
.status-bar a::before,
.status-bar a::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    pointer-events: none;
}

.status-bar a::before {
    color: #ff004c;
    transform: translate(1px, 0);
}

.status-bar a::after {
    color: #00ffd5;
    transform: translate(-1px, 0);
}

.status-bar a:hover::before {
    opacity: 1;
    animation: glitch 0.2s infinite;
}

.status-bar a:hover::after {
    opacity: 1;
    animation: glitch 0.15s infinite reverse;
}

@keyframes glitch {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-1px, 1px); }
    50% { transform: translate(1px, -1px); }
    75% { transform: translate(-1px, 0); }
    100% { transform: translate(0, 0); }
}
