/* Base */
body {
    font-family: 'Open Sans', sans-serif;
    color: #595959;
    margin: 0;
    padding: 0;
  }
  
  h1, h2 {
    text-transform: uppercase;
    color: #1f2c34;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-left: 5px solid #e96b55;
    padding-left: 5%;
    margin-bottom: 3%;
  }
  
  a {
    color: #e96b55;
  }
  a:hover {
    color: #5eab99;
    text-decoration: none;
  }
  
  /* Buttons */
  .btn-custom {
    background: transparent;
    border: 2px solid #e96b55;
    border-radius: 25px;
    color: #e96b55;
    font-weight: 600;
    text-transform: uppercase;
  }
  .btn-custom:hover {
    border-color: #5eab99;
    color: #5eab99;
  }
  
  /* Layout containers */
  .container-fluid {
    padding: 0;
  }
  .container-fluid aside {
    padding: 0;
  }
  .container-fluid article {
    padding: 3% 2%;
  }
  
  /* Scroll to Top Button */
  #myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: 2px solid #e96b55;
    background-color: transparent;
    color: #e96b55;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
  }
  #myBtn:hover {
    background-color: #f0f193;
  }
  
  /* Navigation bar */
  .maNav {
    background: #1f2c34;
  }
  .maNav .navbar-nav a.nav-link {
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
  }
  .maNav .navbar-nav a.nav-link:hover {
    color: #5eab99;
  }
  .maNav .navbar-nav a.nav-link.active {
    color: #5eab99;
  }
  
  /* Film section cards */
  .container.movie h2 {
    color: #e96b55;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
  }
  .card {
    border: none;
    transition: transform 0.3s ease;
  }
  .card:hover {
    transform: scale(1.03);
  }
  .card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
  }
  .card-text {
    font-size: 0.9rem;
  }
  
  /* Footer */
  footer {
    background: #2e4047;
    color: white;
  }
  footer h2 {
    font-size: 1.5rem;
    color: white;
  }
  footer a {
    color: white;
    display: block;
    margin-top: 0.5rem;
  }
  footer a:hover {
    color: #5eab99;
  }
  footer .socialicons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 5%;
    background-color: #e96b55;
    border-radius: 50%;
    padding: 10px;
    text-align: center;
    display: inline-block;
    width: 45px;
    height: 45px;
  }
  footer .socialicons a:hover {
    background-color: #5eab99;
  }
  footer .socketBkg {
    background: #1f2c34;
    font-size: 0.8rem;
  }
  footer .socketBkg p {
    margin: 0;
    padding: 1% 0;
  }
  .hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
  }
  
  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
  }
  /* Hero Title Gold Style */
.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffe8b2;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  }
  
  .hero-text p {
    font-size: 1.2rem;
    color: #ffe8b2;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  }
  
  .hero-text strong {
    color: #ffe8b2;
  }
  
  