@font-face {
  font-family: "Gilroy";
  src: url("fonts/Gilroy-Light.woff2") format("woff2"),
       url("fonts/Gilroy-Light.woff") format("woff"),
       url("fonts/Gilroy-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("fonts/Gilroy-ExtraBold.woff2") format("woff2"),
       url("fonts/Gilroy-ExtraBold.woff") format("woff"),
       url("fonts/Gilroy-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55)), url("img/bg1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  font-family: "Gilroy", Arial, sans-serif;
}

.page {
  width: 100%;
  min-height: 100vh;
  padding-left: 40px;
  padding-right: 40px;
}

.top-row {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 32px;
  font-weight: 800;
  text-align: left;
}

.phone {
  font-size: 22px;
  font-weight: 800;
  text-align: right;
  margin-left: auto;
  color: inherit;
  text-decoration: none;
}

.hero {
  margin-top: 200px;
  display: grid;
  grid-template-columns: 70% 30%;
}

.hero-left {
  text-align: left;
}

.address {
  margin: 0;
  font-size: 22px;
  font-weight: 300;
}

.title {
  margin: 20px 0 0;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
}

.subtitle {
  margin: 20px 0 0;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 300;
  max-width: 860px;
}

.catalog-btn {
  margin-top: 40px;
  height: 80px;
  border: 2px solid #ffffff;
  border-radius: 100px;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 40px;
}

.btn-text {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.btn-arrow {
  width: 60px;
  text-align: center;
}

.btn-arrow-icon {
  display: block;
  width: 60px;
  height: auto;
}

@media (max-width: 1600px) {
  .title {
    font-size: 56px;
  }

  .subtitle {
    font-size: 24px;
  }
}

@media (max-width: 1024px) {
  .hero {
    margin-top: 150px;
  }

  .brand {
    font-size: 28px;
  }

  .phone {
    font-size: 20px;
  }

  .address {
    font-size: 20px;
  }

  .title {
    font-size: 40px;
  }

  .subtitle {
    font-size: 20px;
  }

  .catalog-btn {
    height: 70px;
    padding: 0 30px;
  }

  .btn-text {
    font-size: 22px;
  }

  .btn-arrow {
    width: 50px;
  }

  .btn-arrow-icon {
    width: 44px;
  }
}

@media (max-width: 900px) {
  .page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    margin-top: 110px;
    grid-template-columns: 1fr;
  }

  .brand {
    font-size: 24px;
  }

  .phone {
    font-size: 18px;
  }

  .address {
    font-size: 18px;
  }

  .title {
    font-size: 42px;
  }

  .subtitle {
    font-size: 22px;
  }

  .catalog-btn {
    height: 64px;
    padding: 0 24px;
    gap: 14px;
  }

  .btn-text {
    font-size: 20px;
  }

  .btn-arrow {
    width: 40px;
  }

  .btn-arrow-icon {
    width: 36px;
  }
}

@media (max-width: 600px) {
  .top-row {
    margin-top: 24px;
  }

  .brand {
    font-size: 22px;
  }

  .phone {
    font-size: 16px;
  }

  .hero {
    margin-top: 72px;
  }

  .address {
    margin-top: 20px;
    font-size: 16px;
  }

  .title {
    margin-top: 10px;
    font-size: 34px;
  }

  .subtitle {
    margin-top: 10px;
    font-size: 18px;
  }

  .catalog-btn {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    height: 50px;
    padding: 0 14px;
    gap: 10px;
  }

  .btn-text {
    font-size: 16px;
  }

  .btn-arrow {
    width: 22px;
  }

  .btn-arrow-icon {
    width: 20px;
  }
}

