body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0f0f0f;
    color: #e5e5e5;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #222;
    z-index: 50;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-links a,
.nav-links button {
    background: none;
    border: none;
    color: #e5e5e5;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links button:hover {
    color: #fff;
}

/* Hero */
.hero {
    height: 100vh;
    padding-top: 64px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    animation:
        heroCycle 24s infinite,
        fadeIn 1.2s ease-out both;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-content p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.primary-btn {
    display: inline-block;
    padding: 0.9rem 1.5rem;
    border-radius: 6px;
    border: 1px solid #444;
    color: #fff;
    text-decoration: none;
}

.primary-btn:hover {
    background: #222;
}


@keyframes heroCycle {
    0%, 25% {
        background-image:
            linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.85)),
            url('/images/antiques.png');
    }

    26%, 50% {
        background-image:
            linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.85)),
            url('/images/ceramics.png');
    }

    51%, 75% {
        background-image:
            linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.85)),
            url('/images/textiles.png');
    }

    76%, 100% {
        background-image:
            linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.85)),
            url('/images/antiques.png');
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}











.primary-btn {
    background: linear-gradient(to bottom, #222, #111);
    box-shadow: 0 0 0 rgba(255,255,255,0);
    transition: all .25s ease;
}

.primary-btn:hover {
    background: linear-gradient(to bottom, #333, #222);
    box-shadow: 0 0 12px rgba(255,255,255,0.15);
    transform: translateY(-1px);
}





.site-header {
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}


.logo {
    text-transform: uppercase;
    opacity: 0.95;
}


.hero-subtle {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    opacity: 0.6;
}
