/* ~~~~~ RESET STYLES ~~~~~ */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}

html {
  /* font-size: 90%; */
  scroll-behavior: smooth;
}

/* body {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  box-sizing: border-box;
} */

.overflow {
  overflow: hidden !important;
}

.contentArea {
  max-width: 1600px;
  margin: 0 auto;
}

img {
  display: block;
}

/* ~~~~~ HEADER STYLES ~~~~~ */
.header-home{
  height: 80px;
  z-index: 1;
  position: fixed;
  box-shadow: 0px 0px 5px rgb(194, 194, 194);
}
.header {
  height: 100px;
  width: 100%;
  background-color: #fff;
}

.header .wrapper {
  width: 100%;
  height: 100%;
  display: grid;
  align-items: center;
}

.header .container {
  /* padding: 0 5%; */
  display: grid;
  grid-template-rows: 1fr;
  /* grid-template-columns: auto 4fr 2fr 2fr 2fr auto; */
  grid-template-columns: auto 4fr 1fr 0fr 1fr auto auto;
  align-items: center;
  position: relative;
}

@media (max-width: 1366px) {
  .header .container {
    /* grid-template-columns: 4fr 4fr 2fr 2fr 2fr auto; */
    grid-template-columns: 2fr 4fr 1fr 0fr 1fr auto auto;

  }
}

@media (max-width: 1140px) {
  .header .container {
    /* grid-template-columns: 1fr auto auto auto; */
    grid-template-columns: 1fr auto auto auto auto auto auto;
    align-items: center;
  }
}

/* LOGO */
.header .container .imageContainer {
  width: 200px;
  height: 100%;
  display: grid;
  place-content: center;
}

@media (max-width: 1280px) {
  .header .container .imageContainer {
    width: 170px;
  }
}

@media (max-width: 600px) {
  .header .container .imageContainer {
    width: 150px;
  }
}

.header .container .imageContainer .logo {
  width: 100%;
  height: auto;
}

/* SEARCH */
.header .container .searchContainer {
  justify-self: center;
  align-self: center;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border: 1px solid #000;
  border-radius: 2px;
  position: relative;
  display: grid;
  place-content: center;
}

@media (max-width: 420px) {
  .header .container .searchContainer {
    margin-right: 15px;
  }
}

.header .container .searchContainer .iconContainer .searchIcon {
  width: 15px;
  height: 15px;
}

.header .container .searchContainer.close .iconContainer .searchIcon {
  display: none;
}

.header .container .searchContainer.close .iconContainer {
  width: 19px;
  height: 3px;
}

.header .container .searchContainer.close .iconContainer::before,
.header .container .searchContainer.close .iconContainer::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: #ea4335;
  border-radius: 1px;
  transition: all 0.6s ease-out;
}

.noScroll{
  overflow: hidden;
}

.header .container .searchContainer.close .iconContainer::before {
  transform: rotate(45deg);
}

.header .container .searchContainer.close .iconContainer::after {
  transform: rotate(-45deg);
}

/* NAVIGATION */
.header .container .navList {
  align-self: center;
  margin: 0 50px;
  transition: all 0.3s ease-in-out;
  width: 65%;
}

@media (max-width: 1280px) {
  .header .container .navList {
    margin: 0 30px;
  }
}

@media (max-width: 1140px) {
  .header .container .navList {
    all: unset;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    width: 0;
    height: 100vh;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: width 0.5s ease;
  }
}

@media (max-width: 1140px) {
  .header .container .navList.active {
    opacity: 1;
    visibility: visible;
    width: 45%;
    z-index: 999;
  }

  .header .container .navList.active .list .items {
    text-indent: unset;
  }
}

@media (max-width: 768px) {
  .header .container .navList.active {
    width: 50%;
  }
}

@media (max-width: 600px) {
  .header .container .navList.active {
    width: 60%;
  }
}

@media (max-width: 450px) {
  .header .container .navList.active {
    width: 80%;
  }
}

@media (max-width: 420px) {
  .header .container .navList.active {
    width: 100%;
  }
}

.navListImageContainer {
  display: none;
}

@media (max-width: 1140px) {
  .navListImageContainer {
    display: block;
    width: 170px;
    height: 100px;
    display: grid;
    place-content: center;
    padding-left: 40px;
    transform: translateX(-150px);
    transition: transform 1s;
  }

  .navListImageContainer img {
    width: 100%;
    height: auto;
  }

  .navListImageContainer.active {
    transform: translateX(0px);
  }
}

.header .container .navList .list {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  /* justify-content: space-between; */
  gap: 30px;
}

@media (max-width: 1140px) {
  .header .container .navList .list {
    display: block;
  }
}

