/* HEADER */
.header {
  display: grid;
  grid-template-columns: 1fr min-content 1fr;
  align-items: center;
  padding: 92px 49px 96px 51px;
}

.header__menu {
  justify-self: start;
}

.header__links-list {
  display: flex;
  gap: 32px;
  font-size: 18px;
  line-height: 21.6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__link {
  text-transform: lowercase;
}

.header__logo {
  justify-self: center;
  width: 148px;
  height: 105px;
}

.header__address {
  justify-self: end;
  font-style: normal;
  font-size: 18px;
  line-height: 24.3px;
  max-width: 240px;
}

/* COVER */
.cover {
  position: relative;
  background-image: url("../images/cover.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 165px 50px 60px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.cover__title {
  position: relative;
  z-index: 2;
  font-family: "EB Garamond", serif;
  font-size: 100px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 80px;
}

.aligned-text {
  display: block; 
}
.aligned-text_center {
  text-align: center;
}
.aligned-text_right {
  text-align: right;
}

.cover__description {
  position: relative;
  z-index: 2;
  margin-top: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cover__description-text {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bet-button {
  font-size: 20px;
  text-transform: uppercase;
  padding: 15px 35px;
  border: 1px solid white;
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
}
.bet-button:hover {
  background: white;
  color: black;
}

/* LOTS */
.lots {
  padding: 150px 50px;
}

.lots__heading {
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.lots__card-list {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.lots__card-list-item {
  flex: 1 1 calc(33.333% - 25px);
  min-width: 430px;
}

.card {
  position: relative;
  padding: 48px 40px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  background-size: cover;
  background-position: center;
}

.card__title {
  font-size: 22px;
  text-transform: uppercase;
  text-decoration: underline;
  z-index: 2;
}

.card__text {
  font-size: 20px;
  z-index: 2;
}

.card_type_film { background-image: url("../images/card-lot-01.jpg"); }
.card_type_book { background-image: url("../images/card-lot-02.jpg"); }
.card_type_picture { background-image: url("../images/card-lot-03.jpg"); }

.lots__look-more-link {
  font-size: 20px;
  border-bottom: 1px solid black;
  text-transform: uppercase;
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 430px 1fr;
  padding: 35px 50px 160px;
  gap: 25px;
}

.about__logo {
  width: 240px;
  height: 240px;
  background: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.about__logo-image {
  width: 148px;
  height: 114px;
}

.about__title {
  font-size: 40px;
  text-transform: uppercase;
  margin-top: 80px;
  margin-bottom: 100px;
}

.about__text p:not(:last-child) {
  margin-bottom: 25px;
}

/* FOOTER */
.footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  padding: 90px 50px;
  font-size: 18px;
}

.footer__menu {
  justify-self: center;
}

.footer__menu-list {
  text-align: center;
  list-style: none;
}

.footer__social-list {
  display: flex;
  gap: 48px;
  justify-self: end;
}

.footer__social-icon {
  width: 48px;
  height: 48px;
}
