/* Основные стили */
body {
    font-family: 'Montserrat', 'Helvetica', sans-serif;
    color: #333;
}

/* Герой-секция (фото на фоне) */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    min-height: 100vh;
    padding: 20px;
}

/* Контейнер для превью альбома */
.album-preview-container {
    margin: 10px auto;
    max-width: 730px;
    transition: transform 0.3s;
}
/* Превью альбома */
.album-preview {
    width: 100%;
    height: auto;
    max-width: 730px;
    max-height: 260px;
    object-fit: contain;
    /* filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.25)); */
}

/* Адаптивность */
@media (max-width: 768px) {
    .album-preview {
        max-width: 90%; /* Уменьшаем на мобильных */
    }
    
    .hero-section h1 {
        font-size: 2.5rem; /* Уменьшаем заголовок */
    }
    
    .social-links a {
        margin: 0 10px; /* Уменьшаем отступы иконок */
    }
}

.hero-section h1 {color: #fed96a; cursor: default;}

.social-links {} 
.social-links a{color: #fff; opacity: .6; transition: .3s;}
.social-links a:hover{opacity: 1;}

/* Цвета иконок при наведении 
.instagram:hover {color: #E1306C;}
.telegram:hover {color: #0088CC;}
.vk:hover {color: #0077FF;}
.youtube:hover {color: #FF0000;}
*/

/* Секция стримингов */
.streaming-section {background: #f8f9fa;}
.streaming-section h2 {font-weight: bold;}

.streaming-icon {
    width: 64px; height: 64px; margin: 8px;
    border-radius: 15px;
    object-fit: contain;
    transition: transform .3s, box-shadow .3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.streaming-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Адаптивность */
@media (max-width: 768px) {
    .streaming-icon {
        width: 60px;
        height: 60px;
    }
}

/* Секция альбомов */
.albums-section {
    background: #fff;
}

.album-card {
    padding: 20px;
    transition: transform 0.3s;
}

.album-card:hover {
    transform: translateY(-5px);
}

.album-cover {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.album-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #101010;
}
.album-title span {font-size: 1.1rem;}

.album-year {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

footer {background: #212121; color: #ccc;}
footer p {cursor: default;}
.rudetroit {height: 24px; width: auto; margin-top: 10px;}


/* Адаптивность */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .social-links a, .streaming-link {
        margin: 0 10px;
    }
    .album-cover {width: 200px;
    height: 200px;}
}