@font-face {
    font-family: 'Gabriela';
    src: url('/fonts/Gabriela.woff') format('woff'),
         url('/fonts/gabriela.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto.woff') format('woff'),
         url('/fonts/Roboto.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --lm-dark: #1e1414;
    --lm-dark-2: #241a1a;
    --lm-accent: #ffcc99;
    --lm-orange: #f3871a;
    --lm-more: #eca054;
    --lm-muted: #524a4a;
    --lm-gray-bg: #f2f2f2;
    --lm-head: 'Gabriela', Georgia, serif;
    --lm-body: 'Roboto', Arial, sans-serif;
}

body {
    font-family: var(--lm-body);
    color: #333;
    background: #fff;
}

h1, h2, h3, h4, h5, .font-head {
    font-family: var(--lm-head);
}

a {
    color: var(--lm-muted);
    text-decoration: none;
}

a:hover {
    color: var(--lm-orange);
}

.bg-dark-1 { background: var(--lm-dark); }
.bg-dark-2 { background: var(--lm-dark-2); }
.bg-gray { background: var(--lm-gray-bg); }
.text-accent { color: var(--lm-accent) !important; }

/* Swap the label of a button that toggles a Bootstrap collapse */
[data-bs-toggle='collapse']:not(.collapsed) .if-collapsed,
[data-bs-toggle='collapse'].collapsed .if-expanded {
    display: none;
}

/* ---------------------------------------------------------------
   Header
--------------------------------------------------------------- */
.site-header {
    background: var(--lm-dark);
}

.site-header .header-logo img {
    max-width: 320px;
    width: 100%;
    height: auto;
}

.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.25rem 1.1rem;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    font-family: var(--lm-head);
    font-size: 15px;
    color: #ffffffc7;
    white-space: nowrap;
    padding: 0.35rem 0;
    display: inline-block;
}

.main-menu > li > a:hover,
.main-menu > li.active > a {
    color: var(--lm-accent);
}

.main-menu .has-children > a::after {
    content: '';
    display: inline-block;
    margin-left: 6px;
    border: 4px solid transparent;
    border-top-color: currentColor;
    vertical-align: middle;
}

.main-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #1e1414f2;
    z-index: 1200;
    display: none;
}

.main-menu > li:hover > .sub-menu {
    display: block;
}

.main-menu .sub-menu a {
    display: block;
    padding: 0.4rem 1rem;
    color: #ffffffc7;
    font-size: 14px;
    white-space: normal;
}

.main-menu .sub-menu a:hover {
    color: var(--lm-accent);
    background: #00000040;
}

@media (max-width: 991.98px) {
    .js-main-nav {
        display: none;
    }

    .main-menu {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem 0 0.25rem;
    }

    .main-menu .sub-menu {
        position: static;
        display: block;
        min-width: 0;
        background: transparent;
        padding: 0 0 0.35rem 0.75rem;
    }
}

/* Utility bar: BVI, language, socials, search */
.header-tools .tool-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--lm-accent);
    color: var(--lm-dark);
    font-size: 13px;
    line-height: 1;
}

.header-tools .tool-btn:hover {
    background: #fff;
}

.header-tools .tool-btn img {
    width: 18px;
    height: 18px;
}

.header-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff1f;
    transition: background 0.2s;
}

.header-social a:hover {
    background: var(--lm-accent);
}

.header-social img {
    width: 20px;
    height: 20px;
}

.header-search .form-control {
    background: #ffffff14;
    border: 1px solid #ffffff33;
    color: #fff;
    font-size: 14px;
    border-radius: 20px 0 0 20px;
}

.header-search .form-control::placeholder {
    color: #ffffff80;
}

.header-search .form-control:focus {
    background: #ffffff1f;
    border-color: var(--lm-accent);
    color: #fff;
    box-shadow: none;
}

.header-search .btn {
    background: var(--lm-accent);
    color: var(--lm-dark);
    border: 1px solid var(--lm-accent);
    border-radius: 0 20px 20px 0;
}

.menu-toggle {
    background: transparent;
    border: none;
    width: 48px;
    height: 40px;
    position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    position: absolute;
    left: 10px;
    width: 28px;
    height: 4px;
    background: #fff;
    content: '';
}

.menu-toggle span { top: 18px; }
.menu-toggle span::before { top: -9px; left: 0; }
.menu-toggle span::after { top: 9px; left: 0; }

/* ---------------------------------------------------------------
   Decorative section ornament
--------------------------------------------------------------- */
.section-ornament-band {
    position: relative;
    height: 58px;
    background: url('/images/header-bg.png') repeat 0 0 / 54px 14px;
    opacity: 0.35;
    margin-bottom: 10px;
}

