*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    text-decoration: none;
    font-family:'Lucida Sans', 'Lucida Sans Regular',
    'Lucida Grande', 'Lucida Sans Unicode', 
    Geneva, Verdana, sans-serif;
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border: 1px solid black; */
}

.cinema-image{
    width: 270px;
    height: 100px;
    margin: 10px auto;
}

.cinema-name{
        /*background-color: yellow;*/
        color: black;
}

.social-media-logos{
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

.logos{
    /*background-color: black;*/
    margin: 10px;
}

.nav-icons{
    display:flex;
    align-items:center;
    margin-left:auto;
    gap:10px;
}

.search-btn{
    width:44px;
    height:44px;
    border:1px solid white;
    background:black;
    color:white;
    font-size:20px;
}

.search-btn:hover{
    background:white;
    color:black;
}

    .navgation-bars{
        display: flex;
        background-color: black;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        height: 50px;
        color: white;
    }

    .nav-menu{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .hamburger{
        display: none;
        width: 44px;
        height: 44px;
        margin-left: auto;
        background-color: black;
        border: 1px solid white;
        cursor: pointer;
        padding: 9px;
    }

    .hamburger span{
        display: block;
        width: 100%;
        height: 3px;
        margin: 5px 0;
        background-color: white;
    }

    .nav-bars a{
        color: white;
        margin: 0 40px 0 40px;
    }

    .nav-bars a:hover{
        border: 2px solid white;
        padding: 12px 15px 12px 15px;;
        background-color: white;
        color: black;
        /* border-radius: 40px; */
        margin: 0 40px 0 40px;
    }

.movie-bar{
    margin-bottom: 200px;
    background-color: black;
    color: white;
}

.movie-header{
    background-color: white;
    display: flex;
    flex-direction: row;
    height: 60px;
    justify-content: end;
    align-items: center;
    /* border: 1px solid black; */
}

.movie-text{
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.book-bar{
    width: 90%;
    height: 200px;
    border: 1px solid #000;
    margin-left: 65px;
}

.th{
    height: 50px;
}

.book-img{
    margin-left: 20px;
    height: 100px;
    width: 60px;
    padding-right: 10px;
    padding-top: 10px;
}

.deletebtn
{
    width: 50px;
    height: 40px;
    background-color: #ff0000;
    border: #ff0000;
    color:#fff;
    margin-left: 30px;
}

.pcode{
    padding-left: 15px;
    padding-bottom: 10px;
}

.center{
    text-align: center;
}

.deletebtn:hover{
    background-color: rgba(20, 19, 19, 0.81);
    border-radius:12px;
}

input[type=number]{
    margin:30px;
    width:60px;
    height: 30px;
}

.book-bar tr:nth-child(odd)
{
    background-color: #000;
    color: white;
}

.book-bar tr:nth-child(even)
{
    background-color: rgba(20, 19, 19, 0.81);
    color: white;
}

.footer-section{
    display: flex;
    flex: 1;
    flex-direction: row;
    text-align: center;
    background-color: black;
    color: white;
    height:60px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.buy-ticket-btn{
    width: 100px;
    height: 50px;
    background-color: white;
    border: solid white;
    color: black;
    margin: 20px 10px;
    font-size: 15px;
}

.buy-ticket-btn:hover{
        transform:scale(1.1);
    }



/* =====================================
   TABLETS (1024px and below)
===================================== */

@media screen and (max-width:1024px){

    .header{
        flex-wrap:wrap;
        justify-content:center;
        text-align:center;
        gap:20px;
        padding:15px;
    }

    .navgation-bars{
        flex-wrap:wrap;
        justify-content:center;
        height:auto;
        padding:15px;
    }

    .nav-bars{
        margin:10px;
    }

    .book-bar{
        width:95%;
        margin:20px auto;
    }

    .movie-text h1{
        font-size:30px;
        text-align:center;
    }

}


/* =====================================
   MOBILE PHONES (768px and below)
===================================== */

/* =====================================
   MOBILE PHONES (768px and below)
===================================== */

@media screen and (max-width:768px){

    .header{
        display:flex;
        justify-content:space-between;
        align-items:center;
        flex-direction:row;
        padding:10px 15px;
    }

    .header > div:first-child{
        flex:1;
        display:flex;
        justify-content:flex-start;
    }

    .header > div:last-child{
        flex:1;
        display:flex;
        justify-content:flex-end;
    }

    .cinema-image{
        width:130px;
        height:auto;
        margin:0;
    }

    .cinema-name{
        display:none;
    }

    .logos{
        display:flex;
        gap:8px;
        margin:0;
    }

    .social-media-logos{
        width:30px;
        height:30px;
    }

    .navgation-bars{
        display:flex;
        flex-direction:column;
        align-items:stretch;
        height:auto;
        padding:0;
    }

    .hamburger{
        display:block;
        width:44px;
        height:44px;
        margin:10px 15px 10px auto;
        background:black;
        border:1px solid white;
        cursor:pointer;
    }

    .nav-menu{
        display:none;
        flex-direction:column;
        width:100%;
        background:black;
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-bars{
        width:100%;
        text-align:center;
        border-bottom:1px solid rgba(255,255,255,.2);
    }

    .nav-bars a{
        display:block;
        color:white;
        padding:15px;
        margin:0;
    }

    .nav-bars a:hover{
        background:white;
        color:black;
        margin:0;
        padding:15px;
    }

    .movie-header{
        height:auto;
        padding:20px;
    }

    .movie-text h1{
        font-size:24px;
        text-align:center;
    }

    .book-bar{
        display:block;
        overflow-x:auto;
        white-space:nowrap;
        width:100%;
        margin:0;
    }

    .book-img{
        width:70px;
        height:auto;
        margin-left:10px;
    }

    input[type=number]{
        width:50px;
        margin:10px;
    }

    .deletebtn{
        width:40px;
        height:35px;
        margin-left:10px;
    }

    .buy-ticket-btn{
        width:150px;
        height:45px;
        margin:10px;
        font-size:14px;
    }

    .footer-section{
        height:auto;
        padding:20px;
        font-size:15px;
    }

}


/* =====================================
   LARGE SCREENS
===================================== */

@media screen and (min-width:1440px){

    .book-bar{
        width:85%;
        margin:30px auto;
    }

}