/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: #fff;
    overflow-x: hidden;
    background: #000;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Full-page Hero Image */
.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.hero__image {
    width: 100%;
    height: 100%;
    display: block;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* vCard Overlay - MoMA Gallery Card Style */
.vcard {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 3rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 40%, transparent 100%);
    text-align: center;
}

.vcard__content {
    max-width: 600px;
    margin: 0 auto;
}

/* Museum Label Elements */
.museum-label__artist {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.museum-label__artist .fn {
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
}

.museum-label__title {
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-bottom: 0.5rem;
    opacity: 0.85;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.museum-label__title .title {
    font-style: italic;
}

.museum-label__title .year {
    font-style: normal;
}

.museum-label__medium {
    font-size: clamp(0.8125rem, 1.25vw, 0.875rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-bottom: 0.375rem;
    opacity: 0.75;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.museum-label__place {
    font-size: clamp(0.8125rem, 1.25vw, 0.875rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-bottom: 1.5rem;
    opacity: 0.75;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.museum-label__nav {
    margin-top: 0.75rem;
}

.museum-label__nav-link {
    color: #fff;
    text-decoration: none;
    font-size: clamp(0.8125rem, 1.25vw, 0.875rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.museum-label__nav-link:hover,
.museum-label__nav-link:focus {
    opacity: 1;
    text-decoration: underline;
}

.museum-label__nav-link--disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Credits Section - Album/Film Credit Style */
.credits {
    font-size: clamp(0.8125rem, 1.25vw, 0.875rem);
    line-height: 1.6;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.credits__contact {
    margin-bottom: 0.75rem;
}

.credits__line {
    margin-bottom: 0.35rem;
}

.credits__label {
    opacity: 0.7;
}

.credits__separator {
    opacity: 0.7;
}

.credits a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.credits a:hover,
.credits a:focus {
    opacity: 0.7;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vcard {
        padding: 2rem 1.5rem;
    }

    .museum-label__artist {
        margin-bottom: 0.375rem;
    }

    .museum-label__title {
        margin-bottom: 0.375rem;
    }
}

@media (max-width: 480px) {
    .vcard {
        padding: 1.75rem 1.25rem;
    }

    .credits {
        font-size: 0.75rem;
    }
}

/* Print Styles - vCard friendly */
@media print {
    .hero {
        position: static;
        height: auto;
        page-break-after: always;
    }

    .vcard {
        position: static;
        background: #fff;
        color: #000;
        padding: 3rem 2rem;
    }

    .museum-label__artist,
    .museum-label__title,
    .museum-label__medium,
    .museum-label__place,
    .museum-label__nav-link,
    .credits {
        color: #000;
        text-shadow: none;
    }

    .credits a,
    .museum-label__nav-link {
        color: #000;
        text-shadow: none;
    }

    .about-page {
        background: #fff;
        color: #000;
    }

    .about-name,
    .about-tagline,
    .about-tagline__link,
    .about-section__title,
    .about-section__text,
    .about-links {
        color: #000;
        text-shadow: none;
    }

    .about-page .about-links a,
    .about-tagline__link {
        color: #000;
    }
}

/* Name Link Styling */
.fn__link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
    display: inline-block;
}

.fn__link:hover,
.fn__link:focus {
    opacity: 0.7;
}

/* About Page - Minimalist Museum Layout */
.about-page {
    background: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.about-content {
    max-width: 500px;
    width: 100%;
}

.about-header {
    text-align: left;
    margin-bottom: 3rem;
}

.about-name {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 0.375rem;
}

.about-tagline {
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    font-weight: 400;
    font-style: italic;
    opacity: 0.7;
}

.about-tagline__link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.about-tagline__link:hover,
.about-tagline__link:focus {
    opacity: 0.5;
}

.about-sections {
    margin-bottom: 3rem;
}

.about-section {
    margin-bottom: 2.5rem;
}

.about-section__title {
    font-size: clamp(0.75rem, 1.25vw, 0.8125rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 0.75rem;
}

.about-section__text {
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.85;
}

.about-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-links li {
    margin-bottom: 0.5rem;
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    line-height: 1.6;
    opacity: 0.85;
}

.about-page .about-links a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.about-page .about-links a:hover,
.about-page .about-links a:focus {
    opacity: 0.6;
    text-decoration: underline;
}

.about-links--compact li {
    margin-bottom: 0.25rem;
    font-size: clamp(0.875rem, 1.25vw, 0.9375rem);
}

/* Mobile adjustments for about page */
@media (max-width: 480px) {
    .about-page {
        padding: 3rem 1.5rem;
    }

    .about-header {
        margin-bottom: 2rem;
    }
}
