@import "https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/scss/bootstrap";
body {
  background-color: #e9f5e9;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

h1, h2, h3, h4 {
  color: #155724;
}

p {
  color: #343a40;
}

.btn-primary {
  background-color: #28a745;
  border-color: #28a745;
}
.btn-primary:hover {
  background-color: #1e7e34;
  border-color: #1e7e34;
}

.card {
  border: 1px solid #28a745;
}
.card-header .fa-calendar-alt {
  color: #155724;
}

.fa, .fas, .far {
  margin-right: 8px;
  color: #28a745;
}

h1 .fa-cloud-sun {
  font-size: 1.2em;
  color: #28a745;
  margin-right: 15px;
}

.form-select {
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  background-color: #28a745;
  color: #343a40;
  border: 1px solid #28a745;
}
.form-select:focus {
  background-color: #28a745;
  color: white;
  border-color: #1e7e34;
}

.input-group-text {
  background-color: #28a745;
  border-color: #28a745;
  color: white;
}

.weather-icon {
  width: 60px;
  height: 60px;
}
.weather-period {
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.weather-period:last-child {
  border-bottom: none;
}
.weather-period h4 i {
  font-size: 0.9em;
}

#weather-data {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
#weather-data.show {
  opacity: 1;
  transform: translateY(0);
}

#imageCarousel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

.carousel-item img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100vh;
  opacity: 1;
}

.city-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}
.city-image-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
  overflow: hidden;
}
.city-image.fade-in {
  animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */