/* Spotted microsite — gold/yellow theme (matches Spotted app), on top of ../styles.css */

body.spotted-theme {
    --spotted-accent: #d4ab20;
    --spotted-accent-dark: #b89218;
    --spotted-accent-surface: #f7f0d8;
    --spotted-black: #000000;
    --spotted-border: #e5e5ea;
    color: #000;
    background-color: #fafafa;
}

body.spotted-theme .navbar {
    box-shadow: 0 2px 8px rgba(212, 171, 32, 0.18);
    border-bottom: 2px solid var(--spotted-accent-surface);
}

body.spotted-theme .nav-brand,
body.spotted-theme .nav-brand:hover {
    color: var(--spotted-black);
}

body.spotted-theme .nav-links a:hover,
body.spotted-theme .nav-links a.active {
    color: var(--spotted-accent-dark);
}

body.spotted-theme .nav-menu-btn {
    border: 1px solid rgba(212, 171, 32, 0.45);
    background: linear-gradient(180deg, #fffef8 0%, #fff 100%);
    box-shadow: 0 2px 8px rgba(212, 171, 32, 0.14);
}

body.spotted-theme .nav-menu-btn:hover {
    border-color: var(--spotted-accent);
    box-shadow: 0 4px 14px rgba(212, 171, 32, 0.28);
}

body.spotted-theme .nav-menu-btn:focus-visible {
    outline: 2px solid var(--spotted-accent);
}

body.spotted-theme .nav-menu-icon span {
    background: linear-gradient(90deg, var(--spotted-accent), var(--spotted-accent-dark));
}

body.spotted-theme .nav-menu-panel {
    border: 1px solid rgba(212, 171, 32, 0.28);
    box-shadow:
        0 16px 48px rgba(184, 146, 24, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

body.spotted-theme .nav-menu-panel a:hover,
body.spotted-theme .nav-menu-panel a:focus-visible,
body.spotted-theme .nav-menu-panel .lang-option:hover,
body.spotted-theme .nav-menu-panel .lang-option:focus-visible {
    background: var(--spotted-accent-surface);
    color: var(--spotted-black);
}

body.spotted-theme .nav-menu-panel a.active,
body.spotted-theme .nav-menu-panel .lang-option.active {
    color: var(--spotted-accent-dark);
    background: var(--spotted-accent-surface);
}

body.spotted-theme .lang-menu-svg {
    color: var(--spotted-accent-dark);
}

body.spotted-theme .hero {
    background: linear-gradient(135deg, #fffef8 0%, #f7f0d8 55%, #fff 100%);
    color: var(--spotted-black);
}

body.spotted-theme .hero h1 {
    color: var(--spotted-black);
}

body.spotted-theme .hero-subtitle {
    color: #333;
    opacity: 1;
}

body.spotted-theme .spotted-kicker {
    color: var(--spotted-accent-dark);
    font-weight: 700;
}

body.spotted-theme .feature-card,
body.spotted-theme .content-section,
body.spotted-theme .contact-card,
body.spotted-theme .faq-item {
    border-top-color: var(--spotted-accent);
}

body.spotted-theme .feature-card {
    border-top: 3px solid var(--spotted-accent);
}

body.spotted-theme .feature-card:hover {
    box-shadow: 0 8px 20px rgba(212, 171, 32, 0.28);
    border-color: var(--spotted-accent);
}

body.spotted-theme .feature-card::before {
    background: linear-gradient(90deg, var(--spotted-accent), var(--spotted-accent-dark));
}

body.spotted-theme .feature-card h3,
body.spotted-theme .content-section h2,
body.spotted-theme .faq-item h3,
body.spotted-theme .contact-card h3,
body.spotted-theme .faq-section h2,
body.spotted-theme .use-case-item strong {
    color: var(--spotted-accent-dark);
}

body.spotted-theme a:not(.nav-brand):not(.nav-links a):not([role="menuitem"]):not(.footer-apps a) {
    color: var(--spotted-accent-dark);
}

body.spotted-theme .footer-apps a {
    color: #fff;
}

body.spotted-theme .content-section a:hover,
body.spotted-theme .contact-info a:hover {
    color: var(--spotted-accent);
}

body.spotted-theme .features h2::after,
body.spotted-theme .content-page h1::after,
body.spotted-theme .privacy-section h2::after {
    background: linear-gradient(90deg, var(--spotted-accent), var(--spotted-accent-dark));
}

/* Subpage section rules (styles.css uses purple borders / ::before accents) */
body.spotted-theme .content-section h2 {
    border-bottom-color: var(--spotted-accent);
}

body.spotted-theme .content-section h2::before {
    background: var(--spotted-accent-dark);
}

body.spotted-theme .content-section a::after,
body.spotted-theme .contact-info a::after {
    background: var(--spotted-accent);
}

body.spotted-theme .content-page h1,
body.spotted-theme .last-updated {
    border-color: var(--spotted-accent);
}

body.spotted-theme .content-section,
body.spotted-theme .contact-card,
body.spotted-theme .faq-item,
body.spotted-theme .use-case-item,
body.spotted-theme .highlight-box,
body.spotted-theme .info-box {
    border-left-color: var(--spotted-accent);
}

body.spotted-theme .contact-card,
body.spotted-theme .faq-item {
    box-shadow: 0 2px 4px rgba(212, 171, 32, 0.12);
}

body.spotted-theme .contact-card:hover,
body.spotted-theme .faq-item:hover {
    box-shadow: 0 4px 12px rgba(212, 171, 32, 0.22);
}

body.spotted-theme .faq-item:hover {
    background: var(--spotted-accent-surface);
}


body.spotted-theme .screenshot-arrow {
    color: var(--spotted-accent-dark);
    border-color: rgba(212, 171, 32, 0.4);
}

body.spotted-theme .screenshot-arrow:hover {
    background: var(--spotted-accent-surface);
    border-color: var(--spotted-accent);
}

body.spotted-theme .screenshots-gallery::-webkit-scrollbar-thumb {
    background: var(--spotted-accent);
}

body.spotted-theme .screenshots-gallery {
    scrollbar-color: var(--spotted-accent) #f0f0f0;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-icon {
    border-radius: 10px;
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

body.spotted-theme .nav-brand {
    gap: 0.75rem;
    font-size: 1.65rem;
}

body.spotted-theme .nav-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(212, 171, 32, 0.25);
}

.spotted-kicker {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.9;
    margin: 0 0 0.75rem;
}

.screenshots-gallery .screenshot-img {
    background: #111;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    width: 240px;
    height: auto;
    aspect-ratio: 1290 / 2796;
    object-fit: cover;
    flex: 0 0 auto;
}

.privacy-section {
    padding: 3rem 0 4rem;
}

.privacy-section a {
    text-decoration: underline;
}
