body {
    background-color: #1e202b;
    color: #f1f3fa;
    font-family: "Roboto", "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
}

.pk-4 {
    margin-top: 8px;
    color: #dbd6d6;
    font: size 10px;
    ;
}

.site-header {
   width: 100%;
  padding: 20px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1e202b;
}

.logo-container {
    display: flex;
    gap: 20px;
}

.logo-icon {
    width: 70px;
    height: 40px;
}

.logo {
    display: flex;
    flex-direction: column;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links li a {
    color: #e4d4d4;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 14px;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: border 0.3s ease;
}

.nav-links li a:hover {
    border-color: #00cfff;
}

.nav-links li a.active {
    border-color: #00cfff;
}

.nav-links li a {
    color: #e4d4d4;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 50px;

}

.hero {
  min-height: 100vh;
  width: 100%;
  overflow: visible;
  position: relative;
  padding-bottom: 250px; 
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.find-location .form-control {
    padding: 20px 50px 20px 20px;
    background: #1e202b;
    color: #fff;
    border: 2px solid #444;
    border-radius: 10px 0 0 10px;
    font-size: 16px;
}

.find-location .form-control::placeholder {
    color: #ccc;
}


.weather-wrapper {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 3;
    
}

.weather-container {
    display: flex;
    gap: 20px;
    justify-content: center;
  flex-wrap: nowrap;
    padding: 20px;
    z-index: 0;
    gap: 5px;
}

.weather-card {
  background-color: #2d303d;
  color: #fff;
  border-radius: 10px;
  padding: 20px;
   width: 380px;
  height: 400px;     
  text-align: center;
  transition: 0.3s;
}

.weather-card:hover {
    box-shadow: 0 0 10px #00cfff;
}

.card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
    color: #ccc;
}

.card-body h2 {
    font-size: 36px;
    font-weight: bold;
}


.weather-icon {
    width: 50px;
    margin: 15px 0;
}

.weather-desc {
    color: #00cfff;
    font-weight: 500;
}
.site-footer {
  background-color: #2d303d;
  padding: 40px 20px;
  color: #ccc;
  margin-top: 100px;
}

.subscribe-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.subscribe-box input[type="email"] {
  padding: 15px 20px;
  border: none;
  border-radius: 30px 0 0 30px;
  outline: none;
  width: 300px;
  background-color: #1e202b;
  color: white;
}

.subscribe-box button {
  padding: 15px 25px;
  border: none;
  border-radius: 0 30px 30px 0;
  background-color: #00baff;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-block;
  background-color: #1e202b;
  padding: 12px;
  border-radius: 50%;
  color: #00baff;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: #00baff;
  color: white;
}

.site-footer p {
  font-size: 14px;
  color: #aaa;
}