.section-ornament-band.ornament-dim {
    opacity: 0.08;
}

.section-ornament-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-dark-1 .section-ornament-icon,
.bg-dark-2 .section-ornament-icon {
    background: var(--lm-dark-2);
}

.section-ornament-icon img {
    width: 54px;
    height: 54px;
}

/* ---------------------------------------------------------------
   Headings
--------------------------------------------------------------- */
.box-h1 {
    margin: 30px 0;
    color: #333;
    font-size: 45px;
    text-align: left;
    font-family: var(--lm-head);
}

.box-h1-white {
    color: #fff;
}

.post-h1 {
    margin: 30px 0;
    color: #333;
    font-size: 32px;
    font-family: var(--lm-head);
}

@media (max-width: 767px) {
    .box-h1 { font-size: 30px; }
    .post-h1 { font-size: 24px; }
}

/* ---------------------------------------------------------------
   Buttons
--------------------------------------------------------------- */
.buy-ticket-btn {
    display: inline-block;
    color: #fff;
    background: var(--lm-orange);
    border: 1px solid var(--lm-orange);
    padding: 12px 26px;
    border-radius: 15px;
    font-size: 15px;
}

.buy-ticket-btn:hover {
    background: #fff;
    border-color: #fff;
    color: var(--lm-orange);
    text-decoration: none;
}

.more-btn {
    display: inline-block;
    color: var(--lm-more);
    border: 1px solid var(--lm-more);
    padding: 13px 30px;
    border-radius: 15px;
    background: transparent;
    font-family: var(--lm-head);
}

.more-btn:hover {
    background: var(--lm-more);
    color: #fff;
    text-decoration: none;
}

/* Age rating circle */
.ico-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 6px;
    border-radius: 50%;
    background: var(--lm-accent);
    color: var(--lm-dark) !important;
    font-family: var(--lm-head);
    font-size: 13px;
    line-height: 1;
}

.ico-pushkin {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--lm-accent) url('/images/cart-label.png') no-repeat center / contain;
    vertical-align: middle;
}

.playbill-card-poster {
    position: relative;
}

.playbill-card .available-by-cart {
    position: absolute;
    bottom: -20px;
    right: -10px;
    max-width: 88px;
    z-index: 100;
    /* pointer-events: none; */
}

.playbill-card-title {
    font-size: 20px;
    line-height: 1.35;
    margin-top: 4px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .playbill-card .available-by-cart {
        max-width: 60px;
    }
}

/* ---------------------------------------------------------------
   Cards with hover zoom (news, repertoire)
--------------------------------------------------------------- */
.card-media {
    display: block;
    overflow: hidden;
    position: relative;
    background: #e9e9e9;
}

.card-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.card-media:hover > img {
    transform: scale(1.08);
}

.ratio-poster {
    aspect-ratio: 3 / 2;
}

.ratio-portrait {
    aspect-ratio: 3 / 4;
}

.entry-date {
    color: #9a9a9a;
    font-size: 13px;
}

.entry-title {
    font-family: var(--lm-head);
}

.entry-card .entry-title {
    display: block;
    font-size: 18px;
    color: #333;
    line-height: 1.35;
    margin-top: 4px;
}

.entry-card:hover .entry-title {
    color: var(--lm-orange);
}

.entry-card .entry-meta {
    font-size: 13px;
    color: #8c8c8c;
}

/* ---------------------------------------------------------------
   Playbill (афиша) rows
--------------------------------------------------------------- */
.row-affiche {
    border: 1px solid transparent;
    padding: 15px 0;
    transition: border-color 0.2s;
}

.row-affiche:hover {
    /* border-color: var(--lm-accent); */
}

.affiche-day {
    font-family: var(--lm-head);
    font-size: 22px;
    color: #333;
}

.affiche-weekday {
    font-family: var(--lm-head);
    color: var(--lm-orange);
    font-size: 15px;
}

.affiche-time {
    font-family: var(--lm-head);
    color: #62a744;
    font-size: 18px;
}

.affiche-scene,
.affiche-duration {
    font-size: 13px;
    color: #8c8c8c;
}

.status {
    text-transform: uppercase;
    font-family: var(--lm-head);
    color: var(--lm-accent);
    font-size: 13px;
}

.playbill-filter {
    display: inline-block;
    margin: 0 10px 10px 0;
    font-family: var(--lm-head);
    text-transform: uppercase;
    font-size: 14px;
    color: var(--lm-muted);
    border-bottom: 2px dotted #b9b9b9;
}

.playbill-filter.active,
.playbill-filter:hover {
    color: var(--lm-orange);
    border-bottom-color: var(--lm-orange);
}

