@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-dark: #B8860B;
    --gold-light: #F3E5AB;
    --dark: #0A0A0A;
    --dark-bg: #010101;
    --dark-card: #0C0C0C;
    --dark-surface: #121212;
    --gray: #9B9B9B;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: #fff;
    line-height: 1.6;
}

/* ========== HEADER ========== */
header {
    background: rgba(1, 1, 1, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    padding: 0.8rem 2rem;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(1, 1, 1, 0.98);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.logo img {
    height: 50px;
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 8px var(--gold));
}

.logo-text h1 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.3;
    transition: text-shadow 0.3s ease;
}

.logo:hover .logo-text h1 {
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.logo-text p {
    font-size: 0.65rem;
    color: rgba(212, 175, 55, 0.7);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: var(--gold);
}

.social-nav {
    display: flex;
    gap: 0.8rem;
    margin-left: 1rem;
    align-items: center;
}

.social-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    transition: transform 0.3s ease;
}

.social-nav a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.social-nav a:hover {
    transform: translateY(-3px);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: 0.3s;
}

/* ========== SEARCH ========== */
.search-wrapper {
    position: relative;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.search-icon {
    width: 20px;
    height: 20px;
    color: #d4af37;
    cursor: pointer;
    z-index: 2;
}

.search-box input {
    width: 0;
    opacity: 0;
    margin-left: 10px;
    padding: 6px 10px;
    border-radius: 20px;
    border: none;
    outline: none;
    background: #111;
    color: #fff;
    transition: all 0.3s ease;
}

.search-box:hover input,
.search-box input:focus {
    width: 200px;
    opacity: 1;
}

.search-results {
    position: absolute;
    top: 40px;
    right: 0;
    width: 260px;
    background: #0b0b0b;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    overflow: hidden;
    display: none;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.search-item {
    padding: 10px 14px;
    font-size: 14px;
    color: #eee;
    cursor: pointer;
    transition: 0.2s;
}

.search-item:hover {
    background: rgba(212, 175, 55, 0.1);
}

.highlight {
    color: #d4af37;
    font-weight: 600;
}

.search-highlight {
    background: var(--gold);
    color: #000;
    padding: 0 2px;
    border-radius: 3px;
    font-weight: 600;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/assets/images/background.jpg') center/cover no-repeat;
    opacity: 0.25;
    filter: blur(3px);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) -150%, rgba(0,0,0,0.9) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 30px;
}

.hero-title {
    font-size: clamp(1.2rem, 6vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 1rem auto;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    background: rgba(0,0,0,0.3);
    padding: 6px 14px;
    border-radius: 30px;
}

.hero-location svg {
    fill: var(--gold);
}

.hero-contacts {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: clamp(0.7rem, 3vw, 0.85rem);
    color: #fff;
    transition: all 0.3s;
}

.hero-contact-item:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.hero-contact-item svg {
    fill: var(--gold);
}

.hero-carousel-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.hero-carousel-container {
    overflow: hidden;
    border-radius: 20px;
}

.hero-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease;
}

.hero-carousel-slide {
    flex: 0 0 calc(20% - 16px);
    cursor: pointer;
}

.hero-event-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: var(--dark-card);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.hero-event-card::after {
    content: 'ПОДРОБНЕЕ';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    border-radius: 16px;
}

.hero-carousel-slide:hover .hero-event-card::after {
    opacity: 1;
}

.hero-carousel-slide:hover .hero-event-card {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.4), 0 15px 35px rgba(0,0,0,0.5);
}

.hero-event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.7), transparent);
    padding: 15px 10px 12px;
    z-index: 2;
}

.hero-carousel-slide:hover .hero-event-overlay {
    opacity: 0.4;
}

.hero-event-badges {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.hero-event-age,
.hero-event-price {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-event-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    margin-top: 6px;
    line-height: 1.3;
}

.hero-event-venue {
    font-size: 0.65rem;
    color: rgba(212, 175, 55, 0.8);
    margin-top: 5px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 38px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-btn:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-50%) scale(1.05);
}