.header .container .navList .list .items {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

@media (max-width: 1140px) {
  .header .container .navList .list .items {
    color: #fff;
    padding: 20px 40px;
    text-indent: -100%;
    white-space: nowrap;
  }
}

@media (max-width: 1140px) {
  .header .container .navList .list .items:not(:last-child) {
    border-bottom: 1px solid #282828;
  }
}

.navButtonContainer {
  display: none;
}

@media (max-width: 420px) {
  .navButtonContainer {
    display: block;
    padding: 0 40px;
    margin-top: 30px;
  }
  .navButtonContainer .loginBtn {
    width: 100%;
    padding: 10px 0;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 1.6rem;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 500;
  }
}

/* LOGIN BUTTON */
.header .container .buttonContainer {
  align-items: center;
  justify-content: center;
  display: flex;
}

@media (max-width: 1140px) {
  .header .container .buttonContainer {
    margin: 0 20px;
  }
}

@media (max-width: 600px) {
  .header .container .buttonContainer {
    margin: 0 15px;
  }
}

@media (max-width: 420px) {
  .header .container .buttonContainer {
    display: none;
  }
}

.header .container .buttonContainer .loginBtn {
  padding: 10px 30px;
  background-color: #0e1422;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 1280px) {
  .header .container .buttonContainer .loginBtn {
    padding: 10px 25px;
  }
}

@media (max-width: 600px) {
  .header .container .buttonContainer .loginBtn {
    padding: 8px 20px;
  }
}

.header .container .buttonContainer .loginBtn:hover {
  background-color: #1a2133;
}
.clsDisplayNone {
  display: none;
}

/* ~~~~~ HAMBURGER MENU ~~~~~ */
.hamburger {
  display: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  z-index: 999;
}

@media (max-width: 1140px) {
  .hamburger {
    display: grid;
    place-content: center;
  }
}

.hamburger .open {
  width: 20px;
  height: 2px;
  background-color: #000;
  border-radius: 1px;
  transition: all 0.6s ease-out;
  position: relative;
  z-index: 2;
}

.hamburger .open::after,
.hamburger .open::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #000;
  border-radius: 1px;
  transition: all 0.6s ease-out;
}

.hamburger .open::before {
  transform: translateY(-7px);
}

.hamburger .open::after {
  transform: translateY(7px);
}

.hamburger.close .open {
  background-color: transparent;
  box-shadow: none;
}

.hamburger.close .open::after,
.hamburger.close .open::before {
  background-color: #ea4335;
  width: 22px;
  height: 3px;
}

.hamburger.close .open::before {
  transform: rotate(45deg);
}

.hamburger.close .open::after {
  transform: rotate(-45deg);
}

/* searchPannel */
.searchPannel {
  width: 470px;
  padding: 24px;
  background-color: #fff;
  border-radius: 12px;
  position: absolute;
  top: 64px;
  left: 50%;
  border: 1px solid #ff67013d;
  box-shadow: 10px 10px 14px 1px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100px) translateX(-50%);
  z-index: -1;
  transition: 1s;
}

@media (max-width: 1140px) {
  .searchPannel {
    transform: translateY(-100px);
    left: calc(100% - 300px);
  }
}

@media (max-width: 650px) {
  .searchPannel {
    width: 400px;
    left: calc(100% - 250px);
  }
}

@media (max-width: 450px) {
  .searchPannel {
    width: 350px;
    left: calc(100% - 200px);
  }
}

@media (max-width: 420px) {
  .searchPannel {
    left: calc(100% - 300px);
  }
}

@media (max-width: 380px) {
  .searchPannel {
    width: 340px;
    left: calc(100% - 290px);
  }
}

@media (max-width: 354px) {
  .searchPannel {
    width: 335px;
    left: calc(100% - 285px);
  }
}

@media (max-width: 350px) {
  .searchPannel {
    width: 320px;
    left: calc(100% - 270px);
  }
}

@media (max-width: 340px) {
  .searchPannel {
    width: 310px;
    left: calc(100% - 260px);
  }
}

@media (max-width: 330px) {
  .searchPannel {
    width: 300px;
    left: calc(100% - 250px);
  }
}

.searchPannel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateX(-50%);
  z-index: 999;
}

@media (max-width: 1140px) {
  .searchPannel.active {
    transform: translateY(0);
  }
}

.searchPannel .searchForm {
  position: relative;
}

.searchPannel .searchForm .searchInput {
  all: unset;
  box-sizing: border-box;
  width: 100%;
  height: 35px;
  padding: 0 40px 0 20px;
  background-color: #e8f4ff8a;
  font-size: 1.1rem;
  color: #7f7f7f;
  border: 1px solid #ff67016b;
  border-radius: 30px;
}

