/* ============================================
   BEA BEDNEY ARTIST PORTFOLIO
   Refined minimalism. Let the work shine.
   ============================================ */

:root {
    --primary: #000;
    --secondary: #333;
    --light: #f8f8f8;
    --border: #e0e0e0;
    --text: #222;
    --text-light: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #fff;
    font-size: 16px;
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    margin-top: 0;
}

h3 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.7;
}

a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s ease;
}

a:hover {
    border-bottom-color: var(--primary);
}

/* Navigation */
.navbar {
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    border: none;
}

.logo:hover {
    opacity: 0.7;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text);
    border: none;
}

.nav-links a:hover {
    color: var(--text-light);
}

/* Main content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero section */
.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 0;
    align-items: center;
}

.hero-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text h1 {
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--primary);
    border-radius: 2px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--primary);
}

.cta-button:hover {
    background: var(--primary);
    color: #fff;
}

/* Content sections */
.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    margin-bottom: 2rem;
}

.statement-content,
.bio-content,
.contact-content {
    max-width: 800px;
}

.statement-content p,
.bio-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
}

/* Work/Gallery */
.work-section {
    padding: 4rem 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    display: flex;
    flex-direction: column;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1rem;
    background: var(--light);
}

.image-details {
    padding: 0 0.5rem;
}

.image-details .title {
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.image-details .metadata {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* CV */
.cv-section {
    padding: 4rem 0;
    max-width: 900px;
}

.cv-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.cv-header p {
    margin-bottom: 0.5rem;
}

.cv-entry {
    margin-bottom: 2rem;
}

.cv-entry p {
    margin-bottom: 0.5rem;
    display: flex;
    gap: 2rem;
}

.year {
    font-weight: 500;
    min-width: 60px;
    flex-shrink: 0;
}

.cv-download {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.cv-download a {
    font-weight: 500;
}

/* Press */
.press-content {
    max-width: 800px;
}

.press-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.press-item:last-child {
    border-bottom: none;
}

.press-date {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.press-publication {
    margin-bottom: 0.25rem;
    font-style: italic;
    color: var(--text-light);
}

.press-title {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.press-author {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact */
.contact-content {
    font-size: 1.1rem;
}

.contact-email {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 1.5rem 0;
}

.contact-email a {
    border: none;
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 4rem;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    main {
        padding: 0 1rem;
    }

    .hero {
        padding: 2rem 0;
        gap: 1rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .content-section {
        padding: 2rem 0;
    }

    .cv-entry p {
        flex-direction: column;
        gap: 0;
    }

    .year {
        margin-bottom: 0.5rem;
    }

    footer {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 0.75rem;
    }

    .nav-links a {
        font-size: 0.75rem;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .cta-button {
        display: block;
        text-align: center;
    }
}
