/*!****************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/scss/main.scss ***!
  \****************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap);
/*!********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/scss/main.scss (1) ***!
  \********************************************************************************************************************/
@charset "UTF-8";
:root {
  --color-bg: #ffffff;
  --color-text: #111827;
  --color-primary: rgba(0, 71, 171, 1);
  --color-accent: rgba(0, 71, 171, 1);
  --color-card: #f9f9f9;
  --static-bg: #ffffff;
  --static-text: #111827;
}

[data-theme=dark] {
  --color-bg: #0f172a;
  --color-text: #f1f5f9;
  --color-primary: white;
  --color-accent: rgba(0, 71, 171, 1) ;
  --color-card: #1e293b;
  --static-bg:rgba(0, 71, 171, 1);
  --static-text: #f1f5f9;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (max-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.section {
  padding-block: 4rem;
}
.section--sm {
  padding-block: 2rem;
}
.section--lg {
  padding-block: 6rem;
}

.heading {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text);
}
.heading--center {
  text-align: center;
}
.heading--underline {
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
  padding-bottom: 0.5rem;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  background-color: var(--color-bg);
  color: var(--color-text);
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

.footer {
  background: linear-gradient(90deg, rgb(0, 71, 171), rgb(28, 169, 201));
  -webkit-background: linear-gradient(90deg, rgb(0, 71, 171), rgb(28, 169, 201));
  -moz-background: linear-gradient(90deg, rgb(0, 71, 171), rgb(28, 169, 201));
  color: #ffffff;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  font-size: 0.95rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}
.footer__content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__text {
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}
.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0.5rem 0;
}
.footer__link {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.footer__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.footer__link:hover {
  color: #f3f4f6;
}
.footer__link:hover::after {
  transform: scaleX(1);
}
@media (max-width: 576px) {
  .footer {
    font-size: 0.85rem;
    padding: 2rem 1rem 1.5rem;
  }
}

.footer__extra {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer__extra .footer__info {
  flex: 1 1 100%;
}
.footer__extra .footer__info .footer__desc {
  font-size: 0.95rem;
  color: var(--static-text);
  line-height: 1.5;
}
.footer__extra .footer__tags,
.footer__extra .footer__categories {
  flex: 1 1 200px;
}
.footer__extra .footer__tags h4,
.footer__extra .footer__categories h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #0f172a;
}
.footer__extra .footer__tags .meta-block__tag,
.footer__extra .footer__tags .meta-block__category,
.footer__extra .footer__categories .meta-block__tag,
.footer__extra .footer__categories .meta-block__category {
  display: inline-block;
  margin: 0.25rem 0.5rem 0.25rem 0;
  background: #e0f2fe;
  color: #0369a1;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  transition: background 0.3s ease;
}
.footer__extra .footer__tags .meta-block__tag:hover,
.footer__extra .footer__tags .meta-block__category:hover,
.footer__extra .footer__categories .meta-block__tag:hover,
.footer__extra .footer__categories .meta-block__category:hover {
  background: #bae6fd;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: linear-gradient(90deg, rgb(0, 71, 171), rgb(28, 169, 201));
  -webkit-background: linear-gradient(90deg, rgb(0, 71, 171), rgb(28, 169, 201));
  -moz-background: linear-gradient(90deg, rgb(0, 71, 171), rgb(28, 169, 201));
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 999;
}
.navbar__logo {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.navbar__logo a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.navbar__logo a:hover {
  opacity: 0.8;
}
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar__menu--item {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}
.navbar__menu--item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.35s ease;
  transform-origin: center;
}
.navbar__menu--item:hover::before {
  transform: translateX(-50%) scaleX(1);
}
.navbar__menu--item.has-dropdown {
  position: relative;
}
.navbar__menu--item.has-dropdown .dropdown-toggle {
  cursor: pointer;
  display: inline-block;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}
.navbar__menu--item.has-dropdown .dropdown-toggle::after {
  content: "▼";
  margin-left: 0.5rem;
  font-size: 0.6rem;
}
.navbar__menu--item.has-dropdown .dropdown-toggle:hover {
  color: #f0f0f0;
}
.navbar__menu--item.has-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: linear-gradient(90deg, rgb(0, 71, 171), rgb(28, 169, 201));
  backdrop-filter: blur(6px);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}
.navbar__menu--item.has-dropdown .dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}
.navbar__menu--item.has-dropdown .dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.navbar__menu--item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .navbar__menu--item.has-dropdown .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: none;
    padding: 0;
  }
  .navbar__menu--item.has-dropdown .dropdown-menu a {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navbar__menu--item.has-dropdown .dropdown-toggle::after {
    display: none;
  }
}
.navbar__actions {
  display: flex;
  align-items: center;
  position: relative;
  min-width: 260px;
  justify-content: flex-end;
  gap: 1rem;
}
.navbar__search {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(8px);
  transition: width 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
  z-index: 5;
}
.navbar__search::placeholder {
  color: #f0f0f0;
}
.navbar__search:focus {
  width: 260px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}
