/* ==========================================================
   ANTIQUES — Bluff Antiques & Curiosities
   "Treasures from every era"

   Palette: Vintage warmth — sepia, aged parchment, dark
   walnut brown, burnished brass accents
   Font: IM Fell English (historical ornate serif),
   Alegreya for body
   No image — warm parchment/sepia solid
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=IM+Fell+English:ital@0;1&display=swap');

.site-antiques {
    font-family: 'Alegreya', Times, serif;

    /* Page background — aged parchment */
    --color-bg: #f0e6d3;
    --color-body-bg: #f9f3e8;

    /* Title bar — dark walnut */
    --color-title-bar-bg: #3b2315;
    --color-title-bar-text: #dbb778;

    /* Header — no image, warm sepia gradient */
    --color-header-bg: #5c3a1e;
    --header-image: url('/images/antiques.png');
    --header-height: 325px;

    /* Navigation — warm brown leather */
    --color-menu-bg: #5c3a1e;
    --color-menu-text: #f0e6d3;
    --color-menu-hover: #7a5230;
    --color-menu-hover-text: #dbb778;

    /* Container border */
    --color-container-border: #5c3a1e;

    /* Footer */
    --color-footer-bg: #3b2315;
    --color-footer-text: #c4a87a;
    --color-helper-footer-bg: #2a180e;
    --color-helper-footer-text: #9a7e54;
}


/* Title bar — ornate antique shop name */
.site-antiques .site-title-bar .title {
    font-family: 'IM Fell English', 'Alegreya', serif;
    letter-spacing: 0.03em;
    font-size: clamp(1.3rem, 4.5vw, 2.2rem);
}

.site-antiques .site-title-bar .subtitle {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    letter-spacing: 0.04em;
    opacity: 0.85;
}


/* Header image */
.site-antiques .header-image {
    background-size: cover;
    border-bottom: 3px double #dbb778;
}


/* Menu — antique brass accents */
.site-antiques .menu-button {
    font-family: 'Alegreya SC', serif;
    letter-spacing: 0.04em;
    border-left: 3px solid transparent;
}

.site-antiques .menu-button:hover {
    border-left: 3px solid #dbb778;
}

@media (min-width: 768px) {
    .site-antiques .menu-button {
        border-left: none;
        border-bottom: 3px solid transparent;
    }

    .site-antiques .menu-button:hover {
        border-left: none;
        border-bottom: 3px solid #dbb778;
    }
}


/* Menu — Desktop alignment fix (3 nav items) */
@media (min-width: 768px) {
    .site-antiques .menu-button {
        flex: 0 1 auto;
        max-width: 240px;
        min-width: 140px;
        padding: 0.25em 1.5em;
    }
}


/* Content — warm aged paper readability */
.site-antiques #content {
    line-height: 1.8;
    color: #3b2315;
}

.site-antiques #content h1,
.site-antiques #content h2,
.site-antiques #content h3 {
    font-family: 'IM Fell English', serif;
    color: #5c3a1e;
}

.site-antiques #content a {
    color: #7a5230;
}

.site-antiques #content a:hover {
    color: #dbb778;
}


/* Footer — aged brass tone */
.site-antiques #site-footer {
    font-family: 'Alegreya SC', serif;
    letter-spacing: 0.02em;
    font-size: 0.85rem;
    border-top: 2px double #dbb778;
}
