/* Base Styles */
body {
  margin: 0;
  padding: 20px 15px;
  background-color: #000;
  font-family: 'Orbitron', sans-serif;
  color: #00f0ff;
  overflow-x: hidden;
  overflow-y: auto;
}

header {
  text-align: center;
  color: #00f0ff;
  text-shadow: 0 0 10px #00f0ff;
  margin-bottom: 25px;
}

header .logo {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

header h1 {
  font-size: clamp(2em, 5vw, 2.5em);
  margin: 0;
}

/* Search Box */
.search-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}

input {
  width: 90%;
  max-width: 350px;
  padding: 10px;
  font-size: 1.2em;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 10px #00f0ff;
  color: #00f0ff;
  background-color: #111;
  text-align: center;
  margin-bottom: 15px;
}

input::placeholder {
  color: #00f0ff;
}

/* Buttons */
.btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

button {
  padding: 10px 25px;
  font-size: 1.1em;
  border-radius: 5px;
  border: none;
  background-color: #00f0ff;
  color: #000;
  cursor: pointer;
  width: 150px;
  text-align: center;
}

button:hover {
  background-color: #00e6ff;
}

/* Weather Content */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-bottom: 20px;
}

.content h3 {
  margin: 5px 0;
  font-size: clamp(1em, 2.5vw, 1.3em);
  text-shadow: 0 0 5px #00f0ff;
  word-break: break-word;
}

#icon {
  width: 20vw;
  max-width: 100px;
  height: auto;
  display: block;
  margin: 15px auto;
}

/* Footer */
footer {
  text-align: center;
  font-size: clamp(0.8em, 2vw, 0.9em);
  color: #aafaff;
  margin-top: 30px;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  input, button {
    width: 95%;
    font-size: 1em;
  }

  .btns {
    flex-direction: column;
    gap: 10px;
  }

  .content h3 {
    font-size: 0.95em;
  }

  #icon {
    width: 25vw;
    max-width: 80px;
  }

  header h1 {
    font-size: 2em;
  }

  header .logo {
    width: 80px;
    margin-bottom: 8px;
  }
}
