@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&display=swap');

:root {
    /* Ethereal Lua Palett */
    --lua-fg: #ffcead;           /* Peach (Hover färg för text) */
    --lua-fg-dim: #606FA3;       /* Din dämpade färg (Standard för text) */
    --lua-comment: #6d7db6;
    --lua-blue: #7d82d9;
    --lua-cyan: #a3bfd1;
    --lua-green: #92a593;
    --lua-yellow: #E9BB4F;
}

/* --- TRANSPARENS (Låter bakgrundsbilden synas) --- */
body, #__next, .min-h-screen {
    background: transparent !important;
    background-color: transparent !important;
    font-family: 'JetBrains Mono', monospace !important;
    color: var(--lua-fg-dim) !important; /* Standardtext är dämpad */
}

/* --- KORTDESIGN --- */
.service-card, .widget-card {
    background-color: rgba(6, 11, 30, 0.6) !important;
    border: 1px solid var(--lua-cyan) !important;
    border-radius: 0px !important;
    box-shadow: none !important;
    backdrop-filter: blur(4px);
    transition: all 0.2s ease;
}

/* Hover-effekt på själva kortet */
.service-card:hover {
    border-color: var(--lua-blue) !important;
    background-color: rgba(38, 79, 120, 0.4) !important;
    transform: translateY(-2px);
}

/* --- IKONER (ÅTERSTÄLLDA TILL DEN BRA VERSIONEN) --- */
.service-card img, .widget-card img {
    /* Detta är filtret du gillade (Peach-aktig ton) */
    filter: grayscale(100%) sepia(100%) hue-rotate(320deg) saturate(90%) brightness(110%);
    opacity: 0.85;
    transition: all 0.2s ease;
}
.service-card:hover img {
    /* Originalfärg vid hover (eller behåll filtret om du vill) */
    filter: none;
    opacity: 1;
}

/* --- TEXTER (Dämpad -> Peach vid hover) --- */

/* Rubriker */
.group-title {
    font-size: 0.9rem !important;
    color: var(--lua-yellow) !important;
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 1px dashed var(--lua-comment);
    margin-bottom: 15px;
}

/* Tjänstnamn */
.service-name {
    font-weight: 600 !important;
    /* Här sätter vi den dämpade färgen som standard */
    color: var(--lua-fg-dim) !important; /* #606FA3 */
    transition: color 0.2s ease;
}

/* Vid hover på kortet: Byt färg på namnet till Peach */
.service-card:hover .service-name {
    color: var(--lua-fg) !important; /* #ffcead */
}

/* Beskrivning */
.service-description {
    color: var(--lua-comment) !important;
    font-size: 0.75rem !important;
    transition: color 0.2s ease;
}
.service-card:hover .service-description {
    color: var(--lua-cyan) !important; /* Lyser upp lite vid hover */
}

/* Widget Data */
.widget-content {
    color: var(--lua-green) !important;
}

/* --- INPUT --- */
input {
    background: rgba(0,0,0,0.4) !important;
    border: 1px solid var(--lua-comment) !important;
    color: var(--lua-fg) !important;
    border-radius: 0px !important;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: rgba(0,0,0,0.3); }
::-webkit-scrollbar-thumb { background: var(--lua-comment); border: 2px solid transparent; background-clip: content-box; }