/* Custom Styles for Tatooine Comics */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
}

body {
    background-color: #fdfbf7;
}

/* Sidebar Navigation Styles */
.sidebar {
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
}

.nav-link {
    display: flex;
    align-items: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.nav-link .dot {
    width: 8px;
    height: 8px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #fdfbf7;
}

.nav-link:hover .dot, .nav-link.active .dot {
    background-color: #34d399;
    border-color: #34d399;
    transform: scale(1.2);
}

/* Animation classes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s forwards;
    opacity: 0;
}

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

::-webkit-scrollbar-track {
    background: #f5f2eb;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #047857;
}

/* Mobile Menu Styles (if needed in future) */
@media (max-width: 1023px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
}
