/* artista.cc — shared theme, on top of Tailwind CDN's utility classes */

@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;1,400;1,500&display=swap");

:root {
    --bg: #0e0e0c;
    --bg2: #131311;
    --bg3: #1a1a17;
    --bg4: #222220;
    --b: #272724;
    --b2: #323230;
    --t: #e8e4d9;
    --t2: #9a9488;
    --t3: #5c5a54;
    --gold: #c8a96e;
}

* {
    -webkit-tap-highlight-color: transparent;
}

html {
    background: var(--bg);
}

body {
    background: var(--bg);
    color: var(--t);
    font-family: "EB Garamond", Georgia, serif;
}

.font-sans-ui {
    font-family:
        -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

/* Eyebrow label with leading tick */
.eyebrow {
    font-family:
        -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 10px;
    color: var(--t3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}
.eyebrow::before {
    content: "";
    display: block;
    width: 16px;
    height: 0.5px;
    background: var(--t3);
}

/* Section label with trailing rule, used as block headers */
.sec-label {
    font-family:
        -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 10px;
    color: var(--t3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sec-label::after {
    content: "";
    flex: 1;
    height: 0.5px;
    background: var(--b);
}

::placeholder {
    color: var(--t3);
    font-style: italic;
    opacity: 1;
}

::selection {
    background: var(--gold);
    color: #0e0e0c;
}

/* Focus visibility — kept deliberate, not the browser default blue */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: 2px;
}

/* Custom scrollbar, quiet */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--b2);
    border-radius: 0;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--t3);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Simple skeleton shimmer for image loading states */
.skel {
    background: linear-gradient(
        100deg,
        var(--bg3) 30%,
        var(--bg4) 50%,
        var(--bg3) 70%
    );
    background-size: 200% 100%;
    animation: skel-shimmer 1.6s ease-in-out infinite;
}
@keyframes skel-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

img {
    color: transparent;
}
