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

body {
    font-family: system-ui, sans-serif;
    line-height: 1.6;
    color: #2b2b2b;
    background: #f4f1e8;
}

/* Containers */
.container {
    width: min(90%, 1200px);
    margin: 0 auto;
}

/* ========================= */
/* HERO */
/* ========================= */
.hero {
    background: url('/gallery/images/gallery2000x1200.webp') center/cover no-repeat;
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* ========================= */
/* INTRO */
/* ========================= */
.intro {
    padding: 40px 0;
    text-align: center;
    font-size: 1.2rem;
}

/* ========================= */
/* FEATURED ARTISTS */
/* ========================= */
.featured-artist-of-month {
    padding: 60px 0;
    background: #eef2ec;
}

.featured-artist-container .artist-card {
    max-width: 500px;
    margin: 0 auto;
}



.featured-artists {
    padding: 60px 0;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.artist-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.artist-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.artist-info {
    padding: 15px;
}

.artist-link {
    display: inline-block;
    margin-top: 10px;
    color: #1f3d2b;
    text-decoration: none;
    font-weight: bold;
}

/* ========================= */
/* GALLERY PREVIEW */
/* ========================= */
.gallery-preview {
    padding: 60px 0;
}

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

.art-tile {
    background: white;
    padding: 40px;
    border-radius: 6px;
}

/* ========================= */
/* EVENTS */
/* ========================= */
.events-preview {
    padding: 60px 0;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.event-card {
    background: white;
    padding: 20px;
    border-radius: 6px;
}

/* ========================= */
/* CTA */
/* ========================= */
.cta {
    background: #6b8f71;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: #1f3d2b;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

/* ========================= */
/* FOOTER */
/* ========================= */
.footer {
    background: #2b2b2b;
    color: #f4f1e8;
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Placeholder styling */
.placeholder {
    background: #ddd;
    text-align: center;
    padding: 40px 0;
    border-radius: 6px;
}