/* DEVOTE RECYCLING - Shared Styles */
/* Design System: "The Digital Bio-Circuit" */

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

body {
    background-color: #0e1513;
    color: #dde4e0;
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
}

/* Glass Morphism */
.glass-panel {
    background: rgba(47, 54, 52, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.glass-nav {
    background: rgba(14, 21, 19, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Bio-Circuit Glow */
.bio-circuit-glow {
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.08);
}

.bio-circuit-bg {
    background-image: radial-gradient(circle at 20% 30%, rgba(0, 242, 255, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(45, 80, 62, 0.1) 0%, transparent 50%);
}

/* Text Glow */
.text-glow {
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
}

/* Smooth transitions for language switch */
[data-i18n] {
    transition: opacity 0.2s ease;
}

/* Language toggle button */
.lang-toggle {
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}
.lang-toggle:hover {
    transform: scale(1.05);
}
.lang-toggle .active-lang {
    color: #00f2ff;
    font-weight: 700;
}
.lang-toggle .inactive-lang {
    color: rgba(185, 202, 203, 0.5);
}

/* Nav active state */
.nav-link-active {
    color: #22d3ee !important;
    border-bottom: 2px solid #22d3ee;
    padding-bottom: 4px;
}

/* Ambient shadow */
.ambient-shadow {
    box-shadow: 0 20px 40px rgba(0, 242, 255, 0.06);
}

/* Scroll animation - starts visible, animates when JS is ready */
.fade-up {
    opacity: 1;
    transform: translateY(0);
}
.fade-up.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.animate-ready.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile menu */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.mobile-menu.open {
    transform: translateX(0);
}

/* Progress bar animation */
@keyframes progressFill {
    from { width: 0; }
}
.progress-animate {
    animation: progressFill 1.5s ease-out;
}

/* Pulse ring */
@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.3); opacity: 0; }
}
.pulse-ring {
    animation: pulseRing 2s infinite;
}