.navbar__theme-toggle {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.25rem;
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: grid;
  place-items: center;
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 10;
  cursor: pointer;
}
.navbar__theme-toggle:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(15deg);
}
.navbar__theme-toggle .icon--sun,
.navbar__theme-toggle .icon--moon {
  position: absolute;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.navbar__theme-toggle .icon--sun {
  opacity: 1;
  transform: scale(1);
}
.navbar__theme-toggle .icon--moon {
  opacity: 0;
  transform: scale(0.8);
}
[data-theme=dark] .navbar__theme-toggle .icon--sun {
  opacity: 0;
  transform: scale(0.8);
}
[data-theme=dark] .navbar__theme-toggle .icon--moon {
  opacity: 1;
  transform: scale(1);
}
.navbar__toggle {
  display: none;
  width: 32px;
  height: 24px;
  position: absolute;
  right: 2rem;
  top: 2rem;
  cursor: pointer;
  z-index: 1001;
}
.navbar__toggle-bar, .navbar__toggle-bar::before, .navbar__toggle-bar::after {
  content: "";
  display: block;
  background: #fff;
  height: 3px;
  border-radius: 2px;
  transition: 0.3s ease;
  position: absolute;
  width: 100%;
}
.navbar__toggle-bar {
  top: 50%;
  transform: translateY(-50%);
}
.navbar__toggle-bar::before {
  top: -10px;
}
.navbar__toggle-bar::after {
  top: 10px;
}
.navbar__toggle--active .navbar__toggle-bar {
  background: transparent;
}
.navbar__toggle--active .navbar__toggle-bar::before {
  transform: rotate(45deg);
  top: 0;
}
.navbar__toggle--active .navbar__toggle-bar::after {
  transform: rotate(-45deg);
  top: 0;
}
@media (max-width: 768px) {
  .navbar__toggle {
    display: block;
  }
  .navbar__menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    margin-top: 1rem;
    padding: 0;
  }
  .navbar__menu--item {
    padding: 0.75rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    color: #fff;
    transition: background 0.3s ease;
  }
  .navbar__menu--item:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .navbar__menu--item:last-child {
    border-bottom: none;
  }
  .navbar__menu--open {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    padding: 0.5rem 0;
  }
}
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .navbar__menu, .navbar__actions {
    justify-content: center;
  }
  .navbar__search {
    position: static;
    transform: none;
    width: 100%;
  }
  .navbar__search:focus {
    width: 100%;
  }
}

.weather-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
}
.weather-list__title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0rem;
  margin-top: 2rem;
  color: var(--color-primary);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.weather-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .weather-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.weather-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(12px);
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: var(--color-text);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.weather-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.weather-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.weather-card a {
  position: relative;
  z-index: 2;
  text-decoration: none;
  color: inherit;
  display: contents;
}
.weather-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  font-weight: 600;
  font-size: 1.2rem;
}
.weather-card__city {
  color: var(--color-primary);
  font-size: 1rem;
}
.weather-card__temp {
  color: white;
}
.weather-card__icon {
  font-size: 3rem;
  margin: 1.25rem 0;
  z-index: 2;
}
.weather-card__desc {
  text-transform: capitalize;
  font-size: 1rem;
  margin-bottom: 1rem;
  z-index: 2;
}
.weather-card__title {
  font-weight: 700;
  font-size: 16px;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, rgb(0, 71, 171), rgb(28, 169, 201));
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 12px;
  display: inline-block;
  transition: background 0.3s ease;
  z-index: 2;
}
.weather-card__title:hover {
  background: linear-gradient(90deg, rgb(28, 169, 201), rgb(0, 71, 171));
}

