/*
Theme Name: Luxury Art Market
Author: Gemini
Description: A premium digital art marketplace theme with gold accents and a deep navy aesthetic.
Version: 1.0
Text Domain: luxury-art-market
*/

/* --- THEME VARIABLES --- */
:root {
    --primary-blue: #0b2239;
    --gold-bright: #d4af37;
    --gold-muted: #c0914c;
    --cream-bg: #f8f3e9;
    --white: #ffffff;
    --navy-text: #0d3b66;
    --gradient-header: linear-gradient(90deg, #10375c 0%, #007580 100%);
}

/* --- RESET & GLOBAL --- */
body {
    background-color: var(--primary-blue);
    margin: 0;
    padding: 40px 0 120px 0;
    font-family: 'Times New Roman', Times, serif;
}

.main-wrapper {
    background-color: var(--cream-bg);
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    position: relative;
}

/* --- HEADER NAV --- */
.header-nav {
    background: var(--gradient-header);
    border: 1px solid var(--gold-bright);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    justify-content: center;
    gap: 50px;
    color: var(--white);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* --- ART GRID --- */
.art-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.art-card {
    background: var(--white);
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s ease;
}

.art-card:hover { transform: translateY(-5px); }

.art-img-placeholder {
    height: 130px;
    background: #e0e0e0;
    margin-bottom: 10px;
    border-radius: 4px;
}

.price-tag { 
    display: block; 
    font-weight: bold; 
    font-size: 18px; 
    color: var(--navy-text);
}

.stock-tag { 
    font-size: 12px; 
    color: #555; 
    text-transform: uppercase;
}

/* --- BUTTONS --- */
.gold-btn {
    background: var(--gradient-header);
    color: var(--gold-bright);
    border: 1px solid var(--gold-bright);
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    cursor: pointer;
}

/* --- FOOTER CLUB BOX --- */
.footer-box {
    position: absolute;
    bottom: -85px;
    left: 10%;
    width: 80%;
    background-color: var(--cream-bg);
    border: 2px solid #e0d9c7;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}