@import "cookie.css";

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

body {
  min-height: 100vh;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.50)), url(../img/182-1821410_film-wallpaper-square-v2-movie-collection.jpg) no-repeat fixed top;
  background-size: cover;
}

#wrapper {
  width: 100%;
  min-height: 100vh;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  backdrop-filter: blur(5px);
}

h1 {
  font-size: 24px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
}

h2 {
  font-size: 20px;
  text-transform: uppercase;
  text-align: left;
}

h3 {
  font-size: 18px;
  text-transform: uppercase;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 1.4em;
}

p {
  font-size: 1.2em;
}

.flex {
  display: flex;
}

.row {
  flex-direction: row;
}

.column {
  flex-direction: column;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.text-gray {
  color: rgb(75, 85, 99);
}

.container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.header {
  min-width: 100%;
  text-align: center;
  background: white;
  height: 70px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.header img {
  width: 200px;
}

.content {
  margin: 20px auto 20px;
  display: flex;
  flex-direction: column;
  width: 672px;
  background-color: rgb(255, 255, 255);
  color: black;
  padding: 16px;
  border-radius: 5px;
}

.first-block {
  padding: 20px;
  width: 40%;
  max-width: 600px;
}

.second-block {
  padding: 20px;
  width: 60%;
}

.second-block img {
  max-height: 500px;
  margin-top: -50px;
  max-width: 100%;
}

ul.cons {
  margin-top: 50px;
  list-style-type: none;
  padding-left: unset;
}

.cons li {
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

.cons__info {
  text-align: left;
  font-size: 1.1em;
}

.cons__info h4 {
  color: #003366;
}

.redirect-button {
  font-family: Roboto, Arial, sans-serif;
  background: #347d41;
  background: linear-gradient(180deg, #041e13, #041e13);
  color: #003366;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 700;
  border: 2px solid #003366;
  border-radius: 28px;
  padding: 15px 15px 5px 18px;
  cursor: pointer;
  height: 65px;
  max-width: 100%;
}

.flight-search-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  background: #ffb702;
  border-radius: 8px;
  padding: 4px;
  font-size: 14px;
  margin-top: 20px;
}

.flight-search-form div {
  width: 100%;
  border-radius: 4px;
  height: 50px;
  cursor: text;
  background: white;
  color: black;
  overflow: hidden;
}

.flight-input {
  padding-left: 15px;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
}

.flight-input img {
  margin-right: 5px;
}

.flight-search-btn {
  width: 15%;
  border-radius: 4px;
  background: #003366;
  color: white;
  padding: 12px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

/* TOP AIRLINES BLOCK */
.top__container {
  display: flex;
  flex-direction: column;
  justify-content: left;
  background: white;
  color: black;
}

.top__header {
  margin-top: 10px;
  text-transform: uppercase;
}

.top__item {
  padding: 10px;
  margin-top: 10px;
  text-align: left;
}

.top__item-header {
  color: #003366;
}

.top__description {
  margin-top: 10px;
  color: black;
}

.top__rating {
  margin-top: 10px;
}

.top__rating-text {
  color: rgb(137, 135, 135);
}

.top__call {
  margin-top: 10px;
  text-decoration: none;
  font-size: 18px;
}

.top__call-button {
  text-decoration: underline;
}

/* DESCRIPTION BLOCK */
.description__list {
  list-style-position: inside;
  list-style-type: disc;
  margin-top: 5px;
}

/* FOOTER SECTION */
footer {
  background: #003366;
  padding: 15px;
  position: relative;
  color: rgb(137, 135, 135);

  text-align: center;
}

footer .footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}

footer .address {
  color: rgb(255, 255, 255);
  max-width: 100%;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: center;
}

footer .address p {
  margin: 0;
}

footer .links {
  justify-content: center;
  gap: 20px;
}

footer .links a {
  text-decoration: none;
  color: white;
}

@media only screen and (max-width: 1200px) {
  .container {
    padding: 10px;
  }
  footer .footer-content {
    flex-direction: column;
    text-align: center;
  }
  footer .address {
    max-width: 100%;
    margin-bottom: 15px;
  }
}

/* SOCIAL MEDIA SECTION */
.social-media {
  text-align: center;
  margin: 20px 0;
}

.social-media h2 {
  margin-bottom: 15px;
  color: #003366;
}

.social-media a {
  display: inline-block;
  margin: 0 10px;
}

.social-media img {
  width: 40px;
  height: 40px;
  transition: transform 0.2s;
}

.social-media img:hover {
  transform: scale(1.1);
}
