* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
}

body {
  margin: 0;
  background: #1f1f1f;
}

.page {
  max-width: 1440px;
  margin: auto;
  padding: 40px 60px;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 58px;
  font-weight: 500;
  margin: 0;
}

.logo span {
  font-size: 14px;
  opacity: 0.7;
}

.nav a {
  margin-left: 32px;
  font-size: 22px;
  opacity: 0.6;
  transition: 0.2s;
}

.nav a:hover {
  opacity: 1;
}

.nav .active {
  font-weight: 600;
  opacity: 1;
}

/* Search */
.search {
  display: flex;
  justify-content: center;
  margin: 45px 0;
}

.search input {
  width: 680px;
  padding: 18px 24px;
  background: #e0e0e0;
  border: none;
  border-radius: 25px;
  font-size: 18px;
  outline: none;
  color: #333;
}

/* Forecast grid */
.forecast {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(4, 200px);
  gap: 45px 60px;
  margin-top: 40px;
}

/* Day Card */
.day-card {
  background: linear-gradient(180deg, #00c8ff, #0091aa);
  width: 200px;
  height: 230px;
  border-radius: 25px;
  padding-top: 18px;
  text-align: center;
  box-shadow: 0 8px 20px #00000045;
  transition: transform 0.2s;
}

.day-card:hover {
  transform: scale(1.04);
}

.day-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}

.icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
}

.temp {
  font-size: 20px;
  margin-bottom: 3px;
}

.desc {
  font-size: 16px;
  opacity: 0.9;
}

/* FOOTER */
footer {
  margin-top: 160px;
  padding: 35px;
  text-align: center;
  opacity: 0.8;
}

footer a {
  margin: 0 15px;
  text-decoration: none;
}

/* иконки соцсетей */
footer img {
  width: 48px;
  height: 48px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

/* hover-эффект */
footer img:hover {
  transform: scale(1.1);
  opacity: 1;
}
