/*
 * ==========================================================================
 *   THEME TOGGLE BUTTON — UNIFIED (Homepage + Admin)
 *   File ini di-include di KEDUA layout: app.blade.php dan admin.blade.php
 *   Edit HANYA di sini untuk mengubah style tombol di seluruh website.
 * ==========================================================================
 *
 *  Sistem Dark Mode:
 *   - Homepage  → class "body.dark-mode"  (custom JS toggle di script.js)
 *   - Admin     → class "html.dark"       (Tailwind dark mode)
 *
 *  Selector ganda di bawah menangani keduanya secara otomatis.
 * ==========================================================================
 */

/* ─── BASE: Tombol & Wrapper ─────────────────────────────────── */
.theme-switcher .theme-btn {
    background: none;
    border: none;
    color: rgb(255, 196, 0);       /* ☀ Kuning-gold saat Light Mode */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
}

.theme-switcher .theme-btn:hover {
    background-color: rgba(45, 90, 61, 0.12);
}

/* ─── SVG BASE STATE (Light Mode = Matahari) ─────────────────── */
.theme-toggle-svg {
    display: block;
    overflow: visible;
}
.theme-toggle-svg .moon-hole {
    cx: 24;
    cy: 10;
    transition: cx 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                cy 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.theme-toggle-svg .sun-core {
    r: 5;
    transition: r 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.theme-toggle-svg .sun-rays {
    opacity: 1;
    transform: rotate(0deg);
    transform-origin: center;
    transition: opacity 0.5s ease,
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── DARK MODE: Tombol jadi Biru-Putih (Bulan) ──────────────── */
.dark .theme-switcher .theme-btn {
    color: #ffffff;                /* ☾ Putih saat Dark Mode */
}

.dark .theme-switcher .theme-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ─── DARK MODE: SVG Animasi Matahari → Bulan ────────────────── */
.dark .theme-toggle-svg .moon-hole {
    cx: 16;
    cy: 8;
}
.dark .theme-toggle-svg .sun-core {
    r: 9;
}
.dark .theme-toggle-svg .sun-rays {
    opacity: 0;
    transform: rotate(90deg);
}
