/* ***********
GLOBAL RESET
*********** */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html {
  background-color: black;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  font-weight: 400;
  color: white;
}

html {
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 14, 0.75)),
    url("../img/main-background\ \(2\).jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100vw;
}

/* header {
  background-image: url("../img/main-background.jpg");
  background-color: #00000e;
  background-position: center 75%;
  background-repeat: no-repeat;
  background-size: cover;
} */

header {
  display: grid;
  grid-template-rows: auto;
}

/* ************
REUSABLE ITEMS
************ */

.line-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: white;

  padding-top: 9.6rem;
}

.line-header p {
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  font-weight: 500;
}

.line {
  width: 6.4rem;
  border-top: 0.3rem solid white;
}

/* *******
GALLERY
******* */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

.img-1 {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.img-2 {
  grid-column: 3 / 4;
  /* grid-row: 1 / 3; */
}
.img-3 {
  grid-column: 4 / 5;
  /* grid-row: 1 / 3; */
}
.img-4 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}
.img-5 {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
}
.img-6 {
  grid-column: 1 / 2;
  grid-row: 3 / 5;
}
/* .img-7 {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
} */
/* .img-10 {
  grid-column: 2 / 3;
  grid-row: 4 / 5;
} */

.img-13 {
  grid-column: 1 / 4;
}
.img-14 {
  grid-column: 4 / 5;
}
/* .img-6 {
  grid-column: 2 / 3;
  grid-row: 4 / 5;
}
.img-7 {
  grid-column: 3 / 5;
  grid-row: 2 / 3;
}
.img-8 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}
.img-9 {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
}
.img-11 {
  grid-column: 4 / 5;
  grid-row: 6 / 7;
}
.img-13 {
  grid-column: 1 / 4;
  grid-row: 6 / 7;
} */

.gallery-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-text {
  font-size: 3.2rem;
  font-weight: 300;
  text-align: center;
}

.sub-heading-type-4 {
  font-size: 5.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2.4rem;
}

.sub-heading-type-4 span {
  color: #be2b30;
}

.section {
  padding-top: 9.6rem;
}

.last-section {
  padding-bottom: 9.6rem;
}

.bg-1 {
  background-image: url(../img/background-1.png);
  background-repeat: no-repeat;
  background-position: right;
}

.bg-2 {
  background-image: url(../img/background-2.png);
  background-repeat: no-repeat;
  background-position: left;
}

.bg-3 {
  background-image: url(../img/background-3.png);
  background-repeat: no-repeat;
  background-position: left;
}

.bg-4 {
  background-image: url(../img/background-4.png);
  background-repeat: no-repeat;
  background-position: right;
}

.container {
  max-width: 120rem;
  margin: 0 auto;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  padding: 1rem 2rem;
  width: 18rem;
  background: #b71319;
  border: 2px solid #b71319;
  color: white;
  border-radius: 4.8rem;
  cursor: pointer;
  text-align: center;

  position: relative;
  overflow: hidden;

  font-family: inherit;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 400;

  transition: all 0.3s;
}

.btn::before {
  content: "";
  position: absolute;
  width: 10rem;
  height: 120%;
  background-color: rgba(255, 255, 255, 0.4);
  top: 50%;
  transform: skewX(30deg) translate(-200%, -50%);
  transition: all 0.5s;
}

.btn:hover {
  background-color: #920f14;
  border-color: #920f14;
}

.btn:hover::before {
  transform: skewX(30deg) translate(200%, -50%);
  transition-delay: 0.15s;
}

.btn--right {
  justify-self: end;
  align-self: center;
}

.btn--bigger {
  width: 20rem !important;
}

.icon {
  font-size: 2.4rem;
  color: #b71319;
  padding-top: 0.35rem;
}

.cta-icon {
  font-size: 2.4rem;
  color: #b71319;
  padding-right: 1.2rem;
}

/* *********
NAVIGATION
********* */

.header-sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 120rem;
  margin: 0 auto;
  padding: 2.4rem 0;
  /* max-height: 10vh; */
}

.logo {
  height: 6.4rem;
}

.main-nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4.8rem;

  color: white;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  color: inherit;
  text-decoration: none;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #b71319;
}

/* *********
FOOTER
********* */

.footer {
  border-top: whitesmoke solid 0.5px;
  padding-top: 2.4rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.2rem;
}

.footer-nav-list {
  list-style: none;
}

.footer-heading {
  font-size: 1.6rem;
  font-weight: 500;
  color: whitesmoke;
}

.footer-text {
  text-decoration: none;
  color: whitesmoke;
  font-size: 1.4rem;
}

.social-links {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 0.4rem;
}

.social {
  display: flex;
  text-decoration: none;
}

.social-icon {
  font-size: 2.4rem;
  color: whitesmoke;
  padding-right: 1.2rem;
}

.copyright-text {
  padding-top: 1.2rem;
  display: flex;
  justify-content: center;
  color: whitesmoke;
  font-size: 1.4rem;
}

/* ********
ASIDE
******** */

/* .fixed-nav-right-btn:link,
.fixed-nav-right-btn:visited {
  display: flex;
  flex-direction: column;

  font-size: 1.4rem;
  color: white;
  margin: 0 1.6rem 1.6rem 1.6rem;
}

.fixed-nav-right-btn:hover,
.fixed-nav-right-btn:active {
  fill: green;
} */

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #920f14;
  font: inherit;
  color: white;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 4rem;
  border: 1px solid white;
  width: 50%; /* Could be more or less, depending on screen size */
}

.modal-content-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: center;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 2.8rem;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.modal-text {
  text-transform: uppercase;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
}

.modal-promo {
  border: none;
  justify-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 1rem 4rem;
  background-color: white;
  color: black;
  border-radius: 1rem;
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 2.4rem;
}

.modal-primary-heading {
  font-size: 4.4rem;
  font-weight: 900;
  margin-bottom: 2rem;
}

.modal-sub-heading {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
}

.modal-text-2 {
  display: flex;
  justify-content: center;
}
