/* ═══════════════════════════════════════════════════════════
   XXL ART — Content 3 Design System
   Apple-Style Clean Layout für Stile, Farben, Größen, Räume
   
   Einbinden in: /assets/css/content3.css
   Oder direkt in main.css
   ═══════════════════════════════════════════════════════════ */

/* ── Basis Reset für content_3 Bereiche ─────────────────── */

:root{
	--white-muted : rgba(255,255,255,0.618);
	--item-gap: 24px;
	--item-bg: rgba(255, 255, 255, 0.0668);
	--item-bg-hover: rgba(255, 255, 255, 0.1);
	--icon-size: 48px;
}

.content-3 ul,
.c3-block ul 
{
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ── Section Label (H2) ─────────────────────────────────── */
.content-3 h2,
.c3-block h2 {
    font-size: var(--text-xl);
    font-weight: 600;
    /* letter-spacing: 0.12em; */
    text-transform: uppercase;
    color: rgba(255,255,255,1);
    margin-bottom: 14px;
    margin-top: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.content-3 h2:first-child,
.c3-block h2:first-child {
    margin-top: 0;
}

/* ═══════════════════════════════════════════════════════════
   STILE — Grid Layout mit Icons
   Erkennung: erste <ul> nach H2 mit "Stile" oder Maltechnik-Links
   ═══════════════════════════════════════════════════════════ */
.c3-stile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1px;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 8px;
}
.c3-stile-item {
    background: var(--item-bg);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.15s;
    text-decoration: none;
    flex-direction: column;
}
.c3-stile-item:hover { background: var(--item-bg-hover); }
.c3-stile-icon {
    width: var(--icon-size);
    height: var(--icon-size);
    flex-shrink: 0;
    opacity: 0.6;
}

.c3-stile-icon svg{
    width: var(--icon-size);
    height: var(--icon-size);
}

.c3-stile-name {
    font-size: var(--text-base);
    font-weight: 500;
    color: #e8e8e8;
    display: block;
}
.c3-stile-desc {
    font-size: var(--text-base-s);
    color: var(--white-muted);
    display: block;
    margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   FARBEN — Pill Layout mit Farbpunkt
   ═══════════════════════════════════════════════════════════ */
.c3-farben-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--item-gap);
    margin-bottom: 8px;
}
.c3-farb-pill {
    display: flex;
    align-items: center;
    gap: var(--item-gap);
    padding: 14px 24px 14px 24px;
    border-radius: 100px;
    background: var(--item-bg);
    font-size: var(--text-base-s);
    color: #e8e8e8;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}
.c3-farb-pill:hover {
    background: var(--item-bg-hover);
    border-color: rgba(255,255,255,0.15);
}
.c3-farb-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
}
.c3-farb-name { font-size: var(--text-base); display: block; }
.c3-farb-desc {
    font-size: var(--text-base-s);
    color: var(--white-muted);
    display: block;
    margin-top: 1px;
}

/* ═══════════════════════════════════════════════════════════
   FARBGRUPPEN — Card Grid
   ═══════════════════════════════════════════════════════════ */
.c3-farbgruppen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--item-gap);
    margin-bottom: 8px;
}
.c3-farbgruppe-card {
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--item-bg);
    text-decoration: none;
    transition: background 0.15s;
    display: block;
}
.c3-farbgruppe-card:hover { background: var(--item-bg-hover); }
.c3-farbgruppe-name {
    font-size: var(--text-base);
    font-weight: 500;
    color: #e8e8e8;
    display: block;
    margin-bottom: 3px;
}
.c3-farbgruppe-desc {
    font-size: var(--text-base-s);
    color: var(--white-muted);
    display: block;
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   GRÖSSEN — Table Layout
   ═══════════════════════════════════════════════════════════ */
.c3-groessen-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 8px;
}
.c3-groessen-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.c3-groessen-table tr:last-child { border-bottom: none; }
.c3-groessen-cat {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    /* letter-spacing: 0.08em; */
    text-transform: uppercase;
    color: var(--white-muted);
    padding: 12px 16px 12px 0;
    width: 90px;
    vertical-align: top;
    white-space: nowrap;
}
.c3-groessen-tags {
    padding: 8px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.c3-groessen-tag {
    font-size: var(--text-base-s);
    padding: 5px 12px;
    border-radius: 6px;
    background: var(--item-bg);
    color: #e8e8e8;
    text-decoration: none;
    transition: background 0.15s;
}
.c3-groessen-tag:hover { background: var(--item-bg-hover); }

/* ═══════════════════════════════════════════════════════════
   RÄUME — Icon Cards Grid
   ═══════════════════════════════════════════════════════════ */
.c3-raeume-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: var(--item-gap);
    margin-bottom: 8px;
}
.c3-raum-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    background: var(--item-bg);
    text-decoration: none;
    transition: background 0.15s;
    flex-direction: column;
}
.c3-raum-item:hover { background: var(--item-bg-hover); }
.c3-raum-icon {
    width: var(--icon-size);
    height: var(--icon-size);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.c3-raum-icon svg {
    width: var(--icon-size);
    height: var(--icon-size);
    stroke: rgba(255,255,255,0.6);
}
.c3-raum-name {
    font-size: var(--text-base);
    color: #e8e8e8;
    font-weight: 500;
    display: block;
}
.c3-raum-desc {
    font-size: var(--text-base-s);
    color: rgba(255, 255, 255, 0.618);
    display: block;
    margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   CROSS-LINKS — Horizontal Pill Row
   ═══════════════════════════════════════════════════════════ */
.c3-crosslinks {
    display: flex;
    flex-wrap: wrap;
    gap: var(--item-gap);
    margin-bottom: 8px;
}
.c3-crosslink-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    background: var(--item-bg);
    font-size: var(--text-base-s);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.15s;
}
.c3-crosslink-item:hover {
    background: var(--item-bg-hover);
    border-color: rgba(200,169,110,0.2);
    color: rgba(200,169,110,0.9);
}
.c3-crosslink-arrow {
    font-size: 10px;
    opacity: 0.4;
}


/* ── Use Cases — Wo das Gemälde am besten wirkt ────────── */
.c3-use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--item-gap);
    margin-bottom: 8px;
}
.c3-use-case-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 10px;
    background: var(--item-bg);
    text-decoration: none;
    transition: background 0.15s;
        align-items: center;
}
.c3-use-case-item:hover { background: var(--item-bg-hover); }
.c3-use-case-place {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    display:block;
    text-align:center;
}
.c3-use-case-size {
    font-size: var(--text-base-s);
    color: var(--gold, #c8a96e);
    letter-spacing: 0.03em;
}
.c3-use-case-desc {
    font-size: var(--text-base-s);
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 2px;
}

/* ── Interior — Einrichtungsstile ───────────────────────── */
.c3-interior-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--item-gap);
    margin-bottom: 8px;
}
.c3-interior-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 10px;
    background: var(--item-bg);
    text-decoration: none;
    transition: background 0.15s;
}
.c3-interior-item:hover { background: var(--item-bg-hover); }
.c3-interior-name {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
}
.c3-interior-desc {
    font-size: var(--text-base-s);
    color: var(--text-muted);
    line-height: 1.4;
}
