/* Shared Navbar Styles for Project Pages */

/* Logo animations */
.logo-solar-ra {
    filter: drop-shadow(0 0 10px rgba(201, 150, 62, 0.3));
    transition: transform 0.3s ease;
}

.logo-container:hover .logo-solar-ra {
    transform: scale(1.05);
}

.outer-ring {
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.sun-rays {
    animation: sunRotate 20s linear infinite;
    transform-origin: center;
}

@keyframes sunRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.r-letter {
    animation: letterGlow 3s ease-in-out infinite;
}

@keyframes letterGlow {
    0%, 100% { filter: drop-shadow(0 0 3px rgba(201, 150, 62, 0.5)); }
    50% { filter: drop-shadow(0 0 8px rgba(201, 150, 62, 0.9)); }
}

/* Ray animations */
.ray {
    animation: rayPulse 2s ease-in-out infinite;
}

.ray-1 { animation-delay: 0s; }
.ray-2 { animation-delay: 0.25s; }
.ray-3 { animation-delay: 0.5s; }
.ray-4 { animation-delay: 0.75s; }
.ray-5 { animation-delay: 1s; }
.ray-6 { animation-delay: 1.25s; }
.ray-7 { animation-delay: 1.5s; }
.ray-8 { animation-delay: 1.75s; }

@keyframes rayPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Nav links hover */
.nav-links a {
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #06b6d4;
}

/* Social links */
.social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.4);
    color: #06b6d4;
    transform: translateY(-2px);
}

/* Settings button */
#settingsBtn:hover {
    transform: rotate(45deg);
    color: #06b6d4;
}

/* Settings Panel */
#settingsPanel {
    right: -320px !important;
}

#settingsPanel.open {
    right: 0 !important;
}

/* World clocks container */
.world-clocks {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-right: 1.5rem;
    padding: 0 1rem;
}

.clock-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}
