/* Responsive CSS for LUMIÈRE Boulevard Website */

/* Extra Small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header__inner {
    padding: 10px 0;
  }

  .header__logo img {
    height: 40px;
  }

  .header__menu {
    display: none;
  }

  .header__humberger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
  }

  .header__humberger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
  }

  .sec-hero {
    height: 70vh;
  }

  .titlebox__title {
    font-size: 24px !important;
    line-height: 1.3;
  }

  .titlebox__subtitle {
    font-size: 14px;
  }

  .titlebox__text {
    font-size: 14px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .footer {
    padding: 30px 0 15px;
  }

  .footer__content .row > div {
    margin-bottom: 30px;
  }

  /* Float icons mobile styles moved to main.css */
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .header__logo img {
    height: 45px;
  }

  .titlebox__title {
    font-size: 28px;
  }

  .sec-hero {
    height: 80vh;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .header__menu .menu-list {
    gap: 20px;
  }

  .header__menu .menu-list a {
    font-size: 14px;
  }

  .titlebox__title {
    font-size: 32px;
  }

  .sec-introduction__box {
    width: 300px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .header__menu .menu-list {
    gap: 25px;
  }

  .titlebox__title {
    font-size: 36px;
  }

  .sec-introduction__box {
    width: 400px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }

  .header__menu .menu-list {
    gap: 30px;
  }

  .titlebox__title {
    font-size: 42px;
  }
}

/* Ultra wide screens (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .sec-introduction__box {
    width: 500px;
  }
}

/* Mobile Menu Styles */
@media (max-width: 991.98px) {
  .megamenu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    transition: left 0.3s ease;
  }

  .megamenu.active {
    left: 0;
  }

  .megamenu__nav .menu-list {
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
  }

  .megamenu__nav .menu-list a {
    color: white;
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
  }

  .header__humberger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .header__humberger.active span:nth-child(2) {
    opacity: 0;
  }

  .header__humberger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* Form Responsive */
@media (max-width: 767.98px) {
  .contact-form .row {
    margin: 0;
  }

  .contact-form .col-xl-7 {
    padding: 0;
  }

  .item-form {
    margin-bottom: 20px;
  }

  .item-form__label {
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
  }

  .fieldinput {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
  }

  .submitbtn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
  }
}

/* Image Gallery Responsive */
@media (max-width: 767.98px) {
  .img-group .row {
    margin: 0;
  }

  .img-group .col-8,
  .img-group .col-4 {
    padding: 5px;
  }

  .img-item {
    margin-bottom: 10px;
  }

  .img-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
}

/* Swiper Responsive */
@media (max-width: 767.98px) {
  .swiper-slide {
    padding: 20px 15px;
  }

  .item-title {
    font-size: 16px;
    line-height: 1.4;
  }

  .swiper-pagination {
    bottom: 20px;
  }

  .slide-buttonCustom {
    display: none !important;
  }
}

/* Map Responsive */
@media (max-width: 767.98px) {
  .sec-urbanConnect__map {
    margin-top: 30px;
  }

  .map-view {
    height: 300px;
    overflow: hidden;
  }

  .map-view img {
    width: 100%;
    height: auto;
  }

  .tabbox__list ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }

  .tabbox__list a {
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
  }

  .tabbox__list a.active {
    background: #007bff;
    color: white;
  }
}

/* Footer Responsive */
@media (max-width: 767.98px) {
  .footer__content .row {
    text-align: center;
  }

  .footer__logoWrap {
    margin-bottom: 30px;
  }

  .footer__widget {
    margin-bottom: 30px;
  }

  .footer__text {
    font-size: 12px;
    line-height: 1.5;
  }

  .footer__copyright {
    text-align: center;
    margin-top: 20px;
  }
}

/* Language Switcher Responsive */
@media (max-width: 767.98px) {
  .header__language {
    margin-left: 15px;
  }

  .dropdown-content {
    right: 0;
    left: auto;
    min-width: 80px;
  }

  .dropdown-content a {
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* Print Styles */
@media print {
  .header,
  .megamenu,
  .float-icon,
  .swiper-pagination,
  .slide-buttonCustom {
    display: none !important;
  }

  body {
    background: white !important;
  }

  .container {
    max-width: none !important;
    padding: 0 !important;
  }

  .titlebox__title {
    color: black !important;
  }

  .footer {
    background: white !important;
    color: black !important;
  }
}
