/* Toda Labs Shared Styles */

/* Font Families */
body {
    font-family: "Inter", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0d0e0c;
}

::-webkit-scrollbar-thumb {
    background: #2a2e26;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3a3f36;
}

/* Logo Image */
.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Glow Effect */
.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 108, 184, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

/* Gradient Text Effect */
.text-gradient-corporate {
    background: linear-gradient(to right, #d4b8e6, #a8d58d);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glass Panel Effect (used in about.html) */
.glass-panel {
    background: rgba(122, 158, 86, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