/* ========== CONTAINER & SECTIONS ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(1.3rem, 5vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
    letter-spacing: -1px;
}

.section-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 0 auto;
}

.section-subtitle {
    margin-top: 0.8rem;
    color: var(--gray);
    font-size: 0.85rem;
}

/* ========== EVENTS ========== */
.events-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.event-card {
    background: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.event-card::after {
    content: 'ПОДРОБНЕЕ';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(3px);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 3;
}

.event-card:hover::after {
    opacity: 1;
}

.event-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.02);
}

.event-badges {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    gap: 5px;
    z-index: 2;
}

.event-age, .event-price {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.event-info {
    padding: 0.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-info h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #fff;
    line-height: 1.3;
}

.event-card:hover .event-info h3 {
    color: var(--gold-light);
}

.event-info p {
    font-size: 0.7rem;
    color: var(--gray);
    margin-bottom: 0.3rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-date-info,
.event-time-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--gray);
    margin-bottom: 6px;
}

.event-date-info svg,
.event-time-info svg {
    width: 12px;
    height: 12px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.event-venue {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--gold);
    margin-bottom: 6px;
    font-weight: 500;
}

.event-venue svg {
    width: 12px;
    height: 12px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.event-link {
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
    padding: 0;
    margin-top: auto;
    width: fit-content;
}

.event-link:hover {
    gap: 8px;
    color: var(--gold-light);
}

/* ========== VENUES ========== */
.venues-section,
.gallery-section,
.contacts-section {
    padding: 50px 0;
    background: var(--dark-bg);
    position: relative;
}

.venues-section::before,
.gallery-section::before,
.contacts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.2rem;
}

.venue-card {
    background: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s;
    cursor: pointer;
}

.venue-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.venue-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.venue-card:hover .venue-image img {
    transform: scale(1.02);
}

.venue-info {
    padding: 0.8rem;
}

.venue-info h3 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    color: var(--gold);
}

.venue-info p {
    font-size: 0.7rem;
    color: var(--gray);
    margin-bottom: 0.3rem;
}

.venue-marker {
    display: inline-block;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.5);
    background: rgba(212, 175, 55, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
}

/* ========== VENUE MODAL ========== */
.venue-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(16px);
    z-index: 2100;
    align-items: center;
    justify-content: center;
}

.venue-modal.show {
    display: flex;
}

.venue-modal-content {
    max-width: 1000px;
    width: 90%;
    background: rgba(12, 12, 12, 0.98);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.venue-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-modal-close:hover {
    background: var(--gold);
    color: #000;
    transform: rotate(90deg);
}

.venue-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.venue-modal-gallery {
    position: relative;
    background: #000;
    min-height: 400px;
    overflow: hidden;
}

.venue-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.venue-carousel-slides {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.venue-carousel-slide {
    flex-shrink: 0;
    width: 100%;
    height: 400px;
    position: relative;
}

.venue-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-carousel-prev,
.venue-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.venue-carousel-prev { left: 15px; }
.venue-carousel-next { right: 15px; }

.venue-carousel-prev:hover,
.venue-carousel-next:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.venue-carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 15;
    padding: 8px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    width: fit-content;
    margin: 0 auto;
}

.venue-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.venue-carousel-dot:hover {
    background: var(--gold);
    transform: scale(1.2);
}

.venue-carousel-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--gold);
}

.venue-modal-info {
    padding: 28px;
    background: var(--dark-card);
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    max-height: 400px;
}

.venue-modal-info h2 {
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.venue-modal-address {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 0.9rem;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.venue-modal-address svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.venue-modal-desc {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.venue-modal-contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    margin-top: 8px;
}

.venue-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    font-size: 0.85rem;
    transition: all 0.3s;
}

.venue-contact-item:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.venue-contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    flex-shrink: 0;
}