.playbill-search::placeholder{
    color: #bdbdbd;
    font-size: 16px;
    font-weight: 100;
    font-style: italic;
    font-family: var(--lm-head);
}

/* ---------------------------------------------------------------
   Owl carousel navigation circles
--------------------------------------------------------------- */
.owl-nav-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--lm-accent);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lm-dark);
    font-size: 20px;
}

.owl-nav-circle:hover {
    background: #fff;
}

.owl-theme .owl-nav button[class*='owl-'] {
    background: var(--lm-accent);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 6px;
    margin: 7px;
    position: absolute;
    top: 45%;
    z-index: 99 !important;
    opacity: 1 !important;
    border:none;
}

.owl-theme .owl-nav button[class*='owl-'] img {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--lm-orange);
    color: var(--lm-dark);
}

.owl-theme .owl-dots .owl-dot.active span {
    background: var(--lm-accent);
}

.js-hero-carousel button.owl-prev {
    left: 125px;
}

.js-hero-carousel button.owl-next {
    right: 125px;
}

.js-playbill-carousel-wrap {
    position: relative;
    padding: 0 70px;
}

.js-playbill-carousel .owl-nav {
    margin-top: 0;
}

.js-playbill-carousel button.owl-prev {
    left: -75px;
}

.js-playbill-carousel button.owl-next {
    right: -75px;
}

.js-playbill-carousel .playbill-carousel-item {
    height: 100%;
}

.js-gallery-carousel-wrap {
    position: relative;
    padding: 0 70px;
}

.js-gallery-carousel .owl-nav {
    margin-top: 0;
}

.js-gallery-carousel button.owl-prev {
    left: -75px;
}

.js-gallery-carousel button.owl-next {
    right: -75px;
}

.js-gallery-carousel .owl-stage img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991.98px) {
    .js-playbill-carousel-wrap,
    .js-gallery-carousel-wrap {
        padding: 0;
    }

    .js-playbill-carousel .owl-nav,
    .js-gallery-carousel .owl-nav {
        position: static;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        margin-top: 0;
    }

    .js-playbill-carousel.owl-theme .owl-nav button.owl-prev,
    .js-playbill-carousel.owl-theme .owl-nav button.owl-next,
    .js-gallery-carousel.owl-theme .owl-nav button.owl-prev,
    .js-gallery-carousel.owl-theme .owl-nav button.owl-next {
        position: static;
        top: auto;
        left: auto !important;
        right: auto !important;
        transform: none;
    }
}

/* ---------------------------------------------------------------
   Hero banner
--------------------------------------------------------------- */
.hero-slide {
    position: relative;
    height: 820px;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;

    background: linear-gradient(-90deg, rgba(30, 20, 20, 0.92) 0%, rgba(30, 20, 20, 0.55) 55%, rgba(30, 20, 20, 0.35) 100%);

}

.hero-slide > .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--lm-head);
    font-size: 52px;
    color: #fff;
    line-height: 1.2;
}

.hero-date {
    font-family: var(--lm-head);
    color: var(--lm-accent);
    font-size: 18px;
}

.hero-meta {
    color: #ffffffb3;
    font-size: 16px;
    line-height: 2;
}

.js-hero-carousel .owl-nav {
    margin-top: 0px;
}

.js-hero-carousel .owl-dots {
    display: none;
    position: absolute;
    bottom: 0;
    margin-left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.js-hero-carousel .owl-theme .owl-dots .owl-dot.active span {
    background: var(--lm-orange);
}

.cassa-box {
    font-family: var(--lm-head);
    color: #fff;
}

.cassa-box .phone {
    font-size: 30px;
    color: #fff;
}

.cassa-box .label {
    font-size: 13px;
    color: #ffffffb3;
}

@media (max-width: 767px) {
    .hero-title { font-size: 34px; }
    .hero-slide { height: 470px; }
    .js-hero-carousel .owl-nav {display: none;}
    .js-hero-carousel .owl-dots {display: block;}
}

/* ---------------------------------------------------------------
   Pagination
--------------------------------------------------------------- */
.pagination {
    justify-content: center;
    flex-wrap: wrap;
}

.pagination .page-link {
    color: var(--lm-muted);
    border: 1px solid var(--lm-accent);
    margin: 2px;
    border-radius: 4px;
    min-width: 34px;
    text-align: center;
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background: var(--lm-accent);
    border-color: var(--lm-accent);
    color: var(--lm-dark);
}

.pagination .page-item.disabled .page-link {
    border-color: #ddd;
    color: #bbb;
}

/* ---------------------------------------------------------------
   Person cards
--------------------------------------------------------------- */
.person-card .person-name {
    font-family: var(--lm-head);
    font-size: 19px;
    color: #333;
    display: block;
    margin-top: 10px;
}

.person-card .person-rank {
    font-size: 13px;
    color: var(--lm-muted);
    display: block;
}

.person-card:hover .person-name {
    color: var(--lm-orange);
}

.person-video-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #21b14c url('/images/videocamera.png') no-repeat center / 22px;
}

