/*
Theme Name: Fuhil Theme
Theme URI: https://www.fuhil.com/
Author: Fuhil Technology
Author URI: https://www.fuhil.com/
Description: Custom Fast & Secure Tools Website Theme
Version: 1.0.0
*/

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

:root {
    --bg-dark: #060813;
    --card-bg: #0b0f22;
    --card-border: #161b36;
    --accent-purple: #6e00ff;
    --accent-pink: #e052a0;
    --accent-blue: #2b7fff;
    --text-main: #ffffff;
    --text-muted: #8c9bb4;
    --nav-bg: rgba(6, 8, 19, 0.95);
    --btn-action-bg: #141b38;
    --btn-action-text: #92a4cb;
}

body.light-mode {
    --bg-dark: #f4f6fa;
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --nav-bg: rgba(244, 246, 250, 0.95);
    --btn-action-bg: #f1f5f9;
    --btn-action-text: #475569;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 6%;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--card-border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-badge {
    background: linear-gradient(135deg, #ff007f, #7f00ff);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.3);
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--text-main); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle {
    color: var(--text-muted);
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
    padding: 5px;
}

.theme-toggle:hover { color: var(--text-main); }

/* Footer Section */
.main-footer {
    background: #0f0f12;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Poppins', sans-serif;
}

.widget-brand-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
}

.brand-logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #ff007f, #7f00ff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.3);
}

.brand-name-text {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.seo-header-box {
    text-align: center;
    padding: 30px 20px 30px 20px;
    background: #0f0f12;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-header-box h2 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 22px;
}

.seo-header-box p {
    color: #b1b3ba;
    font-size: 14px;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto 12px auto;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    background: #0f0f12;
    max-width: 1350px;
    margin: 0 auto;
}

.widget-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.widget-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 255, 136, 0.3);
}

.widget-header {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.widget-box p {
    color: #b1b3ba;
    font-size: 13px;
    line-height: 1.6;
}

.widget-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-links li { margin-bottom: 12px; }

.widget-links a {
    color: #b1b3ba;
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.3s ease;
}

.widget-links a:hover { color: #00ff88; }

.server-link {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 3px solid #ff4757;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.server-link:hover {
    background: #ff4757;
    color: #ffffff;
    transform: scale(1.02);
}

.fb-tool .server-link { border-left-color: #1e90ff; }
.fb-tool .server-link:hover { background: #1e90ff; }

.yt-title-tool .server-link { border-left-color: #2ed573; }
.yt-title-tool .server-link:hover { background: #2ed573; }

.footer-bottom {
    background: #030b2e;
    padding: 18px 15px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #c0c0c0;
    font-size: 12px;
    line-height: 1.6;
}