/* Option 2: Import via CSS */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  text-decoration: none;
}
body {
  font-family: "Space Grotesk", Arial, sans-serif;
}
/*  HEADER START */

.nav {
  background-color: #48484a;
  color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  text-decoration: none;
  position: fixed;
  z-index: 99;
  height: 48pt;
  padding: 8pt;
  top: 0px;
  width: 100%;
  list-style: none;
  font-family: "Space Grotesk", Arial, sans-serif;
}

.nav-menu-items {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-menu {
  gap: 140px;
  margin-right: 25px;
}

.nav li.logo img {
  height: 30pt;
  width: 70pt;
  margin-left: 80px;
}

.nav-menu-items li a {
  color: #f2f2f2;
  height: 51pt;
  width: 18pt;
}

.nav-menu-items .background {
  border-radius: 16pt;
  padding: 6pt 8pt;
  background-color: rgba(242, 242, 242, 0.4);
}
/* HEADER END */

/*WEATHER SECTİON START*/
.wrapper {
  padding-top: 0px;
  margin-top: 64px;
  display: block;
}
.orange-text {
  color: #eb6e4b;
}
.white-text {
  color: #fff;
}
.first-section {
  width: 100%;
  height: 300px;
  display: grid;
  align-items: center;
  font-family: "Space Grotesk", Arial, sans-serif;
  background: url(https://openweathermap.org/themes/openweathermap/assets/img/spring1.jpg);
  background-size: cover;
  background-position: center;
}

.first-section h1 {
  font-size: 45px;
  margin-bottom: 30px;
}

.first-section h2 {
  font-size: 25px;
}

.section-content-container {
  width: 396px;
  margin-left: 270px;
}

.grey-container {
  background-color: #f2f2f2;
  width: 100%;
}
.weather-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  gap: 10px;
}

.weather-menu input {
  width: 300px;
  height: 40px;
  border: none;
  border-radius: 20px;
  padding: 0 20px;
  font-size: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.weather-menu input:focus {
  outline: none;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.weather-menu button {
  height: 40px;
  width: 100px;
  background-color: #556270;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.weather-menu button:hover {
  background-color: #33435c;
}

/* Grid düzeni */
.forecast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

/* Tek tek gün kutuları */
.forecast-day {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #fff;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.forecast-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;

}

.forecast-day {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 10px;
    width: 120px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
}

.forecast-day img {
    width: 50px;
    height: 50px;
    margin-top: 5px;
}

.forecast-day strong {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 13px;
}

.weather-content {
  max-width: 600px;
  margin: 20px auto;
  background-color: #ffffffdd;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.weather-content .weather-info .city {
  font-size: 28px;
  color: #2c3e50;
  font-weight: 600;
}

.weather-content .weather-info .temp {
  font-size: 48px;
  color: #e74c3c;
  font-weight: bold;
  margin-top: 10px;
}


.recent-btn {
    margin: 5px;
    padding: 6px 12px;
    background-color: #e0e0e0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.recent-btn:hover {
    background-color: #ccc;
}

.weather-content .weather-info .temp-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.weather-content .weather-info .temp-container .temp {
  font-size: 24px;
  color: #444;
}

.weather-content .weather-info .about-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 16px;
  color: #333;
}

.weather-content .weather-info .wind-info {
  margin-top: 15px;
  font-size: 15px;
  color: #666;
}


.weather-content .weather-info .temp-container .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #e67e22;
}

/*WEATHER SECTİON END*/

/*COLLECTİONS SECTİON START*/

.collections-wrapper {
  background-color: #eb6e4b;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
}

.collections-wrapper .start-section {
  display: flex;
  flex-direction: column;
  width: 900px;
  padding: 24pt;
  height: auto;
}

.collections-wrapper .start-section p {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.collections-wrapper .grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 10px;
}

.collections-wrapper .grid-container .stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 13px;
  width: 100px;
}

.collections-wrapper .grid-container .stats img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}

.collections-wrapper .grid-container div {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
}
/*              COLLECTİONS END                          */

/*              INITIATIVES START                       */

