/* ================================ Основные стили сайта ================================ */ 
/* Общие */ 
body { padding-top: 80px; font-family: "Segoe UI", sans-serif; background: #fff; color: #222; line-height: 1.5; } 
/* ================================ Навигация ================================ */
#mainNav { transition: all 0.3s ease; padding: 15px 0; } #mainNav 
.navbar-brand img { height: 50px; transition: all 0.3s ease; } #mainNav 
.navbar-brand span { font-size: 20px; transition: all 0.3s ease; } 
/* Когда скроллим */ 
#mainNav.navbar-shrink { padding: 5px 0; } 
#mainNav.navbar-shrink .navbar-brand img { height: 35px; } 
#mainNav.navbar-shrink .navbar-brand span { font-size: 16px; } 
/* ================================ Главный баннер ================================ */ 
.main-banner { height: 80vh; /* почти весь экран */ 
background: linear-gradient(135deg, #8e0e00, #1f1c18); 
position: relative; 
display: flex; 
align-items: center; 
justify-content: center; 
text-align: center; color: #fff; } 
.main-banner .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); } 
.main-banner .container { position: relative; z-index: 2; } .main-banner h1 { font-size: 3rem; text-shadow: 0 3px 8px rgba(0,0,0,0.7); } 
.main-banner p { font-size: 1.3rem; margin-bottom: 20px; text-shadow: 0 2px 6px rgba(0,0,0,0.6); } 
/* ================================ Слайдер (караван баннеров) ================================ */ 
#mainCarousel .carousel-item { height: 70vh; min-height: 320px; background-size: cover; background-position: center; background-repeat: no-repeat; position: relative; } 
#mainCarousel .carousel-caption { background: rgba(0,0,0,0.35); padding: 12px 18px; border-radius: 8px; } #mainCarousel .carousel-caption h3 { font-size: 2rem; } 
/* ================================ Афиша / Галерея изображения (вариант А: показываем ВСЮ картинку) ================================ */ 
/* Контейнер для картинок */ 
.img-holder { height: 240px; /* фиксированная высота блока */ 
display: flex; 
align-items: center; 
justify-content: center; 
background: #f5f5f5; 
/* подложка, можно поменять */ 
overflow: hidden; border-radius: 8px; } 
/* Изображение внутри контейнера */ 
.img-holder img { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; /* показываем всю картинку */ 
display: block; } 
/* Галерея (фото по 3 в ряд) */ 
.gallery-img { border-radius: 10px; transition: transform 0.3s ease; } 
.gallery-img:hover { transform: scale(1.05); } 
/* ================================ Карточки ================================ */ 
.card { border-radius: 12px; overflow: hidden; } 
.card-body { display: flex; flex-direction: column; } 
.card-body .flex-grow-1 { flex: 1 1 auto; } 
.card-title { font-size: 1.1rem; margin-bottom: 10px; } 
.btn { border-radius: 8px; font-weight: 600; } 
/* ================================ Прочее ================================ */ 
section { margin-top: 60px; margin-bottom: 60px; } 
h2 { font-weight: 700; margin-bottom: 30px; font-size: 2rem; } 
/* Афиша */ 
.event-card { transition: transform 0.3s ease, box-shadow 0.3s ease; border-radius: 12px; overflow: hidden; } 
.event-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
/* Фото постера */ 
.event-poster { height: 400px; /* делаем афиши крупнее */ overflow: hidden; display: flex; align-items: center; justify-content: center; background: #f9f9f9; } 
.event-poster img { height: 100%; width: auto; object-fit: contain; } 
/* Фотогалерея */ 
.gallery-item { height: 200px; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.15); transition: transform 0.3s ease; } 
.gallery-item:hover { transform: scale(1.05); } 
.gallery-item img { width: 100%; height: 100%; object-fit: cover; } 
/* Фотогалерея .gallery-item { height: 200px; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.15); transition: transform 0.3s ease; } .gallery-item:hover { transform: scale(1.05); } .gallery-item img { width: 100%; height: 100%; object-fit: cover; }*/ 
.news-img-wrapper { width: 100%; max-height: 350px; /* ограничение высоты */ display: flex; justify-content: center; align-items: center; overflow: hidden; /* если фото слишком большое */ background: #000; /* чтобы вокруг не было белых полос */ } 
.news-img { max-height: 350px; /* теперь фото не будет слишком высоким */ width: auto; /* сохраняем пропорции */ } 
.carousel-indicators { bottom: -20px; /* опускаем точки ниже блока */ } 
.carousel-indicators [data-bs-target] { background-color: #333; width: 12px; height: 12px; border-radius: 50%; } 
.news-img-wrapper { position: relative; width: 100%; height: 350px; /* фиксированная высота блока */ 
overflow: hidden; display: flex; align-items: center; justify-content: center; }
/* Блюрный фон */ 
.news-img-wrapper::before { content: ""; position: absolute; inset: 0; background-image: var(--bg-img); 

/* получаем из style="" */ background-size: cover; background-position: center; filter: blur(20px); transform: scale(1.2); /* увеличиваем, чтобы не было краёв */ z-index: 1; } 
/* Само фото */ .news-img { position: relative; z-index: 2; /* выше слоя с блюром */ max-height: 100%; max-width: 100%; object-fit: contain; /* фото не режем */ } .gallery-block { width: 100%; max-width: 2250px; /* такой же размер, как у афиш */ margin: 0 auto 40px; padding: 20px; background: #fff; border-radius: 00px; box-shadow: 0 6px 20px rgba(0,0,0,0.1); } 
.gallery-title { font-size: 1.5rem; font-weight: 600; margin-bottom: 20px; text-align: center; } 
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); /* 3 фото в ряд */ gap: 10px; } 

.gallery-item { position: relative; width: 100%; height: 280px; /* одинаковая высота */ border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.15); background-size: cover; background-position: center; } 
.gallery-item::before { content: ""; position: absolute; inset: 0; background: inherit; filter: blur(12px); transform: scale(1.2); z-index: 1; } .gallery-item img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: contain; /* фото целиком */ object-position: center; } #eventsCarousel 
.carousel-item { transition: transform 1s ease-in-out; } #eventsCarousel .card { min-height: 100%; } .poster img { display: block; width: auto; /* не растягиваем по ширине */ height: auto; /* оставляем натуральную высоту */ max-width: 100%; /* но не выходим за границы блока */ margin: 0 auto; border-radius: 10px; transition: transform 0.3s ease; } 
.poster img:hover { transform: scale(1.03); } .poster { text-align: center; padding: 10px; max-width: fit-content; margin: auto; } .custom-carousel-btn { width: 50px; height: 50px; top: 50%; transform: translateY(-50%); background-color: rgba(0, 0, 0, 0.4); border-radius: 50%; border: none; transition: background-color 0.3s ease; z-index: 10; } 


