/* Основные стили */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif; /* Прямой шрифт с прямыми углами */
    color: #333;
    padding-top: 80px;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Стили навбара */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.3); /* Белый с прозрачностью 30% */
    backdrop-filter: blur(5px); /* Эффект размытия для лучшей читаемости */
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding-top: -80px;
}

.menu-toggle {
    display: none;
}

.mobile-menu {
    display: none;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: absolute;
    left: 3%; /* 3% от левого края */
    transform: translateX(-50%);
}

.logo img {
    height: 40px; /* Высота логотипа */
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto; /* Сдвигаем ссылки вправо */
    margin-right: 1%; /* Отступ справа */
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #FF6B6B; /* Коралловый цвет */
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #ffb6b6;
}

/* Добавим стиль для активного пункта меню */
.nav-links a.active {
    color: #ffb6b6; /* Такой же цвет как при наведении */
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffb6b6;
}

/* Стили для секции слайдов */
.slides-section {
    height: 60vh;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
}

.slide {
    position: relative;
    min-width: 100%;
    height: 100%;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(0.7);
    z-index: 1;
}

.slide-main-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.slide-img {
    width: 50%;
    height: 80%;
    object-fit: contain;
    border-radius: 5px;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

.slide-content {
    width: 40%;
    margin-left: 1%;
    color: white;
}

.event-type {
    font-size: 0.8rem;
    color: #ccc;
    margin-bottom: 5px;
}

.slide-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    margin-top: 3%;
    margin-bottom: 3%;
}

.premiere {
    color: #ffb6b6;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 10px 0;
    text-transform: uppercase;
}

.slide-description {
    font-size: 1rem;
    color: #fff;
    margin-top: 3%;
    margin-bottom: 3%;
}

.slide-buttons {
    display: flex;
    gap: 20px;
}

.slide-buttons:empty {
    display: none;
}

.buy-btn {
    background-color: #ffb6b6;
    color: white;
    border: none;
    padding: 20px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.buy-btn:hover {
    background-color: #FF6B6B;
    transform: scale(1.05);
}

.read-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.read-btn:hover {
    color: #ffb6b6;
}

.buy-btn:empty,
.read-btn:empty {
    display: none;
}

.arrow {
    font-size: 1.2rem;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: solid black 1px;
    color: #ff6464;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.5);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.slider-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffb6b6;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicators .indicator.active {
    border-color: #FF6B6B;
    transform: scale(1.05);
}

.events-section {
    padding: 60px 15%;
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.events-header h2 {
    color: #FF6B6B;
    font-size: 32px;
    margin: 0;
}

.view-all {
    color: #FF6B6B;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s;
}

.view-all:hover {
    color: #FFB6B6;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-decoration: none !important;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 10px 10px 0 0;
}

.event-content {
    padding: 20px;
}

.event-title {
    font-weight: bold;
    font-size: 20px;
    margin: 0 0 10px 0;
    color: black;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.event-description {
    position: relative;
    margin-bottom: 20px;
    line-height: 1.5;
    max-height: 72px;
    overflow: hidden;
    color: black;
}

.event-description::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 100%);
}

.event-buttons {
    display: flex;
    justify-content: space-between;
}

.buy-btn-event {
    background-color: #ffb6b6;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.buy-btn-event:hover {
    background-color: #FF6B6B;
    transform: scale(1.05);
}

.read-btn-event {
    background: transparent;
    border: none;
    color: #FF6B6B;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.read-btn-event:hover {
    color: #ffb6b6;
}

.about-section {
    position: relative;
    padding: 100px 0;
    color: white;
    overflow: hidden;
    background: url('aboutusbg.jpg') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.8) 100%);
    z-index: -1;
}

.about-content {
    margin-left: 50%;
    margin-right: 5%;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.about-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
}

.news-scroll-container {
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
    scrollbar-width: thin;
}

.news-scroll-wrapper {
    display: flex;
    gap: 15px;
    padding: 10px 0;
}

.news-card,
.view-all-card {
    display: inline-block;
    width: 280px;
    min-width: 280px;
    height: auto;
    vertical-align: top;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.news-card:hover,
.view-all-card:hover {
    transform: scale(1.02);
}

.news-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
}

.news-content {
    padding: 15px;
}

.news-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.news-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.news-date {
    font-size: 12px;
    color: #888;
}

.view-all-card {
    background-color: #f1f1f1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}

.view-all-text {
    font-weight: bold;
    font-size: 16px;
}

.view-all-arrow {
    font-size: 24px;
    margin-top: 5px;
}