@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

    /* projects.html.twig */

    .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
    .project-item {
        display: flex;
        flex-direction: column;
        height: 100%;
        transition: all 0.3s ease;
    }
    .project-item:hover {
        transform: translateY(-5px);
    }
    .project-item img {
        height: 200px;
        object-fit: cover;
    }
    .project-item h3 {
        color: #4B5563;
    }
    .project-item .pseudo {
        font-style: italic;
        color: #6B7280;
    }

    body {
        font-family: "Poppins", sans-serif;
        background-color: #f0f4f8;
        color: #2d3748;
    }

    .bg-blur {
        backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.8);
    }

    .project-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
          0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .gradient-text {
        background: linear-gradient(90deg, #4F46E5, #7C3AED);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .waves {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 100px;
    }
    .parallax > use {
        animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
    }
    .parallax > use:nth-child(1) {
        animation-delay: -2s;
        animation-duration: 7s;
    }
    .parallax > use:nth-child(2) {
        animation-delay: -3s;
        animation-duration: 10s;
    }
    .parallax > use:nth-child(3) {
        animation-delay: -4s;
        animation-duration: 13s;
    }
    .parallax > use:nth-child(4) {
        animation-delay: -5s;
        animation-duration: 20s;
    }

    @keyframes move-forever {
        0% {
            transform: translate3d(-90px, 0, 0);
        }
        100% {
            transform: translate3d(85px, 0, 0);
        }
    }

    /* modular/projects.html.twig */

    #projects-slider {
        overflow: hidden;
        padding: 20px 0;
    }
    #projects-slider .swiper-slide {
        height: auto;
    }
    #projects-slider .swiper-button-next,
    #projects-slider .swiper-button-prev {
        color: #4F46E5;
        top: 60%;
        width: 44px;
        height: 44px;
        background-color: white;
        border-radius: 50%;
        box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    }
    #projects-slider .swiper-button-next {
        right: -40px;
    }
    #projects-slider .swiper-button-prev {
        left: -40px;
    }
    #projects-slider .swiper-button-next:after,
    #projects-slider .swiper-button-prev:after {
        font-size: 18px;
    }
    #projects-slider .swiper-pagination-bullet-active {
        background: #4F46E5;
    }
    #projects-slider .swiper-pagination {
        margin-top: 20px;
    }

    @media (max-width: 640px) {
        #projects-slider .swiper-button-next,
        #projects-slider .swiper-button-prev {
            display: none;
        }
    }
    