/* Clean, Minimalist Style */

/* Base Typography */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Inter', sans-serif;
    color: #111827;
    background-color: #ffffff;
}

h1,
h2,
h3,
h4,
.font-serif {
    font-family: 'Lora', serif;
}

/* Utilities */
.text-balance {
    text-wrap: balance;
}

/* Subtle fade in, no excessive movement */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 0.6s ease-out forwards;
}

/* Simple Art Card */
.art-card {
    border: 1px solid #f3f4f6;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.art-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.art-card img {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.art-caption {
    padding: 1rem;
}

/* Simple masonry if needed */
.masonry-grid {
    column-count: 1;
    column-gap: 1.5rem;
}

@media (min-width: 640px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .masonry-grid {
        column-count: 3;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
}

/* Elegant standard button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: #111827;
    color: #ffffff;
    font-weight: 500;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #374151;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: #f3f4f6;
    color: #111827;
    font-weight: 500;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.btn-secondary:hover {
    background-color: #e5e7eb;
}