@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  font-family: "Roboto";
}

.card {
  border-radius: 6%;
  text-align: center;
}

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#preloader img {
  width: 14rem;
}

#preloader span {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  font-family: "Roboto";
}

#preloader .dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}

#preloader .dots div {
  width: 18px;
  height: 20px;
  margin: 8px;
  background-color: #060606;
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}

#preloader .dots div:nth-child(2) {
  animation-delay: 0.2s;
}

#preloader .dots div:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  to {
    opacity: 0.3;
    transform: translate3d(0, -1rem, 0);
  }
}
header {
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}

header .row {
  height: 8vh !important;
}

header .row .header-left {
  display: flex;
  align-items: center;
}

header .row .header-logo {
  height: 40px;
  margin-right: 1rem;
}

header .row .theme-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
}

header .row .theme-toggle-btn svg {
  display: block;
}

header .row body.dark-theme {
  background: #222;
  color: #f5f5f5;
}

#homeHero {
  position: relative;
  overflow: hidden;
  min-height: 93vh;
  width: 100%;
  /* Add the overlay */
}

#homeHero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

#homeHero .homehero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 1rem;
}

#homeHero .homehero-content .form-control {
  border-radius: 0;
  border-color: transparent;
}

#homeHero .homehero-content .overview h1 {
  font-size: 20px;
  text-align: justify;
  margin-top: 14px;
  font-weight: 700;
  color: #ffffff;
}

#homeHero .homehero-content .weather-detail {
  display: flex;
  align-items: center;
  justify-content: center;
}

#homeHero .homehero-content .weather-detail p {
  margin-bottom: 0;
  margin-left: 12px;
  font-weight: 500;
}

#homeHero .homehero-content .wind-details {
  margin-bottom: 0 !important;
  font-weight: 500;
}

#homeHero .homehero-content h2 {
  font-weight: 700;
}

#homeHero .homehero-content h3 {
  font-size: 20px;
  margin-top: 6px;
  margin-bottom: 0;
  font-weight: 400;
}

#homeHero .homehero-content .row.g-4 {
  height: 100%;
}

#homeHero .homehero-content .row.g-4 > [class*=col-] {
  display: flex;
  flex-direction: column;
}

#homeHero .homehero-content .row.g-4 > [class*=col-].col-12.col-md-3.col-lg-2 .card {
  flex: 1;
  margin-bottom: 1rem;
}

#homeHero .homehero-content .row.g-4 > [class*=col-].col-12.col-md-3.col-lg-2 .card:last-child {
  margin-bottom: 0;
}

#homeHero .homehero-content .row.g-4 > [class*=col-].col-12.col-md-3.col-lg-2 .card .card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

#homeHero .homehero-content .row.g-4 > [class*=col-] > .card {
  height: 100%;
}

#homeHero .homehero-content .row.g-4 > [class*=col-] > .card .card-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

#homeHero .homehero-content .row.g-4 > [class*=col-] > .card .card-body div:first-child {
  margin-bottom: 1rem;
}

#homeHero .homehero-content .row.g-4 > [class*=col-] > .card .card-body div:only-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

#homeHero .homehero-content .main-weather-card {
  background: linear-gradient(135deg, rgba(76, 99, 156, 0.6), rgba(35, 30, 58, 0.6));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

#homeHero .homehero-content .main-weather-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

#homeHero .homehero-content .main-weather-card .card-body {
  color: white;
}

#homeHero .homehero-content .main-weather-card .card-body i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

#homeHero .homehero-content .main-weather-card .card-body h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

#homeHero .homehero-content .main-weather-card .card-body h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

#homeHero .homehero-content .main-weather-card .card-body hr {
  border-color: rgb(255, 255, 255);
  margin: 1rem 0;
  opacity: 0.5;
}

#homeHero .homehero-content .main-weather-card .card-body .weather-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#homeHero .homehero-content .main-weather-card .card-body .weather-detail i {
  font-size: 1rem;
  padding: 0.5rem;
  margin-bottom: 0;
}

#homeHero .homehero-content .main-weather-card .card-body .weather-detail p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

#homeHero .homehero-content .wind-detail-card {
  background: linear-gradient(144deg, rgba(6, 60, 124, 0.7), rgba(220, 79, 141, 0.7));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

#homeHero .homehero-content .wind-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

