@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0d0d0d;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* HEADER */

header {
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 10%;
    background: rgba(13,13,13,0.85);
    backdrop-filter: blur(6px);
    z-index: 1000;
    border-bottom: 1px solid #111;
}

nav a,
p > a {
    color: #fff;
    text-decoration: none;
    margin:0 30px 0 0 ;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
}

nav a:hover {
    opacity: 0.5;
}

.lang-switch {
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 2px;
opacity: 0.7;
}

.lang-switch:hover {
    opacity: 0.5;
}

/* HERO SECTION */

#home {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Фоновое изображение */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url("REWXRLD.jpg") center center / cover no-repeat;
    background-attachment: fixed; 
    filter: blur(10px) brightness(0.4);
}

/* Контент поверх */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content img {
    max-width: 70%;
    max-height: 70vh;
    object-fit: contain;
}

.hero-content img {
    max-width: 70%;
    max-height: 70vh;
    object-fit: contain;
    margin-bottom: 25px;
}

.hero-tagline {
    font-size: 11px;
    letter-spacing: 6px;
    opacity: 0.4;
    text-transform: uppercase;
}
/* SECTIONS */

section {
    min-height: 100vh;
    padding: 160px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

p {
    max-width: 600px;
    line-height: 1.7;
    font-weight: 300;
    opacity: 0.8;
}

/* ABOUT */

.about-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-photo img {
    width: 320px;
    filter: grayscale(1);
    transition: 0.4s;
}

.about-photo img:hover {
    filter: grayscale(0);
}

.about-content {
    max-width: 520px;
}

.artist-name {
    font-size: 34px;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 25px 0 6px 0;
}

.artist-pronounce {
    font-size: 13px;
    opacity: 0.4;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

#about p {
    line-height: 1.7;
    opacity: 0.8;
}

#about a,
#about i {
    line-height: 1.7;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

#about a:hover {
    opacity: 0.5;
}

/* RELEASES */

.releases {
    display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
justify-content:baseline;}

.release-card {
    transition: 0.3s;
/*    margin-right: 40px; */
    margin-bottom: 40px;
}

.release-card img {
    width: 300px;
    filter: grayscale(1);
    transition: 0.4s;
}

.release-card:hover img {
    filter: grayscale(0);
}

.release-title {
    margin-top: 15px;
    font-size: 14px;
    font-size: medium;

    letter-spacing: 2px;
}

.release-type {
    font-style: italic;
    font-size:small;
    letter-spacing: 1px;
    margin-left: 5px;
    opacity: 0.5;
}

.release-year {
    font-size: 12px;
    opacity: 0.5;
    margin-top: 4px;
    letter-spacing: 2px;
}

.release-links {
    margin-top: 15px;
    display: flex;
}

.release-links a,
.contacts-links a {
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
    filter: grayscale(1) brightness(1.2);
}




/* CONTACTS */

.contacts a {
    display: block;
    color: white;
    margin-top: 10px;
    text-decoration: underline;
    letter-spacing: 2px;
    transition: 0.3s;
}

.contacts-links {
    display: flex;
    align-content: flex-end;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 40px;
}
.release-links a,
.contacts-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
    margin: 0 10px 0 0;
  text-decoration: none;
}

.release-links a:hover,
.contacts-links a:hover {
  opacity: 0.8;
    filter: grayscale(0) brightness(1);

}




footer {
    padding: 40px;
    text-align: center;
    font-size: 11px;
    opacity: 0.3;
}



/* MOBILE */

@media(max-width: 900px) {

.about-wrapper {
    flex-direction: column;
}

.about-photo img {
    width: 80%;
}

}


