html, body {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Структура страницы */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1;
    padding-bottom: 60px;
}

/* Навигационная панель */
.navbar-custom {
    background-color: #6C4D98;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0;
}

.navbar-brand img {
    height: 40px;
}

.nav-link-custom {
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

    .nav-link-custom::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: white;
        transition: all 0.3s;
        transform: translateX(-50%);
    }

    .nav-link-custom:hover::after {
        width: 100%;
    }

/* Футер */
.full-width-footer {
    width: 100%;
    margin: 0;
    padding: 20px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.footer-links {
    justify-content: center;
}

    .footer-links .nav-link {
        color: #212529 !important;
        font-size: 0.9rem;
    }

/* Контент */
.main-content {
    padding-top: 80px;
}

/* Карточки */
.card-custom {
    border: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card-img-custom {
    height: 250px;
    object-fit: cover;
}

.bg-purple {
    background-color: #6C4D98 !important;
}

#mainEventsCarousel {
    max-width: 800px;
    margin: 0 auto;
}

.carousel-inner {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.carousel-img {
    height: 400px;
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #6C4D88;
    border-radius: 50%;
    padding: 15px;
    background-size: 60%;
}

/* Анимация перехода */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.btn-custom {
    background-color: #6C4D98;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

    .btn-custom:hover {
        background-color: #5a3d7a;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(108, 77, 152, 0.3);
    }
/* Основные стили */
.theater-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Поисковая строка */
.search-input {
    border-radius: 20px;
    padding: 10px 20px;
    border: 1px solid #ddd;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

/* Заголовки */
.section-title {
    color: #6C4D98;
    font-weight: 600;
    margin: 30px 0 20px;
    font-size: 1.5rem;
}

.genre-title {
    color: #6C4D98;
    font-weight: 500;
    margin: 25px 0 15px;
    font-size: 1.3rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

/* Карточки спектаклей */
.performance-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .performance-card:hover {
        transform: translateY(-5px);
    }

    .performance-card.large {
        padding: 20px;
    }

    .performance-card h3 {
        color: #333;
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

.performance-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Изображения спектаклей */
.performance-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 8px 8px 0 0;
    margin: -15px -15px 15px -15px;
    position: relative;
}

.performance-card.large .performance-image {
    height: 250px;
    margin: -20px -20px 20px -20px;
}

/* Жанры спектаклей */
.performance-genre {
    display: inline-block;
    background-color: #f0f0f0;
    color: #555;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin: 5px 5px 10px 0;
    font-weight: 500;
}

    /* Специфические цвета для разных жанров */
    .performance-genre[data-genre="Опера"] {
        background-color: #ffebee;
        color: #c62828;
    }

    .performance-genre[data-genre="Мюзикл"] {
        background-color: #e8f5e9;
        color: #2e7d32;
    }

    .performance-genre[data-genre="Сказка"] {
        background-color: #fff8e1;
        color: #ff8f00;
    }

    .performance-genre[data-genre="Драма"] {
        background-color: #e3f2fd;
        color: #1565c0;
    }

    .performance-genre[data-genre="Комедия"] {
        background-color: #f3e5f5;
        color: #7b1fa2;
    }

    .performance-genre[data-genre="Кукольный"] {
        background-color: #e0f7fa;
        color: #00838f;
    }

/* Кнопки */
.btn-buy {
    background-color: #6C4D98;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s;
    cursor: pointer;
}

    .btn-buy:hover {
        background-color: #5a3d7a;
        color: white;
    }

/* Боковая панель */
.sidebar {
    position: fixed;
    right: 20px;
    top: 100px;
    width: 250px;
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sidebar-title {
    color: #6C4D98;
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.sidebar-list {
    list-style: none;
    padding-left: 0;
}

    .sidebar-list li {
        padding: 8px 0;
        border-bottom: 1px solid #f5f5f5;
    }

        .sidebar-list li:last-child {
            border-bottom: none;
        }

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .performance-image {
        height: 150px;
    }

    .performance-card {
        margin-bottom: 25px;
    }

    .sidebar {
        position: static;
        width: 100%;
        margin-top: 30px;
    }

    .genre-title {
        font-size: 1.2rem;
        margin: 30px 0 15px;
    }

    .performance-genre {
        font-size: 0.7rem;
    }
}
/* Основные стили */
.concerts-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Поисковая строка */
.search-input {
    border-radius: 20px;
    padding: 10px 20px;
    border: 1px solid #ddd;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

/* Заголовки */
.section-title {
    color: #d32f2f; /* Красный цвет как в movies.css */
    font-weight: 600;
    margin: 30px 0 20px;
    font-size: 1.5rem;
}

.genre-title {
    color: #d32f2f; /* Красный цвет как в movies.css */
    font-weight: 500;
    margin: 25px 0 15px;
    font-size: 1.3rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

/* Карточки концертов */
.concert-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .concert-card:hover {
        transform: translateY(-5px);
    }

    .concert-card h3 {
        color: #333;
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

.concert-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Изображения концертов */
.concert-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 8px 8px 0 0;
    margin: -15px -15px 15px -15px;
    position: relative;
}

/* Жанры концертов */
.concert-genre {
    display: inline-block;
    background-color: #f0f0f0;
    color: #555;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin: 5px 5px 10px 0;
    font-weight: 500;
}

    /* Специфические цвета для разных жанров */
    .concert-genre[data-genre="Поп"] {
        background-color: #e1f5fe;
        color: #0277bd;
    }

    .concert-genre[data-genre="Рок"] {
        background-color: #fce4ec;
        color: #ad1457;
    }

    .concert-genre[data-genre="Эстрада"] {
        background-color: #e8f5e9;
        color: #2e7d32;
    }

    .concert-genre[data-genre="Классика"] {
        background-color: #ede7f6;
        color: #4527a0;
    }

/* Кнопки */
.btn-buy {
    background-color: #6C4D98; /* Фиолетовый цвет как в movies.css */
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s;
    cursor: pointer;
}

    .btn-buy:hover {
        background-color: #5a3d7a; /* Темнее на 10% как в movies.css */
        color: white;
    }

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .concert-image {
        height: 150px;
    }

    .concert-card {
        margin-bottom: 25px;
    }

    .genre-title {
        font-size: 1.2rem;
        margin: 30px 0 15px;
    }

    .concert-genre {
        font-size: 0.7rem;
    }
}
/* Основные стили */
.movies-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Поисковая строка */
.search-input {
    border-radius: 20px;
    padding: 10px 20px;
    border: 1px solid #ddd;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

/* Заголовки */
.section-title {
    color: #d32f2f;
    font-weight: 600;
    margin: 30px 0 20px;
    font-size: 1.5rem;
}

.genre-title {
    color: #d32f2f;
    font-weight: 500;
    margin: 25px 0 15px;
    font-size: 1.3rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

/* Карточки фильмов */
.movie-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .movie-card:hover {
        transform: translateY(-5px);
    }

    .movie-card.large {
        padding: 20px;
    }

    .movie-card h3 {
        color: #333;
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

.movie-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Изображения фильмов */
.movie-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 8px 8px 0 0;
    margin: -15px -15px 15px -15px;
    position: relative;
}

.movie-card.large .movie-image {
    height: 250px;
    margin: -20px -20px 20px -20px;
}

/* Жанры фильмов */
.movie-genre {
    display: inline-block;
    background-color: #f0f0f0;
    color: #555;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin: 5px 5px 10px 0;
    font-weight: 500;
}

    /* Специфические цвета для разных жанров */
    .movie-genre[data-genre="Фантастика"] {
        background-color: #e1f5fe;
        color: #0277bd;
    }

    .movie-genre[data-genre="Триллер"] {
        background-color: #fce4ec;
        color: #ad1457;
    }

    .movie-genre[data-genre="Ужасы"] {
        background-color: #ede7f6;
        color: #4527a0;
    }

    .movie-genre[data-genre="Приключения"] {
        background-color: #e8f5e9;
        color: #2e7d32;
    }

    .movie-genre[data-genre="Экшен"] {
        background-color: #ffebee;
        color: #c62828;
    }

    .movie-genre[data-genre="Драма"] {
        background-color: #e3f2fd;
        color: #1565c0;
    }

/* Кнопки */
/* Кнопки */
.btn-buy {
    background-color: #6C4D98; /* Фиолетовый цвет как в навигации */
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s;
    cursor: pointer;
}

    .btn-buy:hover {
        background-color: #5a3d7a; /* Темнее на 10% при наведении */
        color: white;
    }

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .movie-image {
        height: 150px;
    }

    .movie-card {
        margin-bottom: 25px;
    }

    .genre-title {
        font-size: 1.2rem;
        margin: 30px 0 15px;
    }

    .movie-genre {
        font-size: 0.7rem;
    }
}
:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4cc9f0;
    --purple-color: #6a1b9a;
    --purple-dark: #4a148c;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.8);
}

/* Hero Section - Улучшенный баннер */
.artist-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;
    margin-bottom: 3rem;
}

    .artist-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
        z-index: 1;
    }

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: var(--text-light);
    padding: 0 2rem;
}

.artist-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    line-height: 1.2;
}

.concert-meta {
    margin-bottom: 2rem;
}

.genre-badge {
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.date-venue {
    display: flex;
    gap: 2rem;
    font-size: 1.2rem;
    color: var(--text-light);
}

    .date-venue i {
        margin-right: 0.5rem;
        color: var(--accent-color);
    }

/* Кнопки - улучшенный стиль */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary {
    background-color: var(--purple-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-primary:hover {
        background-color: var(--purple-dark);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

    .btn-outline-light:hover {
        background: rgba(255,255,255,0.1);
    }

/* Анимация пульсации для кнопки */
.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(106, 27, 154, 0.7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(106, 27, 154, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(106, 27, 154, 0);
    }
}

/* Адаптивность */
@media (max-width: 992px) {
    .artist-title {
        font-size: 3rem;
    }

    .hero-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .artist-hero {
        min-height: 70vh;
        align-items: center;
    }

    .artist-title {
        font-size: 2.5rem;
    }

    .date-venue {
        flex-direction: column;
        gap: 1rem;
    }
}

/*.concert-image {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}*/

.concert-genre {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.8rem;
    margin-top: 5px;
}

    .concert-genre[data-genre="Поп-концерты"] {
        background-color: #e1f5fe;
        color: #0277bd;
    }

    .concert-genre[data-genre="Рок-концерты"] {
        background-color: #fce4ec;
        color: #ad1457;
    }

    .concert-genre[data-genre="Эстрада"] {
        background-color: #e8f5e9;
        color: #2e7d32;
    }

    .concert-genre[data-genre="Драма"] {
        background-color: #e3f2fd;
        color: #1565c0;
    }

    .concert-genre[data-genre="Комедия"] {
        background-color: #f3e5f5;
        color: #7b1fa2;
    }

    .concert-genre[data-genre="Кукольный"] {
        background-color: #e0f7fa;
        color: #00838f;
    }

.btn-buy {
    background-color: #6C4D98;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s;
    cursor: pointer;
}

    .btn-buy:hover {
        background-color: #5a3d7a;
    }

@media (max-width: 768px) {
    .concert-image {
        width: 60px;
        height: 60px;
    }

    .concert-genre {
        font-size: 0.7rem;
    }
}

.animate__fadeIn {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.remove-btn {
    background: none;
    border: none;
    color: red;
    cursor: pointer;
    font-weight: bold;
}

    .remove-btn:hover {
        color: darkred;
    }

/* Адаптация под мобильные устройства */
@media (max-width: 640px) {
    .modal-item {
        flex-direction: column;
        align-items: start;
    }

    .remove-btn {
        margin-top: 0.5rem;
    }
}