/* ========== GALLERY ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-card {
    background: var(--dark-card);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    aspect-ratio: 1 / 1;
    position: relative;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.02);
}

.gallery-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    pointer-events: none;
}

.badge-photo {
    background: rgba(0,0,0,0.6);
    color: var(--gold);
}

.badge-video {
    background: rgba(212, 175, 55, 0.8);
    color: #000;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 0.8rem;
    transform: translateY(100%);
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* ========== CONTACTS ========== */
.contacts-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, var(--dark-card), var(--dark-surface));
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
    transition: left 0.5s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s;
}

.contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.contact-card:hover .contact-card-icon svg {
    fill: #000;
}

.contact-card-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--gold);
    transition: all 0.3s;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.contact-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.4;
}

.contacts-map-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.map-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 380px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s;
}

.map-container:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    pointer-events: none;
    z-index: 1;
    border-radius: 24px;
}

/* ========== FOOTER ========== */
footer {
    background: linear-gradient(180deg, var(--dark-card), var(--dark-bg));
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem 2rem 1.5rem;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-logo img {
    height: 45px;
}

.footer-logo-text h2 {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.3;
}

.footer-logo-text p {
    font-size: 0.55rem;
    color: rgba(212, 175, 55, 0.7);
    letter-spacing: 2px;
}

.footer-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-info h4 {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.footer-info p {
    font-size: 0.7rem;
    color: var(--gray);
    margin-bottom: 0.1rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 1.5rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.65rem;
}

/* ========== MODAL COMMON ========== */
.modal,
.gallery-modal,
.news-modal,
.filter-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(16px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal.show,
.gallery-modal.show,
.news-modal.show,
.filter-modal.show {
    display: flex;
    opacity: 1;
}

.modal-content,
.gallery-modal-content,
.news-modal-content,
.filter-modal-container {
    max-width: 850px;
    width: 90%;
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.modal.show .modal-content,
.gallery-modal.show .gallery-modal-content,
.news-modal.show .news-modal-content,
.filter-modal.show .filter-modal-container {
    transform: scale(1);
}

.modal-close,
.gallery-modal-close,
.news-modal-close,
.filter-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover,
.gallery-modal-close:hover,
.news-modal-close:hover,
.filter-modal-close:hover {
    background: var(--gold);
    color: #000;
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image {
    min-height: 320px;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 1.2rem;
}

.modal-info h2 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.modal-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.08);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    color: #fff;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-info p {
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.modal-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* ========== GALLERY MODAL (CAROUSEL + VIDEO) ========== */
.gallery-modal {
    z-index: 2300;
}

.gallery-modal-content {
    max-width: 900px;
}

.gallery-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.gallery-carousel-container {
    position: relative;
    width: 100%;
    background: #000;
    min-height: 400px;
    overflow: hidden;
}

.gallery-carousel-slides {
    display: flex;
    transition: transform 0.4s ease;
    height: 100%;
}

.gallery-carousel-slide {
    flex: 0 0 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    min-height: 400px;
}

.gallery-carousel-slide img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.gallery-carousel-slide.video-slide iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
}

.gallery-carousel-prev,
.gallery-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.gallery-carousel-prev:hover,
.gallery-carousel-next:hover {
    background: var(--gold);
    color: #000;
}

.gallery-carousel-prev { left: 16px; }
.gallery-carousel-next { right: 16px; }

.gallery-carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.gallery-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.2s;
}

.gallery-carousel-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 5px;
}

.gallery-modal-info {
    padding: 1.5rem;
}

.gallery-modal-info h2 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.gallery-modal-date {
    color: var(--gray);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.gallery-modal-info p {
    color: var(--gray);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* ========== NEWS PANEL ========== */
.news-panel {
    position: fixed;
    right: -400px;
    top: 0;
    height: 100vh;
    width: 400px;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: flex;
    pointer-events: none;
}

.news-panel.open {
    right: 0;
}

.news-tab {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 30px 0 0 30px;
    cursor: pointer;
    pointer-events: auto;
    padding: 20px 8px;
    text-align: center;
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
}

.news-tab:hover {
    transform: translateY(-50%) scale(1.05);
    width: 65px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.news-tab-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #000;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
}

.news-tab-icon svg {
    stroke: #000;
    width: 28px;
    height: 28px;
}

.news-tab-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.news-content {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(5, 5, 5, 0.98));
    backdrop-filter: blur(20px);
    width: 100%;
    height: 100%;
    border-left: 2px solid rgba(212, 175, 55, 0.4);
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    overflow-x: hidden;
}

.news-header {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(212, 175, 55, 0.05);
    flex-shrink: 0;
}

.news-header h3 {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.news-close {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-close:hover {
    background: var(--gold);
    color: #000;
    transform: rotate(90deg);
}

.news-list {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.news-list::-webkit-scrollbar {
    width: 4px;
}

.news-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.news-list::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

.news-item {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 14px;
    display: flex;
    gap: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.news-item.pinned {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-left: 3px solid var(--gold);
}

.news-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(-5px);
    border-color: rgba(212, 175, 55, 0.4);
}

.news-item-image {
    width: 75px;
    height: 75px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: #1a1a1a;
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.news-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.pinned-badge {
    font-size: 0.6rem;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.2);
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-block;
    white-space: nowrap;
}

.news-item-date {
    font-size: 0.65rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.news-item-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
}

.news-item-preview {
    font-size: 0.7rem;
    color: var(--gray);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
}

.news-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    flex-shrink: 0;
}

.news-all-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.news-all-link:hover {
    letter-spacing: 1px;
}

.news-empty {
    text-align: center;
    padding: 40px;
    color: var(--gray);
}

/* ========== NEWS MODAL ========== */
.news-modal {
    z-index: 2200;
}

.news-modal-content {
    max-width: 95vw;
    width: auto;
    max-height: 95vh;
    overflow-y: auto;
}

.news-modal-body {
    display: flex;
    flex-direction: column;
}

.news-modal-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.news-modal-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

.news-modal-video {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    min-height: 80vh;
}

.news-modal-video iframe:not([src*="instagram"]) {
    width: 90%;
    height: 70vh;
    border: none;
    border-radius: 12px;
}

.news-modal-video iframe[src*="instagram"] {
    width: auto !important;
    height: 90vh !important;
    max-width: 95vw !important;
    aspect-ratio: 9/16;
    border-radius: 0;
}

.news-modal-info {
    padding: 24px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.news-modal-info h2 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
    word-break: break-word;
}

.news-modal-date {
    color: var(--gray);
    font-size: 0.8rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.news-modal-info p {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.news-modal-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.news-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* ========== FILTERS ========== */
.filter-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(12, 12, 12, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 40px;
    padding: 10px 24px;
    margin: 0 auto 20px;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
}

.filter-trigger:hover {
    border-color: var(--gold);
    transform: translateY(-1px);
    background: rgba(212, 175, 55, 0.08);
}

.filter-trigger svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
}

.filter-trigger span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.filter-modal-container {
    max-width: 680px;
}

.filter-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(212, 175, 55, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.filter-modal-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.filter-modal-body {
    padding: 20px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
    padding-left: 10px;
}

.filter-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-card {
    flex: 1;
    min-width: 70px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 14px;
    padding: 10px 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.filter-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.filter-card.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border-color: var(--gold);
}

.filter-card-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 6px;
}

.filter-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    transition: stroke 0.25s;
}

.filter-card-label {
    font-size: 0.65rem;
    font-weight: 500;
    color: #ccc;
    transition: color 0.25s;
}

.filter-card.active .filter-card-label {
    color: var(--gold);
}

.price-slider-wrapper {
    padding: 5px 0;
}

.price-slider-input {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.8));
    border-radius: 4px;
    outline: none;
}

.price-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    transition: transform 0.2s;
}

.price-slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.price-value {
    text-align: center;
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    display: inline-block;
    width: auto;
    padding: 4px 16px;
    border-radius: 30px;
}

.filter-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.filter-btn-apply {
    flex: 1;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 40px;
    padding: 10px;
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn-apply:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.filter-btn-reset {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 40px;
    padding: 10px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn-reset:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-1px);
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.filter-tag {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 30px;
    padding: 4px 14px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.filter-tag:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.12);
}

.filter-tag span {
    cursor: pointer;
    font-size: 12px;
    color: #888;
    transition: color 0.2s;
}

.filter-tag span:hover {
    color: #ff6b6b;
}

/* ========== COMPACT CALENDAR ========== */
.compact-calendar {
    background: linear-gradient(135deg, rgba(12, 12, 12, 0.95), rgba(8, 8, 8, 0.98));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    padding: 1rem;
    margin: 1.5rem 0;
    width: 100%;
    transition: all 0.3s;
}

.compact-calendar:hover {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.compact-calendar-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.compact-calendar-header span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    min-width: 120px;
    text-align: center;
    letter-spacing: 0.5px;
}

.compact-calendar-nav {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    color: var(--gold);
    font-size: 1rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compact-calendar-nav:hover {
    background: var(--gold);
    color: #000;
    transform: scale(1.05);
    border-color: transparent;
}

.compact-calendar-two-columns {
    display: flex;
    gap: 1.2rem;
}

.compact-calendar-left {
    flex: 1;
    min-width: 0;
}

.compact-calendar-right {
    flex: 1.5;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 0.8rem;
    max-height: 380px;
    overflow-y: auto;
}

.compact-calendar-right-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.8rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compact-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.compact-calendar-day-header {
    font-size: 0.55rem;
    text-align: center;
    padding: 4px 2px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
}

.compact-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 500;
    transition: all 0.2s;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.compact-calendar-day:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.02);
}

