/* =============================================
   Wall Bloom Studio - Public Site Styles
   ============================================= */

:root {
    --primary: #2d6a4f;
    --primary-light: #40916c;
    --accent: #d4a574;
    --bg: #faf8f5;
    --bg-card: #ffffff;
    --text: #2c2c2c;
    --text-light: #6b6b6b;
    --text-muted: #999;
    --border: #e8e4df;
    --radius: 12px;
    --shadow: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ──────────────────────────── */
.btn {
    display: inline-block; padding: 12px 28px; border-radius: 8px;
    font-weight: 500; text-decoration: none; cursor: pointer;
    border: none; font-size: 15px; transition: all 0.2s;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); }
.btn-large { padding: 16px 36px; font-size: 17px; width: 100%; text-align: center; }

/* ── Navbar ───────────────────────────── */
.navbar {
    background: white; border-bottom: 1px solid var(--border);
    padding: 16px 0; position: sticky; top: 0; z-index: 100;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.brand-icon { font-size: 24px; }
.brand-text { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { text-decoration: none; color: var(--text-light); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }

/* ── Hero ─────────────────────────────── */
.hero {
    text-align: center; padding: 100px 0 80px;
    background: linear-gradient(135deg, #f0ebe3 0%, #e8f5e9 100%);
}
.hero h1 { font-size: 52px; line-height: 1.15; margin-bottom: 20px; color: var(--text); }
.hero-subtitle { font-size: 18px; color: var(--text-light); max-width: 600px; margin: 0 auto 32px; line-height: 1.7; }

/* ── How It Works ─────────────────────── */
.how-it-works { padding: 60px 0; background: white; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.step-number {
    width: 48px; height: 48px; border-radius: 50%; background: var(--primary);
    color: white; font-weight: 700; font-size: 20px; display: flex;
    align-items: center; justify-content: center; margin: 0 auto 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-light); font-size: 14px; }

/* ── Sections ─────────────────────────── */
.section-title { text-align: center; font-size: 36px; margin-bottom: 12px; }
.section-subtitle { text-align: center; color: var(--text-light); margin-bottom: 48px; }
.collections-section { padding: 80px 0; }
.featured-section { padding: 80px 0; background: white; }
.about-section { padding: 80px 0; }

/* ── Collection Cards ─────────────────── */
.collections-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.collection-card {
    background: white; border-radius: var(--radius); overflow: hidden;
    text-decoration: none; color: var(--text); box-shadow: var(--shadow);
    transition: all 0.3s;
}
.collection-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.collection-image { height: 240px; overflow: hidden; background: #e8e4df; }
.collection-image img { width: 100%; height: 100%; object-fit: cover; }
.collection-image.no-image { display: flex; align-items: center; justify-content: center; }
.collection-image.no-image::after { content: '🖼️ Coming Soon'; color: var(--text-muted); font-size: 16px; }
.collection-info { padding: 24px; }
.collection-info h3 { margin-bottom: 8px; font-size: 22px; }
.collection-info p { color: var(--text-light); font-size: 14px; margin-bottom: 12px; }
.collection-count { font-size: 13px; color: var(--primary); font-weight: 500; }

/* ── Art Grid ─────────────────────────── */
.art-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.art-card {
    background: white; border-radius: var(--radius); overflow: hidden;
    text-decoration: none; color: var(--text); box-shadow: var(--shadow);
    transition: all 0.3s;
}
.art-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.art-image { height: 220px; overflow: hidden; background: #e8e4df; }
.art-image img { width: 100%; height: 100%; object-fit: cover; }
.art-image.no-image { display: flex; align-items: center; justify-content: center; }
.art-image.no-image::after { content: '🖼️'; font-size: 40px; }
.art-info { padding: 16px; }
.art-info h4 { margin-bottom: 6px; font-size: 16px; }
.art-theme { font-size: 13px; color: var(--text-muted); display: block; margin-bottom: 8px; }
.art-price { font-size: 15px; font-weight: 600; color: var(--primary); }
.art-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }

.tag {
    background: #f0ebe3; color: var(--text-light); font-size: 11px;
    padding: 3px 10px; border-radius: 20px;
}

/* ── Art Detail ───────────────────────── */
.breadcrumb { display: inline-block; margin-bottom: 20px; color: var(--primary); text-decoration: none; font-size: 14px; }
.breadcrumb:hover { text-decoration: underline; }

.art-detail { padding: 40px 0 80px; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.main-image { border-radius: var(--radius); overflow: hidden; background: #e8e4df; margin-bottom: 12px; }
.main-image img { width: 100%; display: block; }
.main-image.no-image { height: 400px; display: flex; align-items: center; justify-content: center; }
.main-image.no-image::after { content: '🖼️ Image Coming Soon'; font-size: 18px; color: var(--text-muted); }
.image-thumbs { display: flex; gap: 8px; }
.thumb { width: 80px; height: 60px; object-fit: cover; border-radius: 6px; cursor: pointer; opacity: 0.6; border: 2px solid transparent; transition: all 0.2s; }
.thumb.active, .thumb:hover { opacity: 1; border-color: var(--primary); }

.detail-info { }
.detail-collection { font-size: 13px; color: var(--primary); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.detail-info h1 { font-size: 32px; margin: 8px 0 20px; }
.detail-price { background: #f0ebe3; padding: 16px 20px; border-radius: 8px; margin-bottom: 20px; }
.price { font-size: 28px; font-weight: 700; color: var(--text); }
.price-note { display: block; font-size: 13px; color: var(--text-light); margin-top: 4px; }
.detail-features, .detail-how { margin: 28px 0; }
.detail-features h3, .detail-how h3 { font-size: 16px; margin-bottom: 12px; }
.detail-features ul, .detail-how ol { padding-left: 20px; }
.detail-features li, .detail-how li { margin-bottom: 6px; font-size: 14px; color: var(--text-light); }
.print-tip { font-size: 13px; color: var(--text-muted); font-style: italic; margin-top: 8px; }
.detail-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }

.more-art { padding: 60px 0; background: white; }
.more-art h2 { text-align: center; margin-bottom: 32px; }

/* ── Collection Page ──────────────────── */
.collection-hero { padding: 60px 0 40px; background: linear-gradient(135deg, #f0ebe3 0%, #e8f5e9 100%); }
.collection-hero h1 { font-size: 40px; margin-bottom: 12px; }
.collection-desc { color: var(--text-light); font-size: 16px; max-width: 600px; margin-bottom: 8px; }
.collection-meta { color: var(--text-muted); font-size: 14px; }
.collection-gallery { padding: 48px 0 80px; }

/* ── About ────────────────────────────── */
.about-content { max-width: 700px; margin: 0 auto; text-align: center; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--text-light); margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.feature { text-align: center; }
.feature strong { display: block; font-size: 14px; margin-bottom: 4px; }
.feature span { font-size: 13px; color: var(--text-muted); }

/* ── Footer ───────────────────────────── */
.footer { background: #2c2c2c; color: #ccc; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .brand-text { color: white; }
.footer-brand p { margin-top: 8px; font-size: 14px; }
.footer-links h4 { color: white; margin-bottom: 16px; font-size: 14px; font-family: 'Inter', sans-serif; font-weight: 600; }
.footer-links a { display: block; color: #aaa; text-decoration: none; font-size: 14px; margin-bottom: 8px; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid #444; padding-top: 20px; font-size: 13px; color: #888; }

/* ── Responsive ───────────────────────── */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .steps-grid { grid-template-columns: 1fr; gap: 24px; }
    .collections-grid { grid-template-columns: 1fr; }
    .detail-grid { grid-template-columns: 1fr; gap: 24px; }
    .about-features { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .nav-links { display: none; }
}
