/* ===================== */
/* ОБЩИЕ СТИЛИ */
/* ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'SF-Pro-Display', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===================== */
/* ГЛАВНАЯ СЕКЦИЯ */
/* ===================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/0131.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Навигация */
.main-nav {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
}

.nav-logo img {
    width: 60px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: 30px;
}

.social-icons svg {
    width: 24px;
    height: 24px;
    opacity: 0.9;
    transition: opacity 0.3s;
    filter: brightness(0) invert(1);
}

.social-icons svg:hover {
    opacity: 1;
}

/* Основной контент - КРУПНЫЙ И ПО ЦЕНТРУ */
.hero-content {
    position: absolute;
    top: 50%;
    left: 20%; /* Сдвиг влево как в старом варианте */
    transform: translateY(-50%); /* Только по вертикали */
    z-index: 5;
    text-align: center;
    width: auto;
    padding: 0;
}

.hero-content h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.album-cover {
    margin: 0 auto 15px;
    width: 205px;
    height: 205px;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 9px 28px rgba(0,0,0,0.4); /* Было 0 10px 30px */
    border: 3px solid rgba(255,255,255,0.1); /* Было 4px, сделаем тоньше */
}

.album-subtitle {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 30px;
}

.presentation-btn {
    display: inline-block;
    color: #fff;
    font-size: 14px; /* Было 16px */
    font-weight: 600;
    border: 1px solid #fff; /* Было 2px */
    padding: 10px 30px; /* Было 16px 55px */
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.presentation-btn:hover {
    background-color: #fff;
    color: #000;
}

/* Стрелка вниз */
.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
}

/* ===================== */
/* ОСНОВНЫЕ СЕКЦИИ */
/* ===================== */
.section-block {
    padding: 80px 20px;
    text-align: center;
}

.light-bg-section {
    background-color: #1a1a1a;
    color: #f0f0f0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
}

.text-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.7;
}

.text-block p {
    margin-bottom: 1.5em;
    font-size: 18px;
    line-height: 1.7;
}

.text-block p:last-child {
    margin-bottom: 0;
}

/* Ссылки на медиа */
.media-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.media-link {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.media-link:hover {
    background-color: #fff;
    color: #000;
}

/* ===================== */
/* ФОРМА */
/* ===================== */
#ticket-form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    max-width: 400px;
    width: 90%;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

/* ===================== */
/* ФУТЕР */
/* ===================== */
.footer-section {
    padding: 40px 20px;
    background-color: #000;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-section .section-content {
    font-size: 14px;
}

.footer-links {
    margin-top: 20px;
    opacity: 0.7;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}
.playlist-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}