.initiatives-wrapper {
  margin-top: 64px;
  background-color: #f2f2f2;
}

.initiatives-first-section {
  background: url(https://openweathermap.org/themes/openweathermap/assets/img/initiatives_main_banner.jpg);
  background-size: cover;
  background-position: center;
  min-height: 590px;
  display: flex;
  padding-left: 300px;
  align-items: center;
}

.initiative-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 10px;
  align-items: center;
}
.initiative-features div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.initiatives-first-section h1 {
  color: #fff;
  font-size: 70px;
}

.student-initiatives h1 {
  font-size: 45px;
  margin-bottom: 25px;
  margin-top: 45px;
  color: #eb6e4b;
}
.student-initiatives-content {
  padding: 0px 250px;
}

.student-initiatives {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.indicator-numbers {
  width: auto;
  font-size: 45px;
  font-weight: bold;
}

.medium-text {
  font-weight: bold;
  font-size: 28px;
}

.student-initiatives-content {
  font-size: 24px;
  margin: 30px 0px 10px;
  margin-left: 20px;
}

.other-initiatives-wrapper {
  width: 100%;
  display: grid;
  justify-items: center;
  align-items: center;
  min-height: 250px;
}

.other-initiatives-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 32px;
  justify-content: center;
  align-items: start;
  padding: 0px 250px;
}
.other-initiatives-content div {
  background-color: #f2f2f2;
  width: 100%;
}
.other-initiatives-content div img {
  height: 95px;
  width: 95px;
  top: -45px;
}

.other-initiatives-content p {
  font-size: 15px;
  font-weight: 200;
  line-height: 1.4;
  margin: revert;
}

.other-initiatives-title h1 {
  color: #eb6e4b;
  font-size: 45px;
  margin-bottom: 25px;
  margin-top: 45px;
}

.other-initiatives-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.orange-background-end-wrapper {
  background-color: #eb6e4b;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orange-background-content {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  font-weight: bold;
}

.orange-background-content .first-content {
  margin-right: 40px;
}

.orange-background-content span {
  color: #48484a;
}

@media (max-width: 1024px) {
  .nav li.logo img {
    margin-left: 20px;
    width: 60pt;
    height: auto;
  }

  .nav-menu {
    gap: 60px;
  }

  .section-content-container {
    margin-left: 40px;
    width: auto;
  }

  .student-initiatives-content,
  .other-initiatives-content {
    padding: 0px 50px;
  }

  .initiatives-first-section {
    padding-left: 50px;
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 10px;
  }

  .nav-menu-items {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .nav li.logo img {
    margin-left: 0;
    width: 55pt;
  }

  .section-content-container {
    margin: 0 auto;
    width: 90%;
    text-align: center;
  }

  .first-section {
    height: auto;
    padding: 20px;
  }

  .first-section h1 {
    font-size: 28px;
  }

  .first-section h2 {
    font-size: 18px;
  }

  .weather-menu {
    flex-direction: column;
    gap: 15px;
  }

  .weather-menu input {
    width: 100%;
  }

  .weather-menu button {
    width: 100%;
  }

  .collections-wrapper .start-section {
    width: 100%;
    padding: 20px;
  }

  .collections-wrapper .grid-container {
    gap: 20px;
  }

  .initiatives-first-section {
    padding-left: 20px;
    text-align: center;
    justify-content: center;
  }

  .initiatives-first-section h1 {
    font-size: 40px;
  }

  .student-initiatives h1 {
    font-size: 28px;
    text-align: center;
  }

  .student-initiatives-content {
    padding: 0 20px;
    margin-left: 0;
    font-size: 18px;
    text-align: center;
  }

  .other-initiatives-content {
    padding: 0 20px;
    grid-template-columns: 1fr;
  }

  .orange-background-content {
    flex-direction: column;
    font-size: 24px;
    text-align: center;
  }

  .orange-background-content .first-content {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 350px) {
  .first-section h1 {
    font-size: 22px;
  }

  .first-section h2 {
    font-size: 16px;
  }

  .weather-content {
    padding: 20px;
  }

  .student-initiatives-content {
    font-size: 16px;
  }
}




