/**
 * 
 * This CSS file contains styles for the home component.
 *
 * Styles include:
 * - Body styles for the home component
 * - Styles for the header container
 * - Styles for the brand box
 * - Styles for the text box
 * - Styles for the primary heading
 * - Styles for the button
 * - Styles for the footer
 *
 */

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #eee;
}

.paragraf {
  color: rgb(0, 0, 0);
}

.header {
  height: 100vh;
  background-image: linear-gradient(
      to right bottom,
      rgba(23, 51, 59, 0.8),
      rgba(30, 108, 217, 0.8)
    ),
    url("./abstract-dark-blue-polygonal-background-abstraktsiia-geometr.jpg");

  background-size: cover;
  background-position: top;
  position: relative;

  clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
}

.header-about {
  height: 100vh;
  background-image: linear-gradient(
      to right bottom,
      rgba(23, 51, 59, 0.8),
      rgba(30, 108, 217, 0.8)
    ),
    url("./abstract-dark-blue-polygonal-background-abstraktsiia-geometr.jpg");

  background-size: cover;
  height: 130px;
  background-position: top;
  position: relative;

  clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
}

.brand-box {
  position: absolute;
}

.brand {
  font-size: 20px;
}

.text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.text-box-header {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-10%, -50%);
  text-align: center;
}

.text-box-p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.heading-primary {
  color: #fff;
  text-transform: uppercase;

  backface-visibility: hidden;
  margin-bottom: 30px;
}

.heading-primary-main {
  display: block;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 5px;
}

.heading-primary-sub {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 7.4px;
}

.btn:link,
.btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 100px;
  transition: all 0.2s;
  position: relative;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-white {
  background-color: #fff;
  color: #777;
  font-size: 14px;
  width: 150px;
  margin-right: 20px;
}

.btn-header {
  color: rgb(253, 252, 252);
  font-size: 14px;
  width: 150px;
}

#footer {
  position: fixed;
  bottom: 0;
  left: 0;
}
