@font-face {
  font-family: "Golos";
  src: url('fonts/GolosText-Regular.woff2') format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Golos";
  src: url('fonts/GolosText-Medium.woff2') format("woff2");
  font-weight: 500;
}

@font-face {
  font-family: "Golos";
  src: url('fonts/GolosText-SemiBold.woff2') format("woff2");
  font-weight: 600;
}

* {
  font-family: 'Golos';
  font-weight: 400;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

.container {
  position: relative;
  width: calc(100vw - 120px);
  height: 100vh;
  margin: 0 auto;
  display: block;
  background-color:black ;
  border-left: 1px solid rgb(48, 48, 48);
  border-right: 1px solid rgb(48, 48, 48);
}

.header {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  padding: 30px 30px;
  border-bottom: 1px solid rgb(48, 48, 48);
  background-color: black;
}

.header__nav-logo {
  display: block;
  margin: 0;
  padding: 0;
  height: 30px;
}

.header__nav-link {
  color: white;
  text-decoration: none;
}

.header__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.header__nav-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  -webkit-gap: 20px;
}

.main {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.main__column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  height: 100%;
  padding: 120px 30px 150px 30px;
  border-right: 1px solid rgb(48, 48, 48);
}

.main__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heading {
  display: block;
  color: white;
  font-size: 36px;
}

.no-break {
    white-space: nowrap;
}

.date {
  display: block;
  width: fit-content;
  padding-bottom: 5px;
  font-size: 21px;
  color: rgb(107, 107, 107);
  border-bottom: 1px solid rgb(48, 48, 48);
}

.flex-row-20 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  -webkit-gap: 20px;
}

.flex-column-20 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  -webkit-gap: 20px;
}

.text {
  display: block;
  max-width: 600px;
  padding: 20px;
  background-color: rgb(31, 31, 31);
  font-size: 16px;
  line-height: 24px;
  color: white;
}

.cursor {
  color: white;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* Кастомный курсор */
body {
  cursor: none;
}

a, button, .btn, .date, .header__nav-link, .footer__nav-item {
  cursor: none;
}

#custom-cursor {
  position: fixed;
  z-index: 9999;
  width: 40px;
  height: 40px;
  background: white;
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-radius 0.2s, background 0.2s, border 0.2s;
}

body:has(a:hover) #custom-cursor,
body:has(button:hover) #custom-cursor,
body:has(.btn:hover) #custom-cursor,
body:has(.date:hover) #custom-cursor,
body:has(.header__nav-link:hover) #custom-cursor {
  width: 60px;
  height: 60px;
}

.main__img {
  filter: grayscale(1);
}

.main__img-wrap {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.main__img-lens {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/img/cover1.jpg') center / cover no-repeat;
  clip-path: circle(0);
  pointer-events: none;
}

body:has(.main__img-wrap:hover) #custom-cursor {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: none;
  mix-blend-mode: normal;
}

.footer{
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 30px;
  border-top: 1px solid rgb(48, 48, 48);
  background-color: black;
}

.footer__nav-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  -webkit-gap: 20px;
}

.btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: fit-content;
  height: 60px;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgb(48, 48, 48);
  background-color: black;
  
}

@media (max-width: 899px) {
  .main__img {
    filter: none;
  }
  .main__img-lens {
    display: none;
  }
  body:has(.main__img-wrap:hover) #custom-cursor {
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: white;
    border: none;
    box-shadow: none;
    mix-blend-mode: difference;
  }
}

@media (max-width: 900px) {
  .container {
  position: relative;
  height: fit-content;
  margin: 0 auto;
  display: block;
  background-color:black ;
  border-left: 1px solid rgb(48, 48, 48);
  border-right: 1px solid rgb(48, 48, 48);
}

  .main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.main__column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 70vh;
  padding: 80px 10px 30px 10px;
  border-right: 1px solid rgb(48, 48, 48);
}

.main__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main__img-wrap {
  width: 100%;
  height: 50%;
}

.heading {
  display: block;
  color: white;
  font-size: 24px;
}

.no-break {
    white-space: nowrap;
}

.date {
  display: block;
  width: fit-content;
  padding-bottom: 5px;
  font-size: 18px;
  line-height: 18px;
  color: rgb(107, 107, 107);
  border-bottom: 1px solid rgb(48, 48, 48);
}

.footer{
  display: none;
}

.container {
  position: relative;
  width: calc(100vw - 40px);
  height: 100vh;
  margin: 0 auto;
  display: block;
  background-color:black ;
  border-left: 1px solid rgb(48, 48, 48);
  border-right: 1px solid rgb(48, 48, 48);
}

.header {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 10px;
  border-bottom: 1px solid rgb(48, 48, 48);
  background-color: black;
}

.header__nav-logo {
  display: block;
  margin: 0;
  padding: 0;
  height: 20px;
}

.header__nav-link {
  color: white;
  text-decoration: none;
}

.header__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.text {
  padding: 15px;
  font-size: 14px;
  line-height: 20px;
}
}