/*
Theme Name: MaxRuss Edgy
Author: Gemini
Description: Ein brutalistisches, interaktives Theme für maxruss.de. White Mode, Brand Purple.
Version: 1.0
*/

/* Reset & Base Styles werden via Tailwind geladen, hier nur WP-Spezifisches */

body {
    background-color: #FFFFFF;
    color: #050505;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Selection Color */
::selection {
    background: #050505;
    color: #6366F1;
}

/* --- NOISE OVERLAY --- */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    filter: invert(1);
}

/* --- CUSTOM CURSOR (Desktop Only) --- */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #000000;
    transition: background-color 0.2s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid #000000;
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
}

/* Cursor Hover States */
body:hover .cursor-outline.hovered {
    width: 80px;
    height: 80px;
    background-color: #6366F1;
    border-color: #000000;
    mix-blend-mode: multiply;
}

body:hover .cursor-outline.white-mode {
    border-color: #FFFFFF;
    background-color: transparent;
    mix-blend-mode: normal;
    width: 40px;
    height: 40px;
}

body:hover .cursor-dot.white-mode {
    background-color: #FFFFFF;
    opacity: 1 !important;
}

/* Mobile Reset */
@media (hover: none), (pointer: coarse), (max-width: 768px) {
    body { cursor: auto !important; }
    .cursor-dot, .cursor-outline { display: none !important; }
    * { cursor: auto !important; }
}

/* --- WORDPRESS ADMIN BAR FIX --- */
/* Verschiebt den Fixed Header/Nav nach unten, wenn die Admin Bar sichtbar ist */
body.admin-bar nav.fixed {
    top: 32px;
}
@media screen and (max-width: 782px) {
    body.admin-bar nav.fixed { top: 46px; }
}

/* --- FOOTER STYLES --- */
.site-footer {
    border-top: 4px solid #050505;
    padding: 4rem 1.5rem;
    background: #fff;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.footer-links a {
    font-family: 'Space Mono', monospace;
    font-weight: bold;
    text-transform: uppercase;
    color: #050505;
    text-decoration: none;
    margin-right: 1.5rem;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: #6366F1;
    text-decoration: underline;
}

.copyright {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: #6366F1;
    font-weight: bold;
}