/* ===== BASE STYLES - VINTAGE EDITION ===== */

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

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: var(--font-heading), serif;
    line-height: 1.6;
    color: var(--color-ivory);
    background-color: var(--color-bg-pompeian);
    background-image:
        radial-gradient(circle at center, var(--color-bg-pompeian) 0%, var(--color-bg-deep) 100%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' opacity='0.4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E");
    background-attachment: fixed;
    width: 100%;
    min-height: 100vh;
    overflow-x: auto;
    position: relative;
}

:root {
    --header-height: 80px;
    --footer-height: 120px;
    --carousel-gap: 50px;
    --card-width: 520px;

    /* Pompeian Crimson Palette */
    --color-bg-deep: #581816;
    /* Deep Sangue di Bue */
    --color-bg-pompeian: #8b2622;
    /* Classic Pompeian Red */
    --color-ivory: #fdfbf7;
    /* Clean Ivory for contrast */
    --color-gold-bright: #d4af37;
    /* Metallic Gold */
    --color-gold-muted: #c5a059;
    /* Antique Gold */
    --color-burgundy: #5e2129;
    --color-frame-wood: #3d2b1f;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Cormorant Garamond', 'Georgia', serif;
}

/* Scrollbar for Webkit */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #eaddcf;
}

::-webkit-scrollbar-thumb {
    background: #8d6e63;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6d4c41;
}

body::before {
    /* Enhanced Vignette for central focus */
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
    z-index: 2;
}