/* ---------------------------------------------------------------
   Role credits (репертуар персоны, постановочная группа)
--------------------------------------------------------------- */
.role-credit .role-author,
.role-author {
    font-family: var(--lm-head);
    font-size: 14px;
    color: #333;
}

.role-credit .role-performance {
    display: block;
    font-family: var(--lm-head);
    font-size: 17px;
    color: var(--lm-muted);
    text-decoration: underline;
    margin: 2px 0 4px;
}

.role-credit .role-performance:hover {
    color: var(--lm-orange);
}

.role-credit .role-title {
    font-size: 13px;
    color: #8c8c8c;
}

/* ---------------------------------------------------------------
   Staff accordion (Лица театра)
--------------------------------------------------------------- */
.staff-accordion .accordion-button {
    font-family: var(--lm-head);
    font-size: 16px;
    background: #f7f7f7;
    color: #333;
}

.staff-accordion .accordion-button:not(.collapsed) {
    background: #0d6efd;
    color: #fff;
    box-shadow: none;
}

.staff-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

/* ---------------------------------------------------------------
   WYSIWYG content from WordPress
--------------------------------------------------------------- */
.entry-content {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

.entry-content img {
    max-width: 100%;
    height: auto;
}

.entry-content img.aligncenter {
    display: block;
    margin: 15px auto;
}

.entry-content img.alignleft {
    float: left;
    margin: 5px 20px 15px 0;
}

.entry-content img.alignright {
    float: right;
    margin: 5px 0 15px 20px;
}

.entry-content a {
    color: #3366ff;
    text-decoration: underline;
}

.entry-content table {
    width: 100%;
    margin-bottom: 1rem;
}

.entry-content iframe {
    max-width: 100%;
}

/* ---------------------------------------------------------------
   Partners carousel + footer
--------------------------------------------------------------- */
.partners-strip {
    background: var(--lm-gray-bg);
    padding: 30px 0;
}

.js-partners-carousel .owl-item {
    display: flex;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 88px;
    padding: 8px;
    background: #fff;
}

.partner-item-body {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
}

.partner-item-body img,
.partner-item > img {
    max-height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.js-partners-carousel-wrap {
    position: relative;
    padding: 0 70px;
}

.js-partners-carousel .owl-nav {
    margin-top: 0;
}

.js-partners-carousel button.owl-prev {
    left: -75px;
}

.js-partners-carousel button.owl-next {
    right: -75px;
}

.js-partners-carousel.owl-theme .owl-nav button[class*='owl-'] {
    background: #fff;
    color: var(--lm-dark);
    top: 10px;
}

.js-partners-carousel.owl-theme .owl-nav button[class*='owl-']:hover {
    background: var(--lm-orange);
    color: var(--lm-dark);
}




.site-footer {
    background: var(--lm-dark-2);
    color: #ffffffc2;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer a {
    color: #ffffffc2;
}

.site-footer a:hover {
    color: var(--lm-accent);
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    line-height: 1.5;
    margin-bottom: 6px;
}

.footer-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff1f;
    margin-left: 6px;
}

.footer-social a:hover {
    background: var(--lm-accent);
}

.footer-social img {
    width: 18px;
    height: 18px;
}

/* ---------------------------------------------------------------
   Guestbook
--------------------------------------------------------------- */
.gb-entry {
    padding: 14px 0;
    border-bottom: 1px solid #ededed;
    font-size: 14px;
}

.gb-entry .gb-author {
    font-weight: 700;
    color: var(--lm-orange);
}

.contact-item {
    margin-bottom: 1.75rem;
}

.contact-item .contact-name {
    font-family: var(--lm-head);
    font-size: 18px;
    margin-bottom: 4px;
}

.contact-item .contact-meta {
    font-size: 15px;
    color: #444;
}

.gb-entry .gb-date {
    color: #9a9a9a;
    font-size: 13px;
}

.gb-entry .gb-content {
    margin-top: 6px;
    color: #444;
    line-height: 1.6;
    white-space: pre-line;
}

.gb-entry .gb-reply {
    margin-top: 10px;
    padding: 10px 14px;
    background: #faf7f3;
    border-left: 3px solid var(--lm-accent);
}
