/*-------------------------------------*\
  #media_query.css
\*-------------------------------------*/

/**
 * copyright 2024 @Bintash
 */





/*-------------------------------------*\
  #RESPONSIVE FOR 1200px
\*-------------------------------------*/

@media screen and (max-width: 1200px) {

  :root {

    /**
     * Spacing 
     */

    --px: 80px; /* padding-left & padding-right */

  }

  /**
   * HEADER RESPONSIVE
   */

  header {
    position: fixed;
    top:  0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 50;
  }

  header.active { top: 250px; }

  /**
   * small screen menu button style 
   */

  .navbar-menu-btn {
    display: block;
    position: absolute;
    top:  50%;
    left: var(--px);
    transform: translateY(-50%);
  }

  .navbar-brand { margin-left: 50px; }

  .navbar-menu-btn span {
    display: block;
    background: var(--off-white);
    width: 25px;
    height: 2px;
    margin: 8px;
  }

  .navbar-menu-btn .two   { width: 20px; }
  .navbar-menu-btn .three { width: 15px; }

  .navbar-menu-btn.active span { background: var(--light-azure); }

  .navbar-menu-btn.active .one { transform: rotate(45deg) translateY(14px); }

  .navbar-menu-btn.active .two { width: 0; }

  .navbar-menu-btn.active .three {
    width: 25px;
    transform: rotate(-45deg) translateY(-14px); 
  }

  nav {
    position: fixed;
    top: -250px;
    left: 0;
    width: 100%;
    z-index: 100;
  }

  nav.active { top: 0; }

  .navbar-nav {
    height: 250px;
    flex-direction: column;
    justify-content: center;
    align-items:     flex-start;
    padding-left: var(--px);
    
  }

  .navbar-nav li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 14px;
  }
 /**
   * NAVIGATION BAR SECTION RESPONSIVE
   */

  @media screen and (min-width: 0px) and (max-width: 1024px) {
    #menuToggle {
        display: block;
    }
    /* show it on small screens */
}
  
  
   /**
   * NAVBAR SECTION RESPONSIVE
   */
   
   @media screen and (min-width: 0px) and (max-width: 1024px) {
    #navbar1 {
        display: none;
    }
    /* show it on small screens */
}




  /**
   * BANNER SECTION RESPONSIVE
   */


  .banner-card .card-title { font-size: 1.5em; }



  /**
   * CATEGORY SECTION RESPONSIVE
   */

  .category-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }



  /**
   * FOOTER SECTION RESPONSIVE
   */

  .footer-content { flex-direction: column; }

  .footer-brand {
    margin-right: 0;
    margin-bottom: 60px;
  }

  .footer-links { grid-template-columns: repeat(auto-fit, minmax(125px, 1fr)); }
  
}





/*-------------------------------------*\
  #RESPONSIVE FOR 1024px
\*-------------------------------------*/

@media screen and (max-width: 1024px) {

  :root {

    /**
     * Spacing 
     */

    --px: 60px; /* padding-left & padding-right */

  }



}





/*-------------------------------------*\
  #RESPONSIVE FOR 768px
\*-------------------------------------*/

@media screen and (max-width: 768px) {

  :root {

    /**
     * Spacing 
     */

    --px: 40px; /* padding-left & padding-right */

  }

  /**
   * BANNER SECTION 
   */

  .banner { display: flex; }

  /**
   * BANNER SECTION 
   */
 .banner-card {
   max-width: fit-content;
   max-height: fit-content;
   margin-top: 30px;
 }

  .banner-card .card-content {
    bottom: 10px;
    left: 10px;
    font-size: 12px;
  }

   .banner-img { object-position: top;
     object-fit: cover;
     filter: brightness(60%);
     max-width: fit-content;
     max-height: fit-content;

 }
  .banner-card .card-info .quality {
   background: var(--azure);
   padding: 2px 5px;
   border-radius: 5px;
   font-weight: var(--fw-7);
 }
 
 .banner-card .card-info .genre .year .quality{margin-top: 100px;}

  /**
   * MOVIE SECTION
   */
  
  .movies { margin-top: 120px; }


    /**
   * ALERT SECTION
   */
  .alert2 {margin-top: -90px;
          font-size: small;
  }
  .alert { font-size: small;}
   

  /**
   * filter bar responsive
   */
  .filter-bar {
    flex-direction: column;
    align-items: flex-start;
    margin-top: -90px;
  }

  .filter-bar select { margin-bottom: 20px; }

  .filter-radios { width: 100%; }

}


/*-------------------------------------*\
  #RESPONSIVE FOR 575px
\*-------------------------------------*/

@media screen and (max-width: 575px) {
  :root {

    /**
     * Spacing 
     */

    --px: 20px; /* padding-left & padding-right */

    /**
     * Typography 
     */
    --section-heading: 32px;
    --fs-lg:           20px;

  }

  
  /**
   * FOOTER SECTION RISPONSIVE
   */

  .footer-copyright { flex-direction: column-reverse; }

  .wrapper { margin-bottom: 20px; }
}

