@font-face {
    font-family: "BodoniPoster";
    src: url("../fonts/BodoniMTPosterCompressed.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
    background-color: #0a0a0a;
    color: white;
    overflow-x: hidden;
}

.font-bodoni {
    font-family: "BodoniPoster", "Bodoni MT", "Times New Roman", serif;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wave {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

.animate-glow {
    background: linear-gradient(to right, #bfdbfe 20%, #60a5fa 40%, #60a5fa 60%, #bfdbfe 80%);
    background-size: 200% auto;
    color: #bfdbfe;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: wave 4s linear infinite;
}

/* Carousel Styles */
.carousel-container {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.work-item {
    transition: transform 0.3s ease;
}

.work-item:hover {
    transform: scale(1.02);
}