@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
body {
  margin: 0;
  font-family: "Lobster", cursive;
  background-color: #0a0819;
  color: #fff;
  overflow-x: hidden;
}

a {
  color: #ffffff4d;
  text-decoration: none;
}

header {
  height: 100vh;
  background-image: url(./img/bg-f.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}
header::before {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: -1px;
  content: "";
  background-image: linear-gradient(to top, #0a0819, transparent);
}
header h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Lobster", cursive;
  font-size: clamp(2.5rem, 1.956rem + 2.42vw, 4.375rem);
  color: wheat;
  background-color: #2c1e2ea6;
  padding: 15px;
  border-radius: 5px;
}
.menuTop .logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  /* align-content: center; */
  font-size: clamp(1.25rem, 0.887rem + 1.61vw, 2.5rem);
  color: wheat;
  text-decoration: none;
  margin-left: 50px;
}

.menuTop {
  /* background-color: red; */
  width: 1200px;
  padding: 20px;
  max-width: calc(100vw - 40px);
  margin: auto;
  padding-top: 10px;
  display: grid;
  grid-template-columns: 10% auto;
}
.menuTop .menu {
  list-style: none;
  padding: 0;
  text-align: right;
}
.menuTop .menu li {
  display: inline-block;
  padding: 5px 30px;
  text-shadow: 0 0 20px #000;
  background-color: #2c1e2ea6;
  border-radius: 5px;
  color: wheat;
  cursor: pointer;
  transition: all 0.5s;
}

.menuTop .menu li:hover {
  background-color: rgb(10, 8, 25);
  transition: all 0.5s;
}

.container {
  width: 1200px;
  padding: 20px;
  max-width: calc(100vw - 40px);
  margin: auto;
}
.bigTitle {
  font-family: "Lobster", cursive;
  font-size: xx-large;
  text-align: center;
  margin: 130px 0;
}
.bigTitle .des {
  font-size: large;
  max-width: 500px;
  margin: 10px auto;
  color: #ffffff4d;
}
.transport ul {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: auto auto auto auto auto auto;
  column-gap: 20px;
}
.transport li {
  text-align: center;
  color: #ffffff4d;
}
.transport li i {
  display: block;
  margin-bottom: 20px;
  font-size: xxx-large;
  color: #fff;
}
.zoom {
  transform: scale(1);
  transition: 0.5s;
}
.zoom:hover {
  transform: scale(1.2);
}
.checkin {
  display: grid;
  grid-template-columns: 24.25% 24.25% 24.25% 24.25%;
  column-gap: 1%;
  grid-template-rows: 300px 300px;
  row-gap: 10px;
}
.checkin .item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.checkin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkin .item .content {
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.checkin .item .content .des {
  opacity: 0.7;
}
.checkin .item:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 3;
}
.checkin .item:nth-child(2) {
  grid-column-start: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}
.fare {
  display: grid;
  grid-template-columns: auto auto auto;
  column-gap: 30px;
}
.fare .item {
  background-color: #030d1f;
  border-radius: 20px;
  text-align: center;
  padding: 50px;
  box-shadow: 0 0 10px #000;
  cursor: pointer;
}
.fare .item i {
  font-size: xx-large;
  margin-bottom: 20px;
}
.fare .item .price {
  font-family: "Lobster", cursive;
  color: yellow;
  font-size: xx-large;
}
.fare .item ul {
  padding: 0;
  list-style: none;
}
.fare .item ul li {
  padding: 10px;
}
footer {
  background-color: #000;
  margin-top: 50px;
  padding: 30px 0;
}
footer .content {
  max-width: 1200px;
  padding: 20px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
}
footer ul {
  padding: 0;
}
footer .content .item li {
  padding: 10px;
  list-style: none;
  color: #ffffff4d;
  transition: color 0.7s;
  cursor: pointer;
  font-family: "Lobster", cursive;
}

footer .content .item li:hover {
  color: wheat;
  transition: color 0.7s;
  font-weight: bold;
}

footer .content .item li:nth-child(1) {
  font-family: "Lobster", cursive;
  color: #fff;
  font-weight: bold;
}
footer h3 {
  font-family: "Lobster", cursive;
}

footer button:hover {
  background-color: green;
  transition: background-color 0.7s;
  font-weight: bold;
}
.toggleMenu {
  display: none;
}

.privacy__banner {
  position: fixed;
  bottom: 2%;
  left: 0;
  right: 0;
  background: #1b1b1c;
  padding: 10px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 8px;
  flex-direction: column;
  text-align: center;
  color: white;
  font-size: 17px;
}

.privacy__button {
  background-color: white;
  padding: 3px 8%;
  border-radius: 5px;
  color: black;
  font-size: 15px;
  cursor: pointer;
}

.privacy__link {
  color: bisque;
}

@media (max-width: 1280px) {
  header h1 {
    text-align: center;
  }
  footer textarea,
  input {
    width: 96%;
  }
  footer .item:nth-child(4) {
    padding-right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-right: 10px;
  }
}

@media (max-width: 930px) {
  header h1 {
    text-align: center;
  }
}

@media (max-width: 820px) {
  header {
    height: 50vh;
  }
  .checkin {
    grid-template-columns: auto auto;
    grid-template-rows: 300px 300px 300px 300px;
  }
  .checkin .item:nth-child(2) {
    grid-column-start: unset;
    grid-column-end: unset;
    grid-row-start: unset;
    grid-row-end: unset;
  }
  .checkin .item:nth-child(1) {
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .checkin .item:nth-child(5) {
    grid-column-start: 2;
    grid-row-start: 3;
    grid-row-end: 5;
  }

  .fare {
    column-gap: 5px;
  }
  .fare .item {
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .transport {
    width: 100%;
    overflow: auto;
  }
  .transport ul {
    grid-template-columns: 80px 80px 80px 80px 80px 80px;
  }
  .checkin {
    grid-template-columns: 100%;
    grid-template-rows: 300px 300px 300px 300px 300px 300px;
  }
  .checkin .item:nth-child(1),
  .checkin .item:nth-child(5) {
    grid-column-start: unset;
    grid-column-end: unset;
    grid-row-start: unset;
    grid-row-end: unset;
  }
  .fare {
    grid-template-columns: 100%;
  }
  footer {
    padding: 10px;
  }
  footer .content {
    padding: 0;
    grid-template-columns: 33.33% 33.33% 33.33%;
  }
  footer .item:nth-child(4) {
    grid-column-start: 1;
    grid-column-end: 4;
  }
  .menuTop {
    position: fixed;
    padding: 20px;
    z-index: 5;
    background-color: #ffffff4d;
  }
  .menuTop .logo img {
    width: 30px;
  }
  .menuTop .menu {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #ffffff4d;
    backdrop-filter: blur(10px);
    z-index: 6;
    text-align: left;
    width: 80%;
    margin: 0;
    transition: 0.5s;
    transform: translate(-100%);
  }
  .menuTop .menu li {
    display: block;
    padding: 20px;
  }
  .menuTop .menu.active {
    transform: translate(0);
  }
  .toggleMenu {
    display: block;
    text-align: right;
    text-shadow: 0 0 10px #000;
  }
  footer textarea,
  input {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  footer button {
    width: 100%;
  }
  footer .item:nth-child(4) {
    margin-right: 0px;
  }
}

@media (max-width: 650px) {
  .privacy__banner {
    margin: 0 5%;
  }
}

@media (max-width: 460px) {
  footer .content {
    flex-direction: column;
  }
}
