/*MOVIES.HTML STYLING*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;800&display=swap');

/*GLOBAL STYLES*/
body {
    font-family: 'Roboto', sans-serif;
    background-color: #FBF4EE;
    max-height: 100vh;
    max-width: 2000px;
    min-width: 690px;
    margin-left: auto;
    margin-right: auto;
}

/* buttons */
button{
   all: unset;
   background-color: #E18E26;
   color: #FBF4EE;
   padding: 5px 20px;
   cursor: pointer;
   font-weight: 500;
   border-radius: 10px;
   text-align: center;
}

button:hover {
   background-color: #BF9055;
}

button:active {
   background-color: #575548;
}

/* a tags */
a {
  text-decoration: none;
}


/*MAIN GRID*/
#grid-container {
    display: grid;
    margin-left: 150px;
    margin-right: 100px;
    padding-top: 20px;
    grid-template-columns:  1fr ;
    grid-template-rows: auto 1fr;
    height: 100%;
}


/*SEARCH SECTION*/
#search-menu-container {
    grid-row: 1;
    padding: 0px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 0.5fr);
}


/* search menu container text elements */
#logo{
    grid-row: 1;
}

#logo img{
    max-width: 350px;
}

/* search bar in search menu section */
.search-form{
    grid-row: 2;
    grid-column: 1 / 2;
}

#searchbar {
    -webkit-appearance: none;
    -webkit-box-shadow: none;
    -webkit-user-select: text;
    all: unset;
    border: 2px solid #E18E26;
    border-radius: 12px;
    padding: 4px 10px;
    width: 50%;
    max-width:1000px;
    box-sizing: border-box;
}

#searchbar::placeholder {
  color: #1E1D17;
  font-weight: 200;
}

#searchbar::-webkit-search-cancel-button {
   -webkit-appearance: none;
   appearance: none;
   display: none;
}

#searchbar::-webkit-input-placeholder {
  color: grey;
  font-weight: 200;
}

#go-button {
   margin-top: 10px;
}


/* filter buttons in search menu */
#filter-buttons{
    grid-row: 3;
    margin-top: 10px;
}


#filter-buttons button {
  margin-bottom: 8px;
}


/*MOVIE SECTION*/
#movie-selection-container {
    grid-row: 2;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    overflow-y: auto;
    max-height: 100vh;
    box-sizing: border-box;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* movie selection container webkit styling */
#movie-selection-container::-webkit-scrollbar {
    display:none;
}


/* movie posters */
#movie-list {
   list-style-type: none;
   padding: 0;
   display: flex;
   flex-wrap: wrap;
   gap: 30px;

}

#movie-list li {
   flex: 0 0 200px;
}

.movie-poster img{
   width: 100%;
   max-width: 500px;
   height: auto;
   object-fit: cover;
   object-position: 50% 35%;
   margin: 0 auto;
}

.movie-poster {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-poster:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(30, 29, 23, 0.15);
}


/* MEDIA QUERIES AND WEBKIT*/
/* Chrome, Safari, Edge Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #FBF4EE;
}

::-webkit-scrollbar-thumb {
  background-color: #E18E26;
  border-radius: 6px;
  border: 3px solid #FBF4EE;
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #E18E26 #FBF4EE;
}
