/* Removes the scroll bar */
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
body {
  -ms-overflow-style: none; /* Internet Explorer, Edge */
}
html {
  scrollbar-width: none; /* Firefox */
}

body{
  font-family: 'Open Sans', Arial, sans-serif;
  background-color:#ffffff;
  color:#000000;
  min-width: 1200px;
  margin: 0; 
  padding-top: 54px;
  padding: 0;
}

h1, h2 {
    font-family: 'Ethnocentric', sans-serif; 
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000000; 
}

header{
  width:100%;
  background-color: #ffffff;
  color:#000000;
  display:block;
  justify-content: center;
  padding-bottom: 20px;
}

header nav {
  top: 0;
  left: 0;
  width: 100%;
  height:3%;
  padding:15px 0;
  display:flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  z-index: 100;
}

header nav ul {
  list-style: none;
  display:flex;
  justify-content: center;
  gap:40px;
  margin: 0;
  padding:0;
  font-size: 1.1rem;
}

header nav ul a {
  color: #FDB31E;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

header nav ul a:hover{
  color: #FF0000;
}

header nav ul a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px; 
    display: block;
    bottom: -12px; 
    left: 50%;
    background: #FF0000; 
    transform: translateX(-50%); 
    transition: width 0.3s ease;}

header nav ul a:hover::after {
    width: 100%;
}
.hero_center {
  width:100%;
  margin-left: calc(50% - 50vw);
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color:#ffffff;
  text-shadow:2px 2px 5px #000;
  position:relative;
}
.hero_banner_image {
  width: 100%; 
  height: auto; 
  display: block; 
}
#logo{
  width:15%;
  aspect-ratio: 3 / 1;
  position: absolute;
  top: 3%; 
  left: 3%; 
  z-index: 2; 
}

.hero_text_content {
  position:absolute;
  font-family: ethnocentric, sans-serif;
  position: absolute;
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center; 
  z-index: 1; 
}

.hero_text_content h1 {
    font-size: 3.5em; 
    font-weight: 900;
    letter-spacing: 10px; 
    text-transform: uppercase;
}

.hero_text_content p {
    font-size: 1.2em;
    font-weight: 300;
}

.content_grid {
    width: 90%; 
    max-width: 1000px;
    margin: 60px auto; 
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; 
    padding: 0;
    padding-bottom: 70px;
}

.movie_category {
    text-align: center;
}

.movie_category h2 {
    font-family: 'Ethnocentric Rg', sans-serif;
    font-size: 2.5em;
    padding-bottom: 10px;
    border-bottom: 5px solid #FF0000; 
    margin-bottom: 40px;
    letter-spacing: 5px;
    color: #000000;
}

.movie_category a {
    text-decoration: none;
    display: block;
}

.movie_picture_placeholder {
    height: auto; 
    background-color: #000000; 
    border: 1px solid #000000; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie_picture_placeholder img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0.9);
}

.movie_category a:hover .movie_picture_placeholder {
    transform: translateY(-8px); 
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4); 
}

.movie_category a:hover .movie_picture_placeholder img {
    filter: brightness(1.1); 
    transform: scale(1.03); 
}

.read_more_link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; 
    padding: 15px 0;
    margin-top: 20px;
    background-color: #000000; 
    color: #FDB31E; 
    font-family: 'Ethnocentric Rg', sans-serif;
    text-transform: uppercase;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 2px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.read_more_link .arrow {
    font-size: 1.5em;
    font-weight: 900;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
}

.movie_link_container:hover .read_more_link {
    background-color: #FF0000; 
    color: #FFFFFF; 
}

.movie_link_container:hover .read_more_link .arrow {
    transform: translateX(5px); 
    color: #FFFFFF; 
}

.movie_picture_placeholder {
    margin-bottom: 0; 
}

footer {
    padding: 20px 0;
    margin-top: 50px;
    background-color: #000000; 
    color: #FDB31E; 
    text-align: center;
    font-size: 0.9em;
    letter-spacing: 1px;
}