@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary-stone-800: #292524;
    --primary-stone-600: #57534e;
    --primary-stone-500: #78716c;
    --primary-stone-300: #d6d3d1;
    --primary-stone-100: #f5f5f4;
    --accent-amber-700: #b45309;
    --accent-amber-800: #92400e;
    --bg-stone-50: #fafaf9;
    --text-primary: #292524;
    --text-secondary: #57534e;
    --bg-white: #ffffff;
    --border-stone-200: #e7e5e4;
    --border-stone-300: #d6d3d1;
    --bg-stone-100: #f5f5f4;
    --shadow-md: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-stone-50);
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.bg-stone-50 {
    background-color: var(--bg-stone-50);
}

.bg-white {
    background-color: var(--bg-white);
}

.bg-stone-100 {
    background-color: var(--bg-stone-100);
}

.bg-stone-900 {
    background-color: var(--primary-stone-800);
}

.bg-amber-700 {
    background-color: var(--accent-amber-700);
}

.text-stone-800 {
    color: var(--primary-stone-800);
}

.text-stone-600 {
    color: var(--primary-stone-600);
}

.text-stone-400 {
    color: var(--primary-stone-500);
}

.text-stone-500 {
    color: var(--primary-stone-500);
}

.text-white {
    color: var(--bg-white);
}

.text-amber-700 {
    color: var(--accent-amber-700);
}

.bg-gradient-to-br {
    background: linear-gradient(135deg, var(--primary-stone-100), #fef3c7);
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.z-50 {
    z-index: 50;
}

.shadow-sm {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.shadow-md {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.rounded-lg {
    border-radius: 0.5rem;
}

.max-w-7xl {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.px-4,
.px-6,
.px-8 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-3,
.py-4,
.py-6,
.py-8,
.py-12,
.py-20 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-4,
.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.space-y-1 > * + * {
    margin-top: 0.25rem;
}

.space-y-2 > * + *,
.space-x-2 > * + * {
    margin-top: 0.5rem;
}

.space-x-8 > * + * {
    margin-left: 2rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-4,
.gap-8,
.gap-12 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

.text-center {
    text-align: center;
}

.mb-2,
.mb-3,
.mb-4,
.mb-6,
.mb-8,
.mb-12,
.mb-16 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-2,
.mt-4,
.mt-6,
.mt-8,
.mt-12 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-16 {
    margin-top: 4rem;
}

.text-3xl,
.text-4xl,
.text-5xl,
.text-6xl,
.text-7xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.text-7xl {
    font-size: 4.5rem;
    line-height: 1;
}

.text-lg,
.text-xl,
.text-2xl {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-light,
.font-normal {
    font-weight: 400;
}

.font-light {
    font-weight: 300;
}

.aspect-square {
    aspect-ratio: 1/1;
}

.overflow-hidden {
    overflow: hidden;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.border-t {
    border-top: 1px solid var(--border-stone-200);
}

.border-b {
    border-bottom: 1px solid var(--border-stone-200);
}

.border-2 {
    border-width: 2px;
}

.border-stone-300 {
    border-color: var(--border-stone-300);
}

.border-stone-700 {
    border-color: var(--primary-stone-600);
}

.rounded {
    border-radius: 0.25rem;
}

.cursor-pointer {
    cursor: pointer;
}

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

.transition-transform {
    transition: transform 0.3s ease;
}

.transition-colors {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.transition-all {
    transition: all 0.3s ease;
}

.duration-300 {
    transition-duration: 300ms;
}

.shadow-md,
.shadow-lg {
    box-shadow: 0 4px 6px var(--shadow-md);
}

.shadow-lg {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.bg-stone-200 {
    background-color: var(--border-stone-300);
}

.bg-stone-300 {
    background-color: var(--primary-stone-500);
}

object-cover {
    object-fit: cover;
}

.w-full,
.h-full,
.w-6,
.h-6,
.w-full {
    width: 100%;
    height: 100%;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.w-full {
    width: 100%;
}

.min-w-0 {
    min-width: 0;
}

.hover\:bg-amber-800:hover {
    background-color: var(--accent-amber-800);
}

.hover\:border-amber-700:hover {
    border-color: var(--accent-amber-700);
}

.hover\:text-amber-700:hover {
    color: var(--accent-amber-700);
}

.hover\:text-white:hover {
    color: var(--bg-white);
}

.hover\:bg-stone-700:hover {
    background-color: var(--primary-stone-600);
}

.hover\:scale-110:hover {
    transform: scale(1.1);
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.max-w-3xl {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.pt-2 {
    padding-top: 0.5rem;
}

@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }

    .md\:hidden {
        display: none;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }

    .md\:text-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }

    .md\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:space-x-4 > * + * {
        margin-left: 1rem;
    }

    .md\:space-x-8 > * + * {
        margin-left: 2rem;
    }

    .md\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .md\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

nav {
    transition: all 0.3s ease;
}

nav.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.artwork-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artwork-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.artwork-card img {
    transition: transform 0.5s ease;
}

.artwork-card:hover img {
    transform: scale(1.05);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-amber-700);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--accent-amber-800);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-stone-800);
    border: 2px solid var(--border-stone-300);
}

.btn-secondary:hover {
    border-color: var(--accent-amber-700);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.footer-links a {
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--bg-white);
}

input,
textarea,
select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-stone-300);
    border-radius: 0.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent-amber-700);
    box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.1);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-stone-800);
    font-weight: 600;
}

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

.form-section {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px var(--shadow-md);
}

.form-section h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-stone-800);
    font-size: 1.5rem;
}

.image-option {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.5rem;
    border: 2px solid var(--border-stone-200);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-option:hover,
.image-option.selected {
    border-color: var(--accent-amber-700);
    background-color: #fffbeb;
}

.image-option img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 0.25rem;
}

.size-option {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-stone-300);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-option:hover,
.size-option.selected {
    background-color: var(--accent-amber-700);
    color: var(--bg-white);
    border-color: var(--accent-amber-700);
}

.print-quality {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.price-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-amber-700);
    margin: 1rem 0;
}

.order-form {
    max-width: 800px;
    margin: 0 auto;
}

@media print {
    .no-print {
        display: none;
    }
}