:root {
    --olive-dark: #4a5240;
    --olive-medium: #7a8470;
    --olive-light: #c8d5bb;
    --olive-wash: #f0f4ed;
    --charcoal: #2d2d2d;
    --cream: #fdfbf7;
    --accent: #d4a574;
}

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

body {
    font-family: 'Karla', sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    letter-spacing: 0.03em;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    position: relative;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(180deg, var(--cream) 0%, rgba(253, 251, 247, 0.95) 80%, transparent 100%);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem 4rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

.logo {
    font-family: 'Cormorant', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--olive-dark);
    letter-spacing: 0.05em;
}

nav {
    display: flex;
    gap: 3rem;
}

nav a {
    color: var(--olive-medium);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--olive-dark);
    transition: width 0.3s ease;
}

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

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 120%;
    background: radial-gradient(circle, var(--olive-wash) 0%, transparent 70%);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-30px, -30px) rotate(3deg); }
    66% { transform: translate(30px, 30px) rotate(-3deg); }
}

.hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero p {
    font-size: 1.2rem;
    color: var(--olive-medium);
    max-width: 600px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--olive-dark);
    color: var(--cream);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    transition: all 0.3s ease;
    border: 1px solid var(--olive-dark);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    background: transparent;
    color: var(--olive-dark);
    transform: translateY(-2px);
}

/* Section Styling */
section {
    padding: 8rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

section:nth-child(even) {
    background: linear-gradient(180deg, transparent 0%, var(--olive-wash) 20%, var(--olive-wash) 80%, transparent 100%);
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    font-weight: 300;
}

/* Decorative elements */
h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent);
}

/* About Artist Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.about-image-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--olive-light) 0%, var(--olive-wash) 100%);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--olive-medium);
    font-size: 0.9rem;
    font-style: italic;
    animation: fadeIn 1s ease-out 0.3s both;
}

/* Contact Section */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--olive-dark);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--olive-light);
    background: var(--cream);
    font-family: 'Karla', sans-serif;
    font-size: 1rem;
    color: var(--charcoal);
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--olive-dark);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button[type="submit"] {
    width: 100%;
    padding: 1.2rem;
    background: var(--olive-dark);
    color: var(--cream);
    border: 1px solid var(--olive-dark);
    font-family: 'Karla', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

button[type="submit"]:hover:not(:disabled) {
    background: transparent;
    color: var(--olive-dark);
}

button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

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

/* Success/Error messages */
.success-message,
.error-message {
    display: none;
    padding: 1.5rem;
    border-radius: 2px;
    margin-bottom: 2rem;
    text-align: center;
}

.success-message {
    background: var(--olive-wash);
    border: 1px solid var(--olive-light);
    color: var(--olive-dark);
}

.error-message {
    background: #fef0f0;
    border: 1px solid #f5c6c6;
    color: #c53030;
}

.success-message.show,
.error-message.show {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    header.scrolled {
        padding: 1rem 2rem;
    }

    nav {
        gap: 1.5rem;
    }

    nav a {
        font-size: 0.85rem;
    }

    .hero {
        padding: 6rem 2rem 2rem;
    }

    section {
        padding: 4rem 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    footer {
        padding: 2rem;
    }
}
