.header{
    width: 100vw;
    min-height: 100px;
    background-color: #221F1F;
    display: flex;
    align-items: center; 
    padding: 0 30px;
    gap: 30px;
    box-sizing: border-box;  
    z-index:2500;         
}
.welcome {
    margin-top: 75px;
}

body{
    margin-top: 100px; 
    margin-left: 260px;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    display: grid;
    place-items: center;
    background-color: #FCFDFC;
}

.welcome{
    display: flex;
    justify-content: center;
    align-items: center;
}
.texts{
    font-family: "Instrument Serif", serif;
    font-weight: 800;
    font-style: normal;
    font-size: 75px;
}
.wrapper{
    width: 100%;
    max-width: 100vw;
    height: 180px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
    padding-left: 80px;
    padding-bottom:60px;
    margin: 60px auto;
    box-sizing: border-box;
    overflow: visible;
    
}


#popcorn{
    width: 330px;
    height: 450px;
    z-index: -1;
    padding-bottom: 150px;
}
.container{
    display: flex;
    overflow-x:auto;
    overflow-y: visible;
    padding-bottom:40px;
    
    scroll-behavior: smooth;
    gap:10px;
    padding: 10px 0;
    scrollbar-width: none;
}
.item {
    width: 190px;
    height: 290px;
    flex-shrink: 0;
    padding: 20px;
    
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    transition: transform 0.3s ease;
}
.item img:hover{
    transform: scale(1.2);
    
    
}

.arrow {
    cursor: pointer;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9); /* Changed to white/light background */
    color: black;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    position: relative;
    
}

.arrow:hover {
    background-color: #e50914;
    color: white;
    transform: scale(1.1);
}
.header-frame {
    position: fixed;
    top: 0;
    left: 0;
    height: 100px;
    width: 100%;
    z-index: 2000;
}


.header h1{
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.header h1:hover{
    color:red;
    cursor: pointer;
}
.header div{
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
    color: white;
    z-index:2500;         
}
#form-search{
    display: flex;
    align-items: center;
    width: 100%;
    flex-grow: 1;
    max-width: 600px;
    background: white;
    border-radius: 6px;
    overflow: hidden;
}
#form-search select {
    border: none;
    background: #f1f1f1;
    padding: 10px 12px;
    font-weight: bold;
    outline: none;
}
#form-search input{
    background: white;
    border: none;
    width: 550px;
    outline: none;
}
#form-search button{
    border: none;
    outline: none;
    background-color: transparent;
}
#form-search button:hover{
    cursor: pointer;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*display: grid;
    place-items: center;*/
}
body{
    margin-left:60px;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;

}
.sidebar{
    position: fixed;
    left:0;
    top:0;
    height: 100vh;
    width:65px;
    background: #1F1C1C;
    z-index: 1000;
    
}


.sidebar-icons{
    padding: 20px 10px;
}
.hamburger{
    width: 45px;
    height: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;

    
}
.hamburger span{
    height: 3px;
    width: 100%;
    background-color: white;
}
.navigate {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px 0;
}

.navigate a {
  margin: 10px 0;
  text-align: center;
  text-decoration: none;
  font-size: 25px;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
}


.sidebar-popup{
    position: absolute;
    left: 60px;
    top:0;
    width: 180px;
    height: 100vh;
    transform: translateX(-100%);
    opacity: 0;
    transition: 0.3s;
    background: #F7F3F2;
    pointer-events: none;
    box-shadow: 6px 0 20px rgba(0, 0, 0, 0.25);
}


.sidebar-popup.active{
    transform: translateX(0);
    opacity:1;
    pointer-events: auto;
}