
/* ТИХАЯ, ТЕПЛАЯ ТЕМА ДЛЯ АВТОРА-ИСТОРИКА */

body {
    margin: 0;
    background-color: #f9f6f0;
    color: #2b2b2b;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

/* ШАПКА */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    background: rgba(249, 246, 240, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0d9cc;
}

.logo {
    font-weight: 400;
    font-size: 32px;
    letter-spacing: 4px;
    color: #1e1e1e;
    border-left: 3px solid #b8a99a;
    padding-left: 15px;
}

nav a {
    color: #6b6b6b;
    text-decoration: none;
    margin-left: 35px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: 0.4s;
}

nav a:hover {
    border-bottom: 2px solid #b8a99a;
    color: #2b2b2b;
}

/* ГЕРОЙ */

.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 300;
    margin: 0 0 15px;
    letter-spacing: -1px;
    color: #1e1e1e;
}

.hero-text p {
    font-size: 18px;
    color: #5a5a5a;
    max-width: 450px;
    margin-bottom: 35px;
}

.listen-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #1e1e1e;
    color: #f9f6f0;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.listen-btn:hover {
    background: #3d3d3d;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* ФОТОГРАФИЯ */

.hero-visual {
    width: 380px;
    height: 380px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    left: -20px;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ПЛЕЕР */

.player-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 10px 30px rgba(0, 0, 0, 0.05);
}

.player-section h2 {
    font-weight: 500;
    margin-top: 0;
}

/* БАННЕР ПРЕСЕЙВА */

.presave-banner {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding: 16px 20px;
    background: #f3efe8;
    border-radius: 14px;
    border: 1px dashed #b8a99a;
}

.presave-icon {
    font-size: 28px;
}

.presave-text {
    flex: 1;
}

.presave-text strong {
    display: block;
    color: #2b2b2b;
}

.presave-text span {
    color: #7a7a7a;
    font-size: 14px;
}

.presave-btn {
    padding: 10px 22px;
    background: #1e1e1e;
    color: #f9f6f0;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.presave-btn:hover {
    background: #3d3d3d;
}

/* ФУТЕР */

footer {
    text-align: center;
    padding: 50px;
    border-top: 1px solid #e0d9cc;
    margin-top: 60px;
    color: #8b8b8b;
}

.social-links a {
    margin: 0 15px;
    color: #4a4a4a;
    text-decoration: none;
}

.signoff {
    margin-bottom: 10px;
}

.copyright {
    margin-top: 10px;
    font-size: 14px;
}

/* ========== СТРАНИЦА "О СЕБЕ" ========== */

.about-section {
    max-width: 700px;
    margin: 60px auto;
    padding: 0 30px;
}

.about-section h1 {
    font-size: 42px;
    font-weight: 300;
    color: #1e1e1e;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-signature {
    margin-top: 40px;
    font-style: italic;
    color: #8b8b8b;
}

/* ========== СТРАНИЦА "РЕЛИЗЫ" ========== */

.music-page {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 30px;
}

.music-page h1 {
    font-size: 42px;
    font-weight: 300;
    color: #1e1e1e;
    margin-bottom: 10px;
}

.subtitle {
    color: #8b8b8b;
    margin-bottom: 40px;
}

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

.release-card-full {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.03), 0 8px 24px rgba(0,0,0,0.04);
    transition: 0.3s;
}

.release-card-full:hover {
    box-shadow: 0 0 0 1px rgba(0,0,0,0.05), 0 12px 32px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.release-cover-large {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    flex-shrink: 0;
}

.cover-treshinka { background: #dfd5c5; color: #5a4e3c; }
.cover-leti { background: #c5d0df; color: #3c4c5a; }
.cover-blagodaru { background: #dfcfc5; color: #5a403c; }
.cover-surogaty { background: #d5c5df; color: #4e3c5a; }

.release-details {
    flex: 1;
}

.release-details h3 {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 600;
    color: #1e1e1e;
}

.release-date {
    font-size: 13px;
    color: #b8a99a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.release-desc {
    margin: 10px 0 12px;
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.5;
}

.release-link {
    color: #2b2b2b;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #b8a99a;
    transition: 0.3s;
    font-size: 14px;
}

.release-link:hover {
    border-bottom-color: #1e1e1e;
}

/* АДАПТИВНОСТЬ ДЛЯ ТЕЛЕФОНОВ */
@media (max-width: 600px) {
    .release-card-full {
        flex-direction: column;
        text-align: center;
    }

    .release-cover-large {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    nav a {
        margin: 0 15px;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-visual {
        width: 280px;
        height: 280px;
        left: 0;
        margin-top: 30px;
    }
}
.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}