:root {
    /* Enforcing Light Mode Colors */
    --bg-color: #f0f4f8;
    --text-color: #1e293b;
    --text-muted: #475569;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-highlight: rgba(255, 255, 255, 0.8);
    --accent-color: #2563eb;
    --accent-glow: rgba(37, 99, 235, 0.3);
    --nav-bg: rgba(240, 244, 248, 0.8);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    margin: 0;
    transition: background-color 0.5s ease, color 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Glass Components */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Navbar */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 15px 30px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--nav-bg);
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.nav-logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link-item {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-link-item:hover,
.nav-link-item.active {
    color: var(--accent-color);
    background: rgba(59, 130, 246, 0.1);
}

/* Dropdown specific */
.dropdown-item {
    color: var(--text-color);
}

.dropdown-item:hover {
    background-color: var(--glass-highlight);
    color: var(--accent-color);
}

.dropdown-menu {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.dropdown-item.text-muted {
    color: var(--text-muted) !important;
}

/* Buttons */
.btn-glow {
    background: var(--accent-color);
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 20px var(--accent-glow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--accent-glow);
    color: white;
}

/* Footer */
.glass-footer {
    margin-top: 80px;
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

.footer-title {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-highlight);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social-icon:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Utilities */
.content-wrapper {
    padding-top: 120px;
    min-height: 80vh;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.transition-all {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .glass-nav {
        width: 95%;
        padding: 15px;
    }

    .nav-links {
        display: none;
    }
}