/* Custom Styles - Minimalist & Elegant */

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

/* Typography Tweaks */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #1a5c5e;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

/* Image Hover Effects */
img {
    max-width: 100%;
    height: auto;
}

/* Focus States for Accessibility */
a:focus, button:focus {
    outline: 2px solid #0f3d3e;
    outline-offset: 2px;
}

/* Utility for thin lines */
.line-thin {
    height: 1px;
    background-color: rgba(15, 61, 62, 0.1);
}
