/* Custom animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Global styles */
body {
    scroll-behavior: smooth;
}

/* Baobab watermark effect */
.baobab-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.03;
    z-index: -1;
    width: 120%;
    height: 120%;
    background-image: url("media/baobab-watermark.svg");
background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    animation: float 15s ease-in-out infinite;
}

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

::-webkit-scrollbar-track {
    background: rgba(30, 27, 75, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(184, 115, 51, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(184, 115, 51, 0.8);
}

/* Project card hover effect */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

/* Typography */
.font-tribal {
    font-family: 'Noto Sans Adlam', sans-serif;
}