body{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column; /* Stack header and content vertically */
    overflow-x: hidden;
    width: 100vw;
    height: 100vw;
    position: relative;
    background-color: #f9f9f9;
}

.menu-container{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 70px;
    padding: 0 20px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.hamburger {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 10;
}
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white; /* Dark background */
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
    z-index: 9;
}

.fullscreen-menu ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

.fullscreen-menu ul li {
    margin: 20px 0;
}

.fullscreen-menu ul li a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 3rem;
    transition: color 0.3s ease;
}

.fullscreen-menu ul li a:hover {
    text-decoration: underline;
    font-style: italic;
   
}

/* Hamburger Animation for Active State */
.hamburger.active .line:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.fullscreen-menu.active {
    transform: translateY(0);
}
.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: #000000;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.header-logo{
    width: 100%;
    padding: 20px; /* Adjust padding to your preference */
    position: sticky; /* Makes it sticky to the top */
    top: 0; /* Always stays at the top */
    z-index: 10; /* Ensures it's above the video and other content */
    text-align: center; /* Centers the logo in the header */
}

.main-image {
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.main-image img{
    height: 600px;
    width: fit-content;
    border-radius: 15px;
    box-shadow: 0px 9px 21px rgba(0, 0, 0, .1);
}

.hoodie-images{
    display: flex;
    flex-direction: row;
    place-items: center;
    justify-content: center;
    align-items: center;
    position: relative;
    bottom: 3%;
    z-index: 0;
}

 .hoodie-images img{
    height: 50%;
    width: fit-content;
    padding: 5px;
    border-radius: 15px;
    margin: 10px;
    
    box-shadow: 0px 9px 21px rgba(0, 0, 0, .1), 0px 38px 38px rgba(0, 0, 0, .09), 0px 85px 51px rgba(0, 0, 0, .05), 0px 151px 60px rgba(0, 0, 0, .01);
    z-index: 2;
}

.hoodie-images img:hover{
    height: 70%;
    width: fit-content;
    transition: ease-in 0.3s;
    transition: ease-out 0.3s;
    
}
.hoodie-box{
    justify-content: center;
    display: flex;
    place-items: center;
    flex-direction: column;
    

}
#selected-hoodie-box {
    text-align: center;
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
    width: 300px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

#selected-hoodie-image {
    width: 30%;
    height: fit-content;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 5px;
}

#selected-hoodie-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

#selected-hoodie-price {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

#selected-hoodie-sizes {
    font-size: 16px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
