/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 18px;
}
body {
  font-family: Arial, sans-serif;
  color: #fff;
  background: #000;
  background: linear-gradient(
    253deg,
    rgba(38, 11, 11, 0.1) 15.06%,
    rgba(38, 11, 11, 0.8) 59.85%
  );
  margin: 0;
  font-family: "Gotham", Arial, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
}
h1 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.1;
  font-family: "Chronicle Display", serif;
}
@media (max-width: 1440px) {
  h1 {
    font-size: clamp(2rem, 1.5rem + 2.2vw, 52px);
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}
/* Layout */

.wrapper {
  max-width: 1550px;
  width: 100%;
  margin: 0 auto;
}
.inner_wrap {
  padding: 0 40px;
}

/* HEADER */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  padding-top: 50px;
  z-index: 10;
}

header .logo img {
  height: auto;
  max-width: 250px;
  width: calc(10vw + 5rem);
  display: block;
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh; /* full height */
  display: flex;
  align-items: center;
  padding: 220px 0 100px 0;
}

.hero {
  background-image: image-set(
      url("../img/bg_hero-768.webp") type("image/webp") 1x,
      url("../img/bg_hero-1280.webp") type("image/webp") 2x,
      url("../img/bg_hero-1920.webp") type("image/webp") 3x,
      url("../img/bg_hero-2560.webp") type("image/webp") 4x,

      url("../img/bg_hero-768.jpg") type("image/jpeg") 1x,
      url("../img/bg_hero-1280.jpg") type("image/jpeg") 2x,
      url("../img/bg_hero-1920.jpg") type("image/jpeg") 3x
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero.is-loaded {
    opacity: 1;
}

/* overlay */
/* .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    253deg,
    rgba(38, 11, 11, 0.1) 15.06%,
    rgba(38, 11, 11, 0.8) 59.85%
  );
} */

/* content */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 90%;
}

.hero-title {
  margin-bottom: 0.5em;
}

.hero-text {
  margin-bottom: 1rem;
}
.hero-text p {
  margin-bottom: 1rem;
}
.hero-btn {
  display: inline-block;
  background: #90181c;
  color: #fff;
  padding: 16px 70px 16px 35px;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 400;
  margin-top: 20px;
  transition: 0.3s;
  font-size: 1.1rem;
  font-family: "Chronicle Display", serif;
  position: relative;
  line-height: 1;
}
.hero-btn::after {
  content: url(../img/arrow_btn.svg);
  position: absolute;
  top: calc(50% - 12px);
  width: auto;
  height: 1.1rem;
  right: 35px;
}

.hero-btn:hover {
  background: #c01c39;
}

footer {
  position: absolute;
  bottom: 20px;
  left: 0;
  text-align: center;
  font-size: 0.8rem;
  width: 100%;
}

/* social icons right side */
.hero-social {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: center;
}

.social-label {
  writing-mode: vertical-rl;
  transform: none;
  font-size: 18px;
  margin-bottom: 20px;
  font-family: "Gilroy", serif;
  font-weight: 700;
  line-height: 1;
}

.social-icon {
  display: block;
  width: 18px;
  height: 18px;
  margin: 12px 0;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.social-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.social-icon:hover {
  opacity: 1;
}
.fweight500 {
  font-weight: 500;
}
/* Responsive */
@media (max-width: 1440px) {
  header {
    padding-top: 30px;
  }
  .hero {
    padding: 180px 0 80px 0;
  }

}
@media (max-width: 1024px) {
  .inner_wrap {
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  header {
    padding: 1rem 10px;
  }
  .hero {
    padding-top: 150px;
  }
  .hero-inner {
    width: 100%;
  }

  .hero-title {
    font-size: 40px;
  }

  .inner_wrap {
    padding: 0 20px;
  }
  .hero-social {
    right: 10px;
    top: 1rem;
    transform: translateY(0);
  }

  .social-label {
    display: none;
  }
  .social-icon {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
  }
}