.searchPannel .searchForm .searchInput &::placeholder {
  color: #b8b8b8;
  font-size: 1.4rem;
  font-weight: 400;
}

.SearchBtn {
  all: unset;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 35px;
  height: 35px;
  background-color: #ff822e;
  border-radius: 50%;
  display: grid;
  place-content: center;
}

.SearchBtn img {
  width: 15px;
  height: 15px;
}

/* ~ ~ ~ ~ Footer ~ ~ ~ ~ */
.footer {
  margin-top: auto;
  position: relative;
  overflow-x: clip;
  background-color: #002d55;
  color: #fff;
  z-index: 0;
}

.footer .wrapper {
  padding: 50px 0;
}

@media (max-width: 768px) {
  .footer .wrapper {
    padding: 30px 0;
  }
}

.footer .container {
  padding: 0 5%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  align-items: start;
}

.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}

@media (max-width: 474px) {
  .footer-logo {
    margin-bottom: 30px;
  }
}

.footer-brand p {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #fff;
}

.footer-brand .icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  object-fit: contain;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 15px;
}

.footer-socials .social-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.footer-socials a:hover .social-icon {
  transform: scale(1.1);
}

/* Footer Links */
.footer-links h4 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 18px;
  margin-bottom: 14px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ddd;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #f7941d;
}

/* Map Styling */
.footer-map img {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 0 15px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-map img {
    max-width: 100%;
  }
}

/* Hero banner */

.heroBanner {
  position: relative;
  width: 100%;
  height: auto;
  background-image: url("../images/hero-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.heroBanner .overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark overlay for text contrast */
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.heroBanner .wrapper {
  padding: 350px 0 50px;
  display: grid;
  justify-content: center;
}

.heroBanner .heroContent {
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 0 20px;
}

.heroBanner .heroTitle {
  font-family: "Josefin Sans", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.heroBanner .heroSubtitle {
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .heroBanner .heroTitle {
    font-size: 3.5rem;
  }

  .heroBanner .heroSubtitle {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .heroBanner .heroTitle {
    font-size: 2.8rem;
  }

  .heroBanner .heroSubtitle {
    font-size: 1.4rem;
  }
}

/* Header list & dropDown */
.nav {
  list-style: none;
  padding: 0;
  /* margin: 0 0 20px 0; */
  display: flex;
  background-color: white;
}
.nav > li {
  position: relative;
}
.nav > li > a {
  display: block;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  white-space: nowrap;
}
.nav > li:hover > a {
  background-color: #ffffff;
}
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 160px;
  box-shadow: 0 8px 16px #0003;
  z-index: 1;
}
.dropdown li a {
  padding: 10px 14px;
  display: block;
  color: black;
  text-decoration: none;
}
.dropdown li a:hover {
  background-color: #fff6f6;
}
.more:hover .dropdown {
  display: block;
}

/* Filter Class */

.filter-panel {
  width: 250px;
  border: 1px solid #ddd;
  position: absolute;
  z-index: 1;
  background-color: white;
  box-shadow: 0px 1px 5px gray;
  border: none;
}

.filter-section {
  border-bottom: 1px solid #eee;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 10px;
  cursor: pointer;
  font-weight: bold;
}

.filter-header:hover {
  background-color: #f9f9f9;
}

.filter-content {
  padding: 10px;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.filter-section.active .filter-content {
  display: block;
}

.toggle-icon {
  font-weight: bold;
  font-size: 18px;
}

input[type="range"] {
  width: 100%;
}

input[type="checkbox"] {
  margin-right: 5px;
}

.style-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

.search-box {
  position: relative;
  margin-top: 5px;
}

.search-box input {
  width: 85%;
  padding: 6px 30px 6px 8px;
}

.search-box::after {
  content: '🔍';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.show-more {
  color: blue;
  cursor: pointer;
  margin-top: 8px;
  font-size: 14px;
}

.orientation-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.orientation-icons div {
  width: 45px;
  height: 45px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
}

.dvFilter {
  padding: 5px 20px;
  background-color: #212121;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  float: right;
  margin-top: 80px;
  margin-right: 20px;
}
.FilterBtn {
  background-color: #212121;
  color: #fff;
  border: none;
  font-size: 1.1rem;
}
.dvFilterPanel {
  padding: 5px 20px;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  float: right;
  margin-top: 120px;
  margin-right: 125px;
}
.show-toggle {
  color: blue;
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
}
.hidden {
  display: none;
}
.dvSort {
  padding: 5px 10px;
  background-color: #212121;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  float: right;
  margin-top: 80px;
  margin-right: 70px;
}