@media (max-width: 768px) {
  .weather-card {
    padding: 1rem;
  }
  .weather-card__icon {
    font-size: 2.2rem;
  }
  .weather-card__title {
    font-size: 1rem;
  }
}
.weather-list-layout {
  margin: 30px 0;
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .weather-list-layout {
    grid-template-columns: 1fr;
  }
}
.weather-list-layout .weather-list__aside {
  background: var(--static-bg);
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  height: 350px;
}
.weather-list-layout .weather-list__aside h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--static-text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.weather-list-layout .weather-list__aside h3::before {
  content: "\f05a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1rem;
  color: #0ea5e9;
}
.weather-list-layout .weather-list__aside .aside-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.weather-list-layout .weather-list__aside .aside-tags .meta-block__tag,
.weather-list-layout .weather-list__aside .aside-tags .meta-block__category {
  background: #e0f2fe;
  color: #0369a1;
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  border-radius: 999px;
  transition: 0.2s ease;
}
.weather-list-layout .weather-list__aside .aside-tags .meta-block__tag:hover,
.weather-list-layout .weather-list__aside .aside-tags .meta-block__category:hover {
  background: #bae6fd;
}

.weather-detail-layout {
  margin: 30px 0;
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .weather-detail-layout {
    grid-template-columns: 1fr;
  }
}
.weather-detail-layout .weather-detail__aside {
  background: var(--static-bg);
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  height: 350px;
}
.weather-detail-layout .weather-detail__aside h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--static-text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.weather-detail-layout .weather-detail__aside h3::before {
  content: "\f05a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1rem;
  color: #0ea5e9;
}
.weather-detail-layout .weather-detail__aside p {
  font-size: 0.95rem;
  color: var(--static-text);
  line-height: 1.5;
}
.weather-detail-layout .weather-detail__aside .aside-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.weather-detail {
  background: var(--color-card);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 768px) {
  .weather-detail {
    padding: 1.5rem;
  }
}
.weather-detail__header {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .weather-detail__header {
    margin-top: 30px;
  }
}
.weather-detail__header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.weather-detail__temperature-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.weather-detail__temperature-icon i {
  font-size: 4rem;
  color: #38bdf8;
}
.weather-detail__temperature strong {
  font-size: 3rem;
  font-weight: 700;
  display: block;
}
.weather-detail__temperature span {
  font-size: 1.2rem;
  color: #cbd5e1;
}
.weather-detail__datetime {
  font-size: 0.95rem;
  color: #94a3b8;
}
.weather-detail__summary {
  font-size: 1rem;
  color: #cbd5e1;
  max-width: 605px;
  margin: 0 auto;
  text-align: center;
}
.weather-detail__stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.weather-detail__stat-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.weather-detail__stat-box strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}
.weather-detail__stat-box span {
  font-size: 0.85rem;
  color: #94a3b8;
}
.weather-detail__image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 0.75rem;
}
@media (max-width: 768px) {
  .weather-detail__temperature strong {
    font-size: 2.5rem;
  }
  .weather-detail__stat-box {
    padding: 0.75rem;
  }
}

.meta-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.meta-block__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.meta-block__section strong {
  display: block;
  margin-bottom: 20px;
}

.meta-block__tag,
.meta-block__category {
  background: #e0f2fe;
  color: #0369a1;
  padding: 0.4rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.3s ease;
}
.meta-block__tag:hover,
.meta-block__category:hover {
  background: #bae6fd;
}

.forecast {
  margin: 20px 0;
  width: 100%;
  max-width: 100%;
}
.forecast__title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}
.forecast__wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f3f4f6;
  -webkit-overflow-scrolling: touch;
}
.forecast__list {
  display: flex;
  gap: 10px;
  padding: 15px;
  width: max-content;
  max-width: 802px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .forecast__list {
    max-width: 320px;
  }
}
.forecast__item {
  text-align: center;
  width: 50px;
  min-width: 50px;
  max-width: 50px;
  background-color: #ffffff;
  border-radius: 6px;
  padding: 10px 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.forecast__time {
  font-size: 10px;
  color: #666666;
  margin-bottom: 5px;
  white-space: nowrap;
}
.forecast__icon {
  margin: 5px 0;
  font-size: 20px;
}
.forecast__temp {
  font-weight: bold;
  font-size: 12px;
  color: #333333;
}

.static {
  padding: 5rem 1.5rem;
}
.static__container {
  display: flex;
  justify-content: center;
}
.static__card {
  background: var(--static-bg);
  color: var(--color-text);
  max-width: 760px;
  width: 100%;
  padding: 3rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.static__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.static__lead {
  font-size: 1.1rem;
  color: var(--color-text);
  line-height: 1.6;
}
.static__content {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.8;
}
.static__content p {
  margin-bottom: 1rem;
}

/*# sourceMappingURL=main.css.map*/