#homeHero .homehero-content .wind-detail-card:last-child {
  margin-bottom: 0;
}

#homeHero .homehero-content .wind-detail-card .card-body {
  color: white;
  padding: 1rem;
}

#homeHero .homehero-content .wind-detail-card .card-body .wind-details {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

#homeHero .homehero-content .wind-detail-card .card-body .wind-details i {
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

#homeHero .homehero-content .wind-detail-card .card-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  padding-left: 0.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

#homeHero .homehero-content .wind-detail-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(16, 101, 97, 0.7), rgba(196, 113, 140, 0.4));
}

#homeHero .homehero-content .wind-detail-card:nth-child(3) {
  background: linear-gradient(135deg, rgba(71, 26, 191, 0.7), rgba(239, 156, 137, 0.7));
}

#homeHero .homehero-content .location-details-card {
  background: linear-gradient(135deg, rgba(49, 62, 80, 0.7), rgba(25, 29, 43, 0.7));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

#homeHero .homehero-content .location-details-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

#homeHero .homehero-content .location-details-card .card-body {
  color: white;
  padding: 1.5rem;
}

#homeHero .homehero-content .location-details-card .card-body .card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

#homeHero .homehero-content .location-details-card .card-body .card-title i {
  margin-right: 0.5rem;
}

#homeHero .homehero-content .location-details-card .card-body .location-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

#homeHero .homehero-content .location-details-card .card-body .location-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: center;
  margin-bottom: -1rem !important;
}

#homeHero .homehero-content .location-details-card .card-body .location-info .info-item i {
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

#homeHero .homehero-content .location-details-card .card-body .location-info .info-item div {
  flex: 1;
}

#homeHero .homehero-content .location-details-card .card-body .location-info .info-item div h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#homeHero .homehero-content .location-details-card .card-body .location-info .info-item div h4 i {
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

#homeHero .homehero-content .location-details-card .card-body .location-info .info-item div p {
  font-size: 1.1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  padding-left: 2.5rem;
  text-align: left;
}

#homeHero .homehero-content .weather-icon-small {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

#homeHero .homehero-content .weather-icon-large {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

#homeHero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.search-form .form-control {
  border-radius: 25px;
  padding-right: 40px !important;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  transition: all 0.3s ease;
}

.search-form .form-control:focus {
  background: white;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.search-form .btn-link {
  color: #495057;
  text-decoration: none;
  padding: 0.375rem 0.75rem;
  transition: color 0.3s ease;
}

.search-form .btn-link:hover {
  color: #0d6efd;
}

.toast-container {
  z-index: 1100;
}

.toast-container .toast {
  background: linear-gradient(135deg, #dc3545, #6c2839);
  opacity: 0.95;
}

.toast-container .toast .toast-body {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.forecast-card {
  background: linear-gradient(135deg, rgba(49, 62, 80, 0.7), rgba(25, 29, 43, 0.7));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.forecast-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.forecast-card .card-body {
  padding: 2rem;
}

.forecast-card h3 {
  color: #000000;
  text-transform: capitalize;
  font-weight: 600 !important;
}

.forecast-card h3 i {
  margin-right: 0.5rem;
}

.forecast-table {
  margin-bottom: 0;
}

.forecast-table th, .forecast-table td {
  vertical-align: middle;
  text-align: center;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.1);
}

.forecast-table th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  background-color: rgba(0, 0, 0, 0.15);
}

.forecast-table tbody tr {
  transition: all 0.3s ease;
}

.forecast-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.forecast-table .forecast-icon {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .forecast-table th, .forecast-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
  .forecast-table th {
    font-size: 0.8rem;
  }
  .forecast-table .forecast-icon {
    width: 30px;
    height: 30px;
    margin-right: 0.25rem;
  }
}
@media (min-width: 1200px) {
  #homeHero .homehero-content .overview h1 {
    font-size: 26px !important;
  }
  #homeHero .homehero-content .weather-detail p {
    font-size: 18px !important;
  }
}
@media (min-width: 1400px) {
  header .header-logo {
    height: 60px !important;
  }
  #homeHero .homehero-content .overview h1 {
    font-size: 30px !important;
    margin-top: 4%;
  }
  #homeHero .homehero-content .weather-detail p {
    font-size: 22px !important;
  }
} 

/*# sourceMappingURL=main.css.map */
