/*----------------------------
    Responsive Styles
----------------------------*/

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .site-navbar {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .site-menu-main {
    display: flex;
  }

  .hero-area-l3 {
    min-height: 100vh;
    background-size: cover !important;
    background-position: center !important;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991px) {
  /* Header & Navigation */
  .site-header {
    background: #1D263A;
  }

  .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }

  .menu-block {
    position: fixed;
    width: 320px;
    background: #1D263A;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }

  .menu-block.active {
    transform: translate(0%);
  }

  /* Hero Section */
  .hero-area-l3 {
    background: #1D263A !important;
    min-height: 80vh;
  }

  .hero-area-l3 .container {
    padding-top: 80px;
  }

  .banner-content {
    text-align: center;
    padding: 0 20px;
  }

  .banner-content h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  /* Menu Mobile */
  .menu-block .nav-link-item {
    color: #fff !important;
    padding: 15px 20px;
  }

  .mobile-menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #1D263A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu-close {
    color: #fff;
    font-size: 24px;
    cursor: pointer;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767px) {
  .hero-area-l3 {
    min-height: 60vh;
  }

  .banner-content h2 {
    font-size: 28px;
  }

  .banner-content p {
    font-size: 16px;
  }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 576px) {
  .site-header {
    padding: 10px 0;
  }

  .brand-logo img {
    max-height: 40px;
  }

  .hero-area-l3 .container {
    padding-top: 60px;
  }
} 