
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: white;
  background: url("default.jpg") no-repeat center center/cover;
  min-height: 100vh;
}

.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  z-index: 1000;
}

.logo {
  font-size: 1.3rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #ff9800;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  position: relative;
}

.overlay {
  background: rgba(0,0,0,0.5);
  padding: 30px;
  border-radius: 15px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
}

.weather-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
  background: rgba(0,0,0,0.7);
}

.weather-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 15px;
  width: 350px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-align: center;
}

.weather-box h2 {
  margin-bottom: 20px;
}

input {
  padding: 12px;
  border: none;
  border-radius: 10px;
  width: 75%;
  margin-bottom: 15px;
  font-size: 1rem;
  outline: none;
}

button {
  padding: 12px 18px;
  border: none;
  border-radius: 10px;
  background: #ff9800;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #e68900;
}

.weather-info {
  margin-top: 20px;
}

.weather-info img {
  width: 90px;
}

footer {
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.8);
  font-size: 0.9rem;
  position: relative;
}
