
.hero {
    background-image: url(../assets/images/wryft/project3.png);

}
.hero::after {
    content: "Wryft Apparel"; /* Manually set the alt text */
}
#brand-1{
    background-image: url(../assets/images/wryft/wryft-brand.jpg);
}
#brand-2{
    background-image: url(../assets/images/wryft/boards.png);
}
#brand-3{
    background-image: url(../assets/images/wryft/wheels.png);
}
#brand-4{
    background-image: url(../assets/images/wryft/girl-with-board.png);
}
#brand-1::after, #brand-2::after, #brand-3::after, #brand-4::after  {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background:  #e6a8ff;
    color: #3f125b;  
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#brand-1:hover::after, #brand-2:hover::after, #brand-3:hover::after, #brand-4:hover::after {
    opacity: 1;
}
#brand-1::after {
    content: "Wryft Logo with Motif"; /* Manually set the alt text */

}
#brand-2::after {
    content: "Wyft SkateBoard Design"; /* Manually set the alt text */

}

#brand-3::after {
    content: "Wrfyt SkateBoard Wheels Design "; /* Manually set the alt text */

}

#brand-4::after {
    content: "Wryft Apparel Design"; /* Manually set the alt text */

}



.brandCard, .brand-font{
    font-size: 1.5rem;
    align-items: center;
    justify-content: space-around;
}

.brand-font p{
    line-height: 2rem;
    font-size: 2rem;
}
.colors{
    width: 4rem;
    height: 4rem;
}


.deliverable-images{
    flex-direction: column;
    gap: 2rem;
}

.gallery-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.gallery {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.gallery-track {
    display: flex;
    gap: 16px;
    animation: scrollGallery 15s linear infinite;
}

.gallery img {
    width: auto;
    height: 300px;
    scroll-snap-align: center;
    transition: transform 0.5s ease-in-out;}

.gallery img:hover {
    transform: scale(1.05);
}
#gallery-prevBtn, #gallery-nextBtn{
    z-index: 1;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    position: absolute;
    bottom: 1rem;
}
#gallery-prevBtn{
    left: 1rem;
}
#gallery-nextBtn{
    right: 1rem;
}


.prototype{
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.prototype> div:first-of-type{
    display: flex;
}
.prototype {
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (max-width: 599px) {
    .work-items {
      height: 300px;
    }
    .brandCard{
        flex-direction: column;
        align-items: center;

    }
    .colors{
        width: 1.5rem;
        height: 1.5rem;
    }
    .brand-font p{
        line-height: 1rem;
        font-size: 1rem;
    }
    .brand-color, .brand-font{
        width: 100%;
        font-size: 1rem;
        align-items: flex-start;
    }

    
  }
  
  @media screen and (min-width: 600px) and (max-width: 768px) {
  
    .work-items {
  
        height: 400px;
  
    }
    .brandCard{
        align-items: center;

    }
    .colors{
        width: 1.5rem;
        height: 1.5rem;
    }
    .brand-font p{
        line-height: 1rem;
        font-size: 1rem;
    }
    .brand-color, .brand-font{
        width: 100%;
        font-size: 1rem;
        align-items: flex-start;
    }
  }
  @media screen and (min-width: 769px) and (max-width:1024px){
    .work-items {
  
        height: 550px;
  
    } 

    .colors{
        width: 1.5rem;
        height: 1.5rem;
    }
    .brand-font p{
        line-height: 1rem;
        font-size: 1rem;
    }
    .brand-color, .brand-font{
        width: 100%;
        font-size: 1rem;
        align-items: flex-start;
    }
 }