body{
    background: linear-gradient(to top right, #ff9900, #ffcc33);
    min-height: 100vh;
}


.header {
    font-family: "carilliantine", sans-serif;
    font-weight: 400;
    font-style: normal;
    animation: dropAndBounce 0.2s ease-out 0.4s forwards;
    transform: translateY(-150px);
    opacity: 0;
}

.container {                    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 20px;
}

.mbLogo {
    width: 100px;
    height: 100px;
    animation: dropAndBounce 0.2s ease-out forwards;
    transform: translateY(-150px);
    opacity: 0;
}

@keyframes dropAndBounce {
    0% {
        transform: translateY(-150px);
        opacity: 0;
    }
    60% {
        transform: translateY(20px);
        opacity: 1;
    }
    75% {
        transform: translateY(-10px);
    }
    85% {
        transform: translateY(5px);
    }
    95% {
        transform: translateY(-2px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


.folders-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin-top: 30px;
}

.folder-link {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.websitesFolder {
    position: relative;
    width: 100%;
    animation: dropAndBounce 1s ease-out forwards;
    transform: translateY(-150px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.folder-link:hover .websitesFolder {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Staggered animation delays for folders */
.folders-container > .websitesFolder:nth-child(1),
.folders-container > .folder-link:nth-child(1) .websitesFolder {
    animation-delay: 0.2s;
}

.folders-container > .websitesFolder:nth-child(2),
.folders-container > .folder-link:nth-child(2) .websitesFolder {
    animation-delay: 0.5s;
}

.folders-container > .websitesFolder:nth-child(3),
.folders-container > .folder-link:nth-child(3) .websitesFolder {
    animation-delay: 0.7s;
}

.folders-container > .websitesFolder:nth-child(4),
.folders-container > .folder-link:nth-child(4) .websitesFolder {
    animation-delay: 1.0s;
}

.folder {
    width: 100%;
}

.folder .base {
    width: 100%;
    height: auto;
    display: block;
}

.clip {
    position: absolute;
    top: 10%;
    left: 20%;
    height: 10%;
    width: auto;
}
.folder-content {
    position: absolute;
    top: 20%;
    left: 17%;
    background: black;
    width: 20%;
    height: 30%;
    rotate: -4deg;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.folder-content.fade-out {
    opacity: 0;
}

.sliver {
    position: absolute;
    width: 44%;
    height: 100%;
    pointer-events: none;
    top: -34%;
    right: 11%;
}

.sliver svg {
    width: 100%;
    height: 100%;
    display: block;
}

.sliver svg path {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.sliver svg path.fade-out {
    opacity: 0;
}

/* Create a pattern for the background image */
.sliver svg defs {
    display: block;
}


/* Tablet: 2 columns */
@media (min-width: 768px) {
    .folders-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop: 4-5 columns */
@media (min-width: 1024px) {
    .folders-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop: 5 columns */
@media (min-width: 1440px) {
    .folders-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.video-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-detail-description{
    padding: 20px;
    font-family: "Arial", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
    max-width: 800px;
    margin: 0 auto;
}


