/* USER VARIABLES SECTION */

:root {
	--accent: orange;
	--text: #333;
	--regular-text: 16px;
	--lineheight: 1.65;
	--userfont: Montserrat-st, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { --bs-gutter-x: .625rem; }
.row, .row > * { --bs-gutter-x: 1.25rem; }

/* FONTS LOAD SECTION */

@font-face { src: url("../fonts/Montserrat-Bold.woff2") format("woff2"); font-family: "Montserrat-st"; font-weight: 600; font-style: normal; }
@font-face { src: url("../fonts/Montserrat-Medium.woff2") format("woff2"); font-family: "Montserrat-st"; font-weight: 500; font-style: normal; }
@font-face { src: url("../fonts/Montserrat-Regular.woff2") format("woff2"); font-family: "Montserrat-st"; font-weight: 400; font-style: normal; }

/* GENERAL CSS SETTINGS */

::placeholder { color: #666; }
::selection { background-color: var(--accent); color: #fff; }
input, textarea { outline: none; }
input:focus:required:invalid, textarea:focus:required:invalid { border-color: red; }
input:required:valid, textarea:required:valid { border-color: green; }

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
}

/* USER STYLES */

.header, footer {
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.header__wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 66vw;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Элемент невидим */
    transform: translateY(-30px); /* Смещение элемента вверх */
    filter: blur(30px); /* Размытие */
    transition: all 2s ease-in-out; /* Плавный переход */
}
.header__wrap.show {
    opacity: 1; /* Элемент становится видимым */
    transform: translateY(0); /* Возвращаем в исходное положение */
    filter: blur(0); /* Убираем размытие */
}
.logo {
    width: 90vw;
    position: relative;
}
.logo_img {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
}
@keyframes blurAnimation {
    from {
        filter: blur(0px);
    }
    to {
        filter: blur(10px);
    }
}

/* Применяем анимацию к последнему элементу с классом .logo_img */
.logo_img:last-child {
    animation: blurAnimation 2s infinite alternate;
}
h1 {
    width: 85vw;
	text-transform: uppercase;
    font-weight: 500;
	font-size: 14px;
    line-height: 140%;
    text-align: center;
	color:#fff;
    background: linear-gradient(270deg, #FFFFFF 0%, #808080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0px 8px 12px rgba(0, 0, 0, 0.15), 0px 4px 4px rgba(0, 0, 0, 0.3);

}
@keyframes scrolDownAnimation {
    from {
        bottom: 85px;
    }
    to {
        bottom: 95px;
    }
}
.scrollDown {
    position: absolute;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%);
    animation: scrolDownAnimation 1s infinite alternate;
    transition: all .5s ease;
}
.releases {
    padding: 36px 0;
}
.releases__wrap {
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.releases__title {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;
}
.releases__title h2 {
    margin: 0;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    text-transform: uppercase;
    color: #111111;
}
.releases__slider {
    width: 100%;
    position: relative;
    padding: 5px;
}
.releases__slider-slide {
    border: 3px solid #E6E6E6;
    border-radius: 15px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    width: 303px;
    height: 303px;
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));
}
.releases__slider-img {
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.play__releases {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border-radius: 100%;
    border-color: #fff;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
	padding: 5px;
    z-index: 2;
	font-size: 20px;
}
.name__song {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.name__song h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;
    margin: 0px;
    text-transform: uppercase;
    text-wrap: nowrap;
}
.name__song p {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    text-wrap: nowrap;
    color: rgba(255, 255, 255, 0.7);
}

.artists {
    background: #444444;
    padding: 36px 0;
}
.artists__wrap {
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.artists__title {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;
}
.artists__title h2 {
    margin: 0;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}
.artists__slider {
    width: 100%;
    position: relative;
    padding: 5px;
}
.artists__slider-slide {
    cursor: pointer;
    position: relative;
    width: 303px;
    height: 453px;
    border: 3px solid #999;
    border-radius: 15px;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));
    position: relative;
}
.artists__slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.name__artists {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 6px;
    position: absolute;
    background: rgba(34, 34, 34, 0.9);
    left: 50%;
    bottom: 10px;
    width: 100%;
    transform: translateX(-50%);
    z-index: 1;
}
.name__artists h3 {
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;
    z-index: 2;
}
.name__artists span {
    font-weight: 400;
    font-size: 10px;
    line-height: 100%;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    z-index: 2;
}
audio {
    display: none;
}
#artistModal .modal-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 100%;
    text-transform: uppercase;
    text-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15), 0px 2px 3px rgba(0, 0, 0, 0.3);
}
.First {
    color: #666666;
    text-align: center;
}
.Second {
    color: #111;
    text-align: center;
}
.artistPhotosContainer {
  position: relative;
  width: 300px;
}
.artist-slide {
    position: relative;
    border-radius: 15px;
    border: 3px solid #E6E6E6;
    height: 450px;
}
.artist-slide > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.artistPag {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    width: auto;
    padding: 5px 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}
.artist-socials h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #666666;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 1px 3px rgba(0, 0, 0, 0.15);
}
#artistTabs .nav-link {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #CACACA;
}
#artistTabs .nav-link.active {
    color: #111;
}
#artistModal .tab-content {
    padding: 30px 0;  
}
.play__song {
    background: none;
    border-radius: 100%;
    border-color: #111;
    color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    z-index: 2;
    padding: 5px;
    border: 1px solid #111;
    text-decoration: none;
    font-size: 14px
}

.video-thumbnail {
    cursor: pointer;
    width: 300px;
    height: 200px;
    position: relative;
    border-radius: 15px;
    overflow: hidden; /* Это важно, чтобы содержимое, включая видео, не выходило за рамки скругленных углов */
}

.video-thumbnail > span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
    text-wrap: nowrap;
}
.video-thumbnail > img {
    width: 100%;
    object-fit: cover;
}
.mybtns {
    font-weight: 400;
    padding: 16px 24px;
    font-size: 16px;
    line-height: 100%;
    text-decoration-line: underline;
    text-transform: uppercase;
}
footer {
    position: relative;
}
.footer__wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 66vw;
    justify-content: center;
    align-items: center;
    opacity: 1; /* Элемент невидим */
    transform: translateY(0); /* Смещение элемента вверх */
    filter: blur(0); /* Размытие */
    transition: all 2s ease-in-out; /* Плавный переход */
}
.footer__contacts {
    width: 70vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.footer__phone {
    width: 95vw;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    /* identical to box height, or 24px */
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFFFFF;
    text-wrap: nowrap;
	text-align: center;
}
.copy {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999999;
    text-wrap: nowrap;
    width: 95vw;
	text-align: center;
}
.song-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}