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

:root {
    --color-bg: #fafafa;
    --color-text: #1a1a1a;
    --color-text-light: #666;
    --color-accent: #2a2a2a;
    --color-border: #e0e0e0;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--color-text);
}

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

nav a {
    text-decoration: none;
    color: var(--color-text-light);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
}

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

/* Sections */
section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

#hero p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-top: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Gallery */
#gallery {
    text-align: center;
}

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

.artwork {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.artwork:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.artwork img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.artwork-info {
    padding: 1.5rem;
    text-align: left;
}

.artwork-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.artwork-info p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* About */
#about {
    text-align: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        text-align: left;
    }
}

.artist-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
}

.about-text {
    max-width: 500px;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

/* Contact */
#contact {
    text-align: center;
    background: #fff;
    border-radius: 8px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.contact-content p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-accent);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.2s;
}

.btn:hover {
    background: #000;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

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

/* Placeholder images */
.artwork img[src*="placeholder"] {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.artist-photo[src*="artist"] {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}