.custom-carousel-btn:hover { background-color: rgba(0, 0, 0, 0.7); } .carousel-control-prev { left: -70px; /* отодвигаем влево */ } .carousel-control-next { right: 70px; /* отодвигаем вправо */ } 
/* 📱 Для мобильных немного ближе */ @media (max-width: 768px) { .carousel-control-prev { left: -30px; } .carousel-control-next { right: 30px; } 
.custom-carousel-btn { width: 40px; height: 40px; } } 


/*-----------*/ 
/* ================================ Главный баннер ================================ */ 
/* ================================ Мобильная адаптация (идеально центрирует) ================================ */ 
@media (max-width: 768px) { header.main-banner { background-size: cover !important; 
/* 🔹 обрезает, но без серых краёв */ background-position: center center !important; } 
header.main-banner h1 { font-size: 1.8rem; line-height: 1.3; } 
header.main-banner p { font-size: 1rem; } } 
/* --- Мобильная версия навбара --- */ @media (max-width: 568px) 
{ .navbar-brand span { display: none; /* скрываем текст */ } 
.navbar-brand img { height: 40px; /* логотип чуть меньше для мобильных */ } } 
.poster img { width: 100%; height: auto; object-fit: contain; 
/* сохраняет пропорции и не обрезает */ max-height: none; 
/* убирает ограничение по высоте */ } 
.carousel-item img { width: 100%; height: auto; object-fit: contain !important; /* ключевая строчка */ max-height: none !important; } @media (max-width: 768px) { 
    .poster img, .carousel-item img { width: 100%; height: auto; object-fit: contain; } } .card-img-top:hover { transform: scale(1.03); transition: transform 0.3s ease; } 
    body { background: url('/images/background_img.png') no-repeat center center fixed; background-size: cover; color: white; /* если нужно, чтобы текст читался */ } 
    h5 { color: #1a1a1a !important; /* насыщенно-тёмный цвет */ text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, 1px 1px 0 #ffffff; /* белая обводка */ font-weight: 600; } 
    h2.text-center.mb-5 { color: #111 !important; letter-spacing: 0.5px; }
    a { color: #003366; font-weight: 500; } a:hover { color: #000; text-decoration: underline; } 
    @media (max-width: 768px) { /* более специфичный селектор + !important чтобы перебить Bootstrap и другие правила */ 
    nav.navbar .navbar-brand span, .navbar-brand #brand-text, .navbar-brand .brand-text { display: none !important; visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; } 
    nav.navbar .navbar-brand img, .navbar-brand > img { height: 40px !important; /* подвинь до нужного размера */ width: auto !important; max-height: 40px !important; } /* при желании центрируем логотип и бургер */ 
    .navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; } } .poster-full { max-height: 75vh; /* не больше 75% высоты экрана */ width: auto; /* сохраняет пропорции */ 
    object-fit: contain; /* чтобы не обрезалось */ } 
    /* === Футер всегда внизу === */
    html, body { height: 100%; margin: 0; } 
    body { display: flex; flex-direction: column; } 
    main { flex: 1; /* Контент растягивается, чтобы футер был снизу */ } 
    footer { position: relative; bottom: 0; width: 100%; margin-top: auto; /* Прижимает футер вниз */ } 
    .news-item { transition: transform 0.2s ease, box-shadow 0.2s ease; } 
    .news-item:hover { transform: scale(1.01); box-shadow: 0 4px 12px rgba(0,0,0,0.1); } 
    .news-img { flex-shrink: 0; } /* === Стили для страницы Новостей (news list) === */ 
    /* контейнер заголовка + поиск */ 
    .main-news-header { display: flex; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap; margin-bottom: 1rem; } 
    /* Поисковая форма */ 
    .main-news-header form { display: flex; gap: .5rem; align-items: center; } 
    .main-news-header .form-control { min-width: 220px; max-width: 420px; border-radius: 6px; box-shadow: none; } 
    .main-news-header .btn-outline-danger { border-radius: 6px; } 
    /* Список новостей — карточки */ 
    .news-list { display: block; } 
    .news-item { background: #ffffff; border-radius: 12px; padding: 16px; box-shadow: 0 6px 18px rgba(15, 15, 15, 0.05); transition: transform .18s ease, box-shadow .18s ease; overflow: hidden; } 
    .news-item + .news-item { margin-top: 16px; } .news-item:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(10, 10, 10, 0.08); } /* картинка слева */ 
    .news-img { width: 250px; height: 160px; object-fit: cover; border-radius: 8px; flex-shrink: 0; } /* Текстовая часть справа */ 
    .news-item .flex-grow-1 { min-width: 0; /* важно для корректного сжатия flex */ } .news-item h5 { margin: 0 0 6px 0; font-size: 1.05rem; color: #111; } 
    .news-item .text-muted { color: #6c757d !important; } /* Кнопка читать далее выровнена по правому краю */ .news-item .mt-auto { margin-top: auto !important; } 
    /* Адаптивность: на маленьких экранах — картинка сверху, текст снизу */ 
    @media (max-width: 767.98px) { .news-item { display: block; padding: 12px; } 
    .news-item.d-flex { display: block !important; } 
    .news-item .news-img { width: 100%; height: auto; max-height: 420px; margin-bottom: 10px; } .main-news-header { gap: .5rem; } 
    .main-news-header form { width: 100%; justify-content: flex-end; } .main-news-header .form-control { width: 100%; max-width: none; } } 
    /* Мелкие улучшения */ .news-item .d-flex.justify-content-between > small { color: #888; font-size: .85rem; } .news-item p { color: #333; margin-bottom: 0.75rem; line-height: 1.45; } 
    /* Стилизуем кнопку поиска на мобильных чтобы не был слишком узкой */ @media (max-width: 480px) { .main-news-header .btn-outline-danger { padding-left: 10px; padding-right: 10px; } }
    /* Если нужно — можно дополнительно ограничить ширину контента */
.container.main-news-container { max-width: 1100px; } 
/* Убираем лишнюю тень на изображениях в карточках */ 
.news-img, .news-item img { box-shadow: none; } 
.navbar { transition: all 0.3s ease-in-out; } 
.navbar-shrink { padding-top: 0.3rem !important; padding-bottom: 0.3rem !important; background-color: rgba(0, 0, 0, 0.9) !important; } 
.navbar-brand img { transition: all 0.3s ease; } 
.navbar-shrink .navbar-brand img { height: 40px !important; }