.compact-calendar-day.has-event {
    color: var(--gold);
    font-weight: 700;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.compact-calendar-day.selected {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    border-color: transparent;
    font-weight: 700;
}

.compact-calendar-day.empty {
    background: transparent;
    opacity: 0.3;
    cursor: default;
}

.compact-calendar-event {
    display: flex;
    gap: 1rem;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    margin-bottom: 0.8rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.compact-calendar-event::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.4s;
}

.compact-calendar-event:hover::before {
    left: 100%;
}

.compact-calendar-event:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
    border-color: rgba(212, 175, 55, 0.35);
}

.compact-calendar-event-image {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.compact-calendar-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.compact-calendar-event:hover .compact-calendar-event-image img {
    transform: scale(1.05);
}

.compact-calendar-event-image::after {
    content: 'ПОДРОБНЕЕ';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(3px);
    color: var(--gold);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 12px;
}

.compact-calendar-event:hover .compact-calendar-event-image::after {
    opacity: 1;
}

.compact-calendar-event-content {
    flex: 1;
    min-width: 0;
}

.compact-calendar-event-time {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.compact-calendar-event-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #fff;
    line-height: 1.3;
}

.compact-calendar-event-desc {
    font-size: 0.65rem;
    color: var(--gray);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
    margin-bottom: 0.3rem;
}

.compact-calendar-event-venue {
    font-size: 0.6rem;
    color: var(--gold);
    margin: 3px 0;
}

.compact-calendar-event-details {
    display: flex;
    gap: 0.6rem;
    font-size: 0.6rem;
    color: var(--gray);
    margin-top: 0.2rem;
}

.compact-calendar-placeholder {
    text-align: center;
    padding: 1.5rem;
    color: var(--gray);
    font-size: 0.7rem;
}

/* ========== EMPTY STATE ========== */
.empty-state {
    text-align: center;
    padding: 2rem;
    background: var(--dark-card);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.empty-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.8rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
}

.empty-title {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.empty-text {
    color: var(--gray);
    font-size: 0.75rem;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ========== RESPONSIVE ========== */
@media (min-width: 993px) and (max-width: 1200px) {
    .container, .events-container { padding: 0 1.5rem; }
    .hero-carousel-slide { flex: 0 0 calc(25% - 15px); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 769px) and (max-width: 992px) {
    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-carousel-slide { flex: 0 0 calc(33.333% - 14px); }
    .hero-title { font-size: 2rem; }
    .contacts-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    header { padding: 0.5rem 1rem; }
    .logo img { height: 40px; }
    .logo-text h1 { font-size: 0.85rem; }
    .logo-text p { font-size: 0.55rem; }
    .burger-menu { display: flex; }
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        transition: left 0.3s ease;
        gap: 1.5rem;
        overflow-y: auto;
        z-index: 999;
    }
    .nav-links.active { left: 0; }
    .social-nav { margin-top: 1rem; justify-content: center; margin-left: 0; }
    .hero-title { font-size: 1.6rem; }
    .hero-carousel-wrapper { padding: 0 20px; }
    .hero-carousel-slide { flex: 0 0 calc(50% - 10px); }
    .hero-contacts { flex-direction: column; align-items: center; gap: 8px; }
    .scroll-indicator { display: none; }
    .carousel-btn { width: 34px; height: 34px; font-size: 1rem; background: rgba(0, 0, 0, 0.8); }
    .carousel-btn.prev { left: 5px; }
    .carousel-btn.next { right: 5px; }
    .container, .events-container { padding: 0 1rem; }
    .section-title { font-size: 1.6rem; }
    .events-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 0.8rem; }
    .venues-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .contacts-cards { grid-template-columns: 1fr; gap: 1rem; }
    .map-container { height: 280px; }
    footer { padding: 1.5rem 1rem 1rem; }
    .footer-content { flex-direction: column; text-align: center; align-items: center; }
    .footer-logo { justify-content: center; }
    .footer-info { justify-content: center; gap: 1.5rem; text-align: center; }
    .venue-modal-content { width: 95%; max-height: 90vh; overflow-y: auto; }
    .venue-modal-body { grid-template-columns: 1fr; }
    .venue-modal-gallery { min-height: 300px; }
    .venue-carousel-slide { height: 300px; }
    .venue-modal-info { padding: 20px; max-height: none; }
    .venue-modal-info h2 { font-size: 1.3rem; }
    .venue-carousel-prev, .venue-carousel-next { width: 32px; height: 32px; font-size: 18px; }
    .modal-content, .gallery-modal-content, .news-modal-content, .filter-modal-container {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    .modal-body, .gallery-modal-body { grid-template-columns: 1fr; }
    .modal-image, .gallery-modal-image { min-height: 200px; }
    .compact-calendar-two-columns { flex-direction: column; gap: 1rem; }
    .compact-calendar-right { max-height: 280px; }
    .compact-calendar-day { font-size: 0.6rem; }
    .compact-calendar-day-header { font-size: 0.5rem; padding: 3px; }
    .compact-calendar-event-image { width: 55px; height: 55px; }
    .compact-calendar-event-title { font-size: 0.75rem; }
    .compact-calendar-event-desc { font-size: 0.6rem; -webkit-line-clamp: 1; }
    .gallery-carousel-container, .gallery-modal-video, .gallery-modal-image { min-height: 280px; }
    .gallery-carousel-slide { min-height: 280px; }
    .gallery-carousel-slide img { height: 280px; }
    .gallery-carousel-prev, .gallery-carousel-next { width: 34px; height: 34px; font-size: 22px; }
    .gallery-modal-info { padding: 1rem; }
    .gallery-modal-info h2 { font-size: 1.1rem; }
    /* News panel responsive */
    .news-panel { width: 85%; right: -85%; }
    .news-tab { left: -45px; width: 45px; padding: 15px 5px; }
    .news-tab-icon svg { width: 22px; height: 22px; }
    .news-tab-icon span { font-size: 10px; }
    .news-item { padding: 12px; gap: 10px; }
    .news-item-image { width: 60px; height: 60px; }
    .news-item-title { font-size: 0.85rem; }
    .news-item-preview { font-size: 0.65rem; -webkit-line-clamp: 2; }
    .news-header h3 { font-size: 1.2rem; }
    .news-modal-content { max-width: 98vw; max-height: 98vh; }
    .news-modal-info { padding: 16px; }
    .news-modal-info h2 { font-size: 1.1rem; }
    .news-modal-info p { font-size: 0.8rem; }
    .news-modal-image { max-height: 300px; }
    .news-modal-image img { max-height: 300px; }
    .news-modal-video { min-height: 70vh; }
    .news-modal-video iframe[src*="instagram"] { height: 85vh !important; }
    .news-modal-video iframe:not([src*="instagram"]) { height: 50vh; }
    .news-modal-btn { white-space: normal; text-align: center; }
    .news-all-link { white-space: normal; }
    .news-item-date { white-space: normal; }
    /* Filter responsive */
    .filter-modal-body { padding: 16px; }
    .filter-cards { gap: 6px; }
    .filter-card { min-width: 55px; padding: 6px 3px; }
    .filter-card-icon { width: 24px; height: 24px; }
    .filter-card-label { font-size: 0.55rem; }
    .filter-buttons { gap: 8px; }
    .filter-btn-apply, .filter-btn-reset { padding: 8px; font-size: 0.7rem; }
    .filter-tags { gap: 6px; }
    .filter-tag { padding: 3px 12px; font-size: 0.65rem; }
    .filter-trigger { padding: 8px 18px; margin: 0 auto 15px; }
    .filter-trigger span { font-size: 0.75rem; }
    .modal-meta { gap: 8px; }
    .modal-meta span { font-size: 0.65rem; padding: 4px 10px; }
    .event-venue, .event-time-info, .event-date-info { font-size: 0.6rem; }
    /* Disable hover effects on mobile */
    .event-card:hover, .gallery-card:hover, .venue-card:hover, .contact-card:hover { transform: none; }
    .event-card:active, .gallery-card:active, .venue-card:active, .contact-card:active { transform: scale(0.98); }
    button, a, .event-card, .gallery-card, .venue-card, .contact-card { touch-action: manipulation; }
    input, select, textarea { font-size: 16px; }
}

@media (max-width: 576px) {
    .container { padding: 0 0.8rem; }
    .hero-title { font-size: 1.3rem; }
    .section-title { font-size: 1.3rem; }
    .hero-carousel-slide { flex: 0 0 100%; }
    .events-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; gap: 0.8rem; }
    .compact-calendar-header span { font-size: 0.75rem; min-width: 100px; }
    .price-slider-input { max-width: 130px; }
    .hero-contact-item { padding: 6px 16px; }
    .modal-meta { flex-direction: column; gap: 6px; }
    .venue-modal-gallery { min-height: 250px; }
    .venue-carousel-slide { height: 250px; }
    .venue-modal-info { padding: 16px; }
    .venue-modal-info h2 { font-size: 1.1rem; }
    .venue-modal-desc { font-size: 0.85rem; }
    .venue-contact-item { font-size: 0.75rem; }
}

/* iOS Safari fixes */
@supports (-webkit-touch-callout: none) {
    .hero-carousel-container {
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    .hero-carousel-track { scroll-snap-type: x mandatory; }
    .hero-carousel-slide { scroll-snap-align: start; }
    .modal, .gallery-modal, .venue-modal, .news-modal, .filter-modal { backdrop-filter: blur(20px); }
    .venue-carousel-slides { -webkit-overflow-scrolling: touch; }
    .venue-carousel-prev, .venue-carousel-next { backdrop-filter: blur(8px); }
}