/* === Header === */
header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.header_nav_cont {
    position: relative;
    z-index: 9999999;
}

.header_nav {
    height: 84px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_nav_right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header_nav_img {
  width: 200px;
  height: 100%;
  display: flex;
  align-items: center;
}

.header_nav_lst {
    display: flex;
    align-items: center;
    gap: 30px; 
    margin-right: 40px;
    font-size: large;
    font-weight: bold;
}

.header_nav_lst_cont,
.hamb {
  display: flex;
  align-items: center;
}

.header_nav_lst_cont {
    margin-right: 20px;
}

.header_nav_lst_itm_inr:hover {
    transform: scale(1.1);
    opacity: 0.6;
    color: #000;
}

/* === Responsive Adjustments: Header === */
@media (max-width: 1180px) {
    .header_nav {
        padding: 0 10px;
    }

    .header_nav_lst_cont {
        display: none;
    }
}

.header_sitemap_cont {
    display: none;
    height: 100vh;
    width: 100%;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    padding-left: 260px;
    color: #000000;
    text-shadow: #ffffff 2px 2px 20px;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.header_sitemap_cont.is-open {
    display: block;
}

.header_sitemap_cont_inr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding-top: 200px;
  box-sizing: border-box;
}

.header_sitemap_cont_lst_itm {
  width: 100%;
  max-width: 320px;
  margin: 20px;
  padding: 10px 0;
  text-align: center;
}

.header_sitemap_cont_lst_dl {
    height: 100%;
}

.header_sitemap_cont_lst_dt {
    font-size: 1.5rem;
    font-weight: bold;
    padding-left: 50px;
}

@media (max-width: 1180px) {
    .header_sitemap_cont {
        padding-left: 85px;
    }

    .header_sitemap_cont_inr {
        padding-top: 160px;
    }
}

@media (max-width: 576px) {
    .header_sitemap_cont {
        padding-left: 0;
    }

    .header_sitemap_cont_inr {
        padding-top: 120px;
    }

    .header_sitemap_cont_lst_itm {
        max-width: 100%;
        margin: 10px;
        padding: 0;
    }

    .header_sitemap_cont_lst_dt {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
        font-size: 1.2rem;
    }

    .header_sitemap_lst_itm_inr {
        padding: 10px 0;
    }
}
