/* Общие настройки */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: 'Runic';
  src: url('/fonts/Runic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Runi';
  src: url('/fonts/RUNI.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}
body {
  margin: 0;
  padding: 0;
  min-height: 100vh; /* Важно! */
  font-family: 'Roboto', sans-serif;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

/* Затемнение фона под контент */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.bg-music {
  background-image: url('/img/example3.png');
}

.bg-video {
  background-image: url('/img/example.png');
}
a {
  color: inherit;
  text-decoration: none;
}

/* Фоновое видео */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}

.video-bg video.active {
  opacity: 1;
}

/* Хедер */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0, 0, 0, 0.4);
  position: relative;
}
.logo {
  font-family: 'Runic', sans-serif;
  font-size: 34px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.main-menu {
  display: flex;

}
.main-menu ul {
  display: flex;
  list-style: none;
  gap: 40px; /* Теперь отступы будут между <li>-элементами */
}

.main-menu li a {
  font-family: 'Futhark';
  font-size: 16px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.main-menu li a:hover {
  color: #208126;
}
.burger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
/* Адаптивность */
@media (max-width: 992px) {
  .main-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #111;
    display: none;
    flex-direction: column;
    z-index: 999; /* Важно: чтобы меню было поверх других элементов */
    padding: 20px 0;
  }

  .main-menu.active {
    display: flex; /* Показываем как flex колонка */
  }

  .main-menu ul {
    flex-direction: column; /* Основная причина твоей проблемы */
    width: 100%;
  }

  .main-menu li {
    text-align: center;
    margin: 10px 0;
  }

  .main-menu a {
    display: block;
    padding: 10px 0;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .main-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .burger {
    display: block;
    cursor: pointer;
    position: relative;
    z-index: 1000;
  }
}

/* Херо-секция */
.hero {
  max-width: 1200px;
  margin: 350px auto 0;
  text-align: center;
  transition: margin-top 0.3s ease; /* Добавляем плавную анимацию */;
  margin-bottom: 50px;
}
.hero-title {
  font-family: 'Skranji', cursive;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
}
.btn-main {
  display: inline-block;
  padding: 15px 30px;
  background: #208126;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 30px;
  transition: background 0.3s;
}
.btn-main:hover {
  background: #1a6f20;
}

/* Футер */

.main-footer {
  margin-top: ; /* ✅ Теперь есть значение */
  padding: 40px 50px;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.socials a {
  margin: 0 10px;
  font-size: 20px;
  color: #fff;
  transition: color 0.3s;
}
.socials a:hover {
  color: #208126;
}






/*МУЗЫКА*/

.container__music {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
  position: relative;
}

.section-title__music {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}


.release-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.release-item {
  background: #1c1c1c;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  padding: 20px;
  min-height: 400px;
  display: flex; /* По умолчанию */
  flex-direction: row; /* По умолчанию */
}

.release-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var();
  background-size: cover;
  background-position: center;
  filter: blur(5px);
  -webkit-filter: blur(5px); /* Для Safari */
  z-index: -1;
}

.release-cover img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  margin-left: 3px;
  margin-top: 3px;
}

.release-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.release-info h3 {
  margin-top: 0;
}

audio {
  margin: 15px 0;
  width: 100%;
}

.track-list {
  margin-top: 20px;
}

.track {
  margin-bottom: 15px;
}

.platforms {
  display: flex;
  gap: 15px;
  font-size: 20px;
}

.platforms a {
  color: #bbb;
  transition: color 0.3s ease;
}

.platforms a:hover {
  color: #ffffff;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .release-item {
    flex-direction: column; /* Вертикальное расположение */
  }

  .release-cover {
    width: 100%; /* Занимает всю ширину */
    margin: 0 0 20px 0; /* Отступ между изображением и текстом */
  }

  .release-cover img {
    width: 100%; /* Изображение растягивается на всю ширину */
    height: auto; /* Сохраняет пропорции */
    margin: 0; /* Убираем отступы */
  }

  .release-info {
    flex-grow: 0; /* Убираем растяжение */
  }
}

/*ВИДЕО*/

    /* Основной стиль секции */
    .videos-section {
      position: relative;
      padding: 80px 50px;
      color: #fff;
      text-align: center;
      min-height: 100vh;
      
      overflow: hidden;
    }

    /* Заголовок */
    .section-title__video {
      font-family: 'Oswald', sans-serif;
      font-size: 50px;
      letter-spacing: 2px;
      margin-bottom: 40px;
      text-transform: uppercase;
      position: relative;
      display: inline-block;
      z-index: 11;
    }



    /* Грид видео */
    .video-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Элемент видео */
    .video-item {
      position: relative;
      cursor: pointer;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
      background-color: #111;
    }

    /* Превью видео с соотношением 16:9 */
    .video-thumbnail {
      position: relative;
      width: 100%;
      padding-top: 56.25%; /* 16:9 */
      background-size: cover;
      background-position: center;
      border-radius: 10px 10px 0 0;
      overflow: hidden;
      transition: transform 0.5s ease;
    }

    .video-thumbnail::after {
      content: '';
      position: absolute;
      width: 50px;
      height: 50px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: url('https://upload.wikimedia.org/wikipedia/commons/e/e1/Play_button%281%29.svg ') no-repeat center / contain;
      opacity: 0.7;
      transition: opacity 0.3s ease;
    }

    .video-thumbnail:hover {
      transform: scale(1.03);
    }

    .video-thumbnail:hover::after {
      opacity: 1;
    }

    /* Название видео */
    .video-title {
      padding: 15px;
      font-size: 18px;
      font-weight: bold;
      text-transform: uppercase;
      background-color: #1c1c1c;
      border-radius: 0 0 10px 10px;
    }

    /* Модальное окно */
    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.95);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      position: relative;
      max-width: 90%;
      width: 900px;
      max-height: 90vh;
    }

    .close-btn {
      position: absolute;
      top: -40px;
      right: -40px;
      font-size: 40px;
      color: #fff;
      cursor: pointer;
      z-index: 100;
    }



/*ОБО МНЕ*/


.about-section {
  min-height: 100vh;
  padding: 80px 50px;
  background-color: #000;
  color: #fff;
  font-family: 'Roboto', sans-serif;
}



.about-container {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: left;
}

.section-title__about {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}


.about-content {
  line-height: 1.8;
  font-size: 18px;
  color: #ccc;
}

.about-content p {
  margin-bottom: 20px;
}

.about-image {
  text-align: center;
  padding: 0 20px;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}