/* Clean reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #89f7fe, #66a6ff);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    color: #fff;
}

h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

#cit {
    width: 300px;
    padding: 12px 15px;
    border-radius: 12px;
    border: none;
    outline: none;
    font-size: 1rem;
    margin-bottom: 8px;
}

#suggestions {
    list-style: none;
    width: 300px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    margin-top: 5px;
    overflow: hidden;
}

#suggestions li {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: 0.2s;
}

#suggestions li:hover {
    background: rgba(255,255,255,0.35);
}

#cityTitle {
    font-size: 1.9rem;
    margin-top: 25px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

#userImg {
    width: 130px;
    margin-top: 0px;   /* move image UP by creating space before input */
    margin-bottom: 25px;  /*add clean space below image */
}


.infoBox {
    margin-top: 20px;
    width: 320px;
    padding: 20px 25px;
    background: rgba(255,255,255,0.20);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    color: #fff;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 1rem;
}

#btn {
    margin-top: 25px;
    padding: 12px 30px;
    border-radius: 12px;
    background: #ffffff;
    color: #333;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

#btn:hover {
    transform: scale(1.08);
    background: #f4f4f4;
}

.tempHot { color: #ff4d4d; font-weight: bold; }
.tempCold { color: #4d9eff; font-weight: bold; }
.tempNormal { color: #fff; font-weight: bold; }

footer {
    text-align: center;
    padding: 28px;
    margin-top: 60px;
    /* opacity: 0.6; */
    font-size: 0.95rem;
}
input {
  box-sizing: border-box;
}
section {
  padding-left: 0;
  padding-right: 0;
}
body {
  overflow-x: hidden;
}
#cit {
  width: 100%;
  box-sizing: border-box;
}
#userImg {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
button {
  text-align: center;
}
#btn {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  display: block;
}
header {
  text-align: center;
}

a{
    color: #fff;
}