/* =========================================================
   Selfster Themes
   - Classic  (default, uses base dark styles)
   - Christmas
   - Victorian
   - Forest
   All themes are seamless: they colour the WHOLE body,
   and let the navbar pill from navbar.css sit on top.
   ====================================================== */

/* ---------------------------
   Classic – base look
   --------------------------- */

body.style-classic {
    /* falls back to dark.css for background */
}

body.style-classic .logo-mark {
    background-color: transparent;
}

/* ---------------------------
   Christmas – reds + greens
   --------------------------- */

body.style-christmas {
    background-color: #020617;
    background-image:
        radial-gradient(
            circle at 0% 0%,
            rgba(248, 113, 113, 0.22),
            transparent 60%
        ),
        radial-gradient(
            circle at 100% 100%,
            rgba(34, 197, 94, 0.18),
            transparent 60%
        );
    background-attachment: fixed;
    color: #f9fafb;
}

body.style-christmas .logo-mark {
    background-image: linear-gradient(135deg, #e11d48, #16a34a);
    color: #fefce8;
    border-radius: 9999px;
    padding: 0.25rem;
}

body.style-christmas .card {
    border-color: rgba(248, 250, 252, 0.16);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.75);
}

body.style-christmas .primary-button {
    background-image: linear-gradient(135deg, #ef4444, #22c55e);
    border-color: rgba(252, 211, 77, 0.9);
    color: #0b1120;
}

body.style-christmas .primary-button:hover {
    filter: brightness(1.05);
}

body.style-christmas .nav-link:hover {
    color: #fde68a;
}

/* keep navbar pill look, just tweak border glow */
body.style-christmas .navbar {
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.9),
        0 0 55px rgba(248, 113, 113, 0.5);
    border-color: rgba(239, 68, 68, 0.7);
}

/* ---------------------------
   Victorian – burgundy + gold
   --------------------------- */

body.style-victorian {
    background-color: #020617;
    background-image:
        radial-gradient(
            circle at 0% 0%,
            rgba(127, 29, 29, 0.55),
            transparent 65%
        ),
        radial-gradient(
            circle at 100% 100%,
            rgba(120, 53, 15, 0.4),
            transparent 60%
        );
    background-attachment: fixed;
    font-family: "Playfair Display", "Times New Roman", serif;
    color: #f9fafb;
}

body.style-victorian .logo-text {
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* subtle gold accent around the navbar pill */
body.style-victorian .navbar {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.9),
        0 0 55px rgba(251, 191, 36, 0.4);
}

body.style-victorian .card {
    border-radius: 0.5rem;
    border: 1px solid rgba(251, 191, 36, 0.35);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.9);
}

body.style-victorian .section-title {
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

body.style-victorian .primary-button {
    background-image: linear-gradient(135deg, #fbbf24, #f97316);
    border-color: rgba(251, 191, 36, 0.9);
    color: #111827;
}

/* ---------------------------
   Forest – deep greens
   --------------------------- */

body.style-forest {
    background-color: #020617;
    background-image:
        radial-gradient(
            circle at 0% 0%,
            rgba(34, 197, 94, 0.25),
            transparent 55%
        ),
        radial-gradient(
            circle at 100% 100%,
            rgba(14, 116, 144, 0.22),
            transparent 55%
        );
    background-attachment: fixed;
    color: #e5f9f0;
}

/* navbar pill keeps same shape, add greenish glow */
body.style-forest .navbar {
    border-color: rgba(34, 197, 94, 0.55);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.9),
        0 0 55px rgba(34, 197, 94, 0.45);
}

body.style-forest .page-main {
    /* let body background shine through */
    background-color: transparent;
}

body.style-forest .card {
    border-radius: 1.25rem;
    border-color: rgba(34, 197, 94, 0.28);
}

body.style-forest .primary-button {
    border-radius: 9999px;
    background-image: linear-gradient(135deg, #22c55e, #0ea5e9);
    border-color: rgba(16, 185, 129, 0.9);
    color: #022c22;
}

body.style-forest .primary-button:hover {
    filter: brightness(1.06);
}

body.style-forest .nav-link:hover {
    color: #bbf7d0;
}
