* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #000;
}

#header {
    height:90px;
    width: 100%;
    /* background-color: #4d4d4d; */
    /* background-color: rgb(74, 74, 74); */
    background-color: #000;
    padding:0 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    position: fixed;
    z-index: 1000;

}


#logo {
    color: rgb(255, 255, 255);
    font-size: 34px;
    font-weight: 700;
}

#menu a{
    color: white;
    text-decoration: none;
    padding: 0 10px;
    margin-left: 25px;
    font-size: 17px;
    cursor: pointer;
}

#page {
  padding: 110px 100px 5px;
  background-color: #000;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

#page2 {
  background: #000;
  padding: 60px 100px 80px;
}

.cities {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.city {
  width: 300px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.city:hover {
  transform: translateY(-8px);
}

.city img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* filter: grayscale(100%); */
  transition: filter 0.4s ease;
}

.city:hover img {
  filter: grayscale(0%); 
}

.city span {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 35px;
  font-weight: 900;
  color: #fff;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
/* ===== TABLET (1024px and below) ===== */
@media (max-width: 1024px) {
  #header {
    padding: 0 60px;
  }

  #page {
    padding: 100px 60px 5px;
  }

  #page2 {
    padding: 60px 60px 80px;
  }

  .cities {
    gap: 20px;
  }

  .city {
    width: calc(50% - 10px);
    height: 250px;
  }
}

/* ===== TABLET (768px and below) ===== */
@media (max-width: 768px) {
  #header {
    height: 70px;
    padding: 0 20px;
  }

  #logo {
    font-size: 26px;
  }

  #menu a {
    margin-left: 15px;
    font-size: 13px;
  }

  #page {
    padding: 80px 20px 5px;
  }

  h1 {
    font-size: 36px;
  }

  #page2 {
    padding: 40px 20px 60px;
  }

  .cities {
    flex-wrap: wrap;
    gap: 15px;
  }

  .city {
    width: calc(50% - 7.5px);
    height: 200px;
  }

  .city span {
    font-size: 24px;
  }
}

/* ===== MOBILE (480px and below) ===== */
@media (max-width: 480px) {
  #header {
    height: 60px;
    padding: 0 20px;
  }

  #logo {
    font-size: 20px;
  }

  #menu a {
    margin-left: 2px;
    font-size: 12px;
  }

  #page {
    padding: 70px 15px 5px;
  }

  h1 {
    font-size: 32px;
  }

  #page2 {
    padding: 30px 15px 20px;
  }

  .cities {
    flex-direction: column;
    gap: 15px;
  }

  .city {
    width: 100%;
    height: 180px;
  }

  .city:hover {
    transform: none;
  }

  .city span {
    font-size: 20px;
    bottom: 10px;
    left: 10px;
  }
}