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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #1a1a1a;
}

.header {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    min-height: 80px;
    padding: 0 80px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    z-index: 150;
}

.header::before {
    display: none;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.logo-container {
    background-color: #8B1A1A;
    min-width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.logo-svg {
    width: 60px;
    height: 60px;
    fill: white;
}

.title {
    color: white;
    font-family: 'Brygada 1918', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-left: 30px;
    position: relative;
    z-index: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
    padding-right: 30px;
    position: relative;
    z-index: 100;
}

.icon-button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: opacity 0.2s;
    border-radius: 2px;
}

.icon-button:hover {
    opacity: 0.7;
}

.icon-button svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
}

.language-selector {
    display: flex;
    align-items: center;
    color: white;
    font-size: 14px;
    gap: 0;
    cursor: pointer;
    transition: opacity 0.2s;
    position: relative;
}

.language-selector:hover {
    opacity: 0.7;
}

.language-selector .arrow-icon {
    width: 64px;
    height: 14px;
    stroke: white;
    stroke-width: 0.5;
    margin-right: -12px;
    transition: transform 0.3s ease, margin-right 0.3s ease;
}

.language-selector.active .arrow-icon {
    transform: scaleX(-1);
    margin-right: -20px;
}

.language-dropdown {
    display: flex;
    align-items: center;
    width: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    margin-left: 8px;
    margin-right: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, width 0.3s ease, margin-right 0.3s ease;
    pointer-events: none;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    width: auto;
    margin-right: 8px;
    transform: translateX(0);
    pointer-events: auto;
}

.language-text {
    display: inline-block;
    font-size: 18px;
    color: white;
}

.language-option {
    padding: 0;
    cursor: pointer;
    transition: opacity 0.2s;
    font-size: 18px;
    color: white;
    margin-right: 8px;
}

.language-option:last-child {
    margin-right: 0;
}

.language-option:hover {
    opacity: 0.7;
}

.tickets-link {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
}

.tickets-image {
    cursor: pointer;
    transition: opacity 0.2s;
    height: auto;
    max-height: 45px;
    width: auto;
}

.tickets-image:hover {
    opacity: 0.7;
}

.menu-icon {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 4px 0;
    position: relative;
    z-index: 100;
    background: transparent;
    border: none;
}

.menu-icon span {
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s;
}

.menu-icon:hover span {
    opacity: 0.7;
}

.menu-icon.active {
    display: none;
}

.menu-close-icon {
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: opacity 0.2s;
    position: relative;
    z-index: 150;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
}

.menu-close-icon:hover {
    opacity: 0.7;
}

.menu-close-icon svg {
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.mobile-menu.open ~ .header .menu-close-icon,
.header .menu-close-icon[style*="flex"] {
    z-index: 150;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 100;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding-top: 120px;
    padding-left: 80px;
}

.mobile-menu.open {
    right: 0;
}

.menu-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.menu-item {
    margin-bottom: 40px;
    position: relative;
}

.menu-link {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.2s;
    display: block;
    cursor: pointer;
}

.menu-link:hover {
    opacity: 0.7;
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    position: absolute;
    left: 400px;
    top: 0;
    white-space: nowrap;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

.menu-item.active .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
    height: auto;
    overflow: visible;
}

.submenu-item {
    margin-bottom: 20px;
}

.submenu-link {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: opacity 0.2s, color 0.2s;
    display: block;
}

.submenu-link:hover {
    opacity: 1;
    color: rgba(255, 255, 255, 1);
}

.mobile-language-selector {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 80px;
}

.mobile-language-option {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: opacity 0.2s, color 0.2s;
    text-transform: uppercase;
}

.mobile-language-option:hover {
    opacity: 1;
    color: rgba(255, 255, 255, 1);
}

.mobile-language-option.active {
    color: rgba(255, 255, 255, 1);
    opacity: 1;
}

.video-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .header {
        padding: 0 20px;
        justify-content: space-between;
    }

    .title {
        display: none;
    }

    .language-selector {
        display: none;
    }

    .header-right {
        gap: 15px;
        padding-right: 0;
        margin-left: 0;
    }

    .mobile-menu {
        padding-left: 20px;
        padding-top: 100px;
    }

    .menu-link {
        font-size: 20px;
    }

    .mobile-language-selector {
        margin-top: 40px;
        gap: 15px;
    }

    .mobile-language-option {
        font-size: 16px;
    }

    .submenu {
        left: 0;
        position: relative;
        margin-top: 20px;
        margin-left: 0;
    }

    .menu-item.active .submenu {
        transform: translateX(0);
    }
}

/* Featured Section */
.featured-section {
    position: relative;
    z-index: 10;
    padding: 100px 80px;
    background: white;
}

.featured-title {
    font-family: 'Brygada 1918', serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: left;
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-wrapper {
    flex: 1;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
}

.slider-slide {
    min-width: calc(80% - 20px);
    flex-shrink: 0;
}

.slide-card {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 0;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 40px 40px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
}

.slide-title {
    font-family: 'Brygada 1918', serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.3;
    color: white;
    margin-bottom: 20px;
}

.slide-description {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    max-width: 60%;
    flex: 1;
}

.slide-text-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 30px;
}

.slide-button {
    display: inline-block;
    padding: 12px 24px;
    background: #8B1A1A;
    color: white;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
    flex-shrink: 0;
    align-self: flex-end;
}

.slide-button:hover {
    background: #a02020;
}

.slider-nav {
    width: 60px;
    height: 60px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
    z-index: 3;
}

.slider-nav:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.slider-nav svg {
    width: 24px;
    height: 24px;
    stroke: #1a1a1a;
}

.slider-prev {
    order: -1;
}

.slider-next {
    order: 1;
}

@media (max-width: 768px) {
    .featured-section {
        padding: 60px 20px;
    }

    .featured-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .slider-container {
        position: relative;
        display: block;
        width: 100%;
    }

    .slider-nav {
        display: none !important;
    }

    .slider-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        width: 100%;
        margin: 0;
        padding: 0 20px 10px;
    }

    .slider-wrapper::-webkit-scrollbar {
        height: 6px;
        display: block;
    }

    .slider-wrapper::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .slider-wrapper::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 3px;
    }

    .slider-wrapper::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    .slider-track {
        display: flex !important;
        flex-direction: row;
        gap: 20px;
        transform: none !important;
        width: max-content;
        min-width: 100%;
    }

    .slider-slide {
        min-width: calc(85vw - 40px);
        width: calc(85vw - 40px);
        flex-shrink: 0;
        scroll-snap-align: start;
        display: block;
    }

    .slide-card {
        height: 500px;
    }

    .slide-content {
        padding: 40px 20px 30px;
    }

    .slide-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .slide-description {
        font-size: 14px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .slide-text-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .slide-button {
        align-self: flex-start;
    }
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 60px 80px;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 100%;
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.footer-logo-main {
    flex-shrink: 0;
}

.logo-muve {
    height: 100px;
    width: auto;
    display: block;
}

.footer-logo-city {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 10px;
}

.city-logo-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    white-space: nowrap;
}

.city-logo-crest {
    width: 70px;
    height: 70px;
    border: 2px solid white;
    border-radius: 50%;
    background: white;
    position: relative;
    flex-shrink: 0;
}

.city-logo-crest::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
}

.city-logo-crest::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
}

.footer-copyright {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.footer-link {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-link:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px;
    }

    .footer-logos {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .logo-muve {
        height: 60px;
    }

    .footer-copyright {
        max-width: 100%;
        text-align: center;
    }

    .footer-copyright p {
        margin-bottom: 5px;
    }

    .footer-nav {
        align-items: center;
        margin-left: 0;
        text-align: center;
    }
}

/* Picture Gallery Page */
.page-content {
    position: relative;
    z-index: 10;
    background: white;
    padding-top: 80px;
}

.picture-gallery-section {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 35vh;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    padding: 0;
    text-align: center;
}

.gallery-title {
    font-family: 'Brygada 1918', serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    color: white;
    text-align: center;
    margin: 0;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumbs {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.breadcrumbs span {
    color: #1a1a1a;
}

.gallery-content {
    background: white;
    padding: 80px 0 0 0;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.content-title {
    font-family: 'Brygada 1918', serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 30px;
    margin-top: 0;
}

.content-wrapper p {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.content-wrapper p strong {
    font-weight: 700;
}

.content-wrapper p em {
    font-style: italic;
}

.event-detail-section {
    background: white;
    padding: 0 0 20px 0;
}

.event-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.event-detail-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.event-detail-main {
    flex: 1;
}

.event-detail-location {
    font-family: 'Brygada 1918', serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-top: 0;
}

.event-detail-subtitle {
    font-family: 'Brygada 1918', serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-top: 0;
}

.event-detail-date {
    font-family: 'Brygada 1918', serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 40px;
    margin-top: 0;
}

.event-detail-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #1a1a1a;
}

.event-detail-text p {
    margin-bottom: 30px;
}

.event-detail-text p:last-child {
    margin-bottom: 0;
}

.event-detail-text strong {
    font-weight: 700;
}

.event-detail-sidebar {
    flex: 0 0 300px;
}

.event-info-box {
    background: #1a1a1a;
    padding: 40px;
    border-bottom: 2px solid #8B1A1A;
}

.exhibition-curators {
    margin-bottom: 40px;
}

.exhibition-curator-label,
.exhibition-collaboration-label,
.exhibition-patronage-label {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 5px;
    margin-top: 0;
}

.exhibition-curator-names,
.exhibition-collaboration-name,
.exhibition-patronage-name {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 30px;
    margin-top: 0;
}

.exhibition-patronage-name {
    margin-bottom: 0;
}

.exhibition-bar {
    width: 100%;
    height: 4px;
    background: #8B1A1A;
    margin-top: 20px;
}

.exhibition-tickets-section {
    background: #1a1a1a;
    padding: 80px 0;
    width: 100%;
}

.exhibition-tickets-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.exhibition-tickets-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.exhibition-tickets-left {
    flex: 1;
}

.exhibition-tickets-title {
    font-family: 'Brygada 1918', serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    color: white;
    margin-bottom: 30px;
    margin-top: 0;
}

.exhibition-tickets-date,
.exhibition-tickets-location,
.exhibition-tickets-hours {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: white;
    margin-bottom: 20px;
    margin-top: 0;
}

.exhibition-tickets-booking,
.exhibition-tickets-inclusion {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: white;
    margin-bottom: 30px;
    margin-top: 0;
}

.exhibition-tickets-inclusion {
    margin-bottom: 40px;
}

.exhibition-tickets-inclusion strong {
    font-weight: 700;
}

.exhibition-tickets-accordion {
    margin-top: 40px;
}

.exhibition-tickets-right {
    flex: 0 0 400px;
}

.exhibition-tickets-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.exhibition-tickets-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
}

.exhibition-tickets-table thead {
    background: #1a1a1a;
}

.exhibition-tickets-table th {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: white;
    text-align: left;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.exhibition-tickets-table td {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: white;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.exhibition-tickets-table tbody tr:last-child td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-info-dates,
.event-info-location {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: white;
    margin-bottom: 30px;
}

.event-info-location {
    margin-bottom: 0;
}

.exhibitions-section {
    background: white;
    padding: 5px 0 80px 0;
}

.exhibitions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.exhibitions-title {
    font-family: 'Brygada 1918', serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 20px;
}

.exhibition-item {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.exhibition-image {
    flex: 0 0 500px;
}

.exhibition-image img {
    width: 100%;
    height: auto;
    display: block;
}

.exhibition-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.exhibition-date {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
}

.exhibition-name {
    font-family: 'Work Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
}

.exhibition-button {
    display: inline-block;
    padding: 12px 30px;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.2s;
    align-self: flex-start;
}

.exhibition-button:hover {
    opacity: 0.8;
}

.exhibitions-empty {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: #666;
    margin: 0;
}

.exhibitions-title-spacing {
    margin-top: 80px;
}

.archive-exhibitions {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 80px;
}

.archive-exhibition-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.archive-exhibition-image {
    width: 100%;
    margin-bottom: 20px;
}

.archive-exhibition-image img {
    width: 100%;
    height: auto;
    display: block;
}

.archive-exhibition-date {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0 0 10px 0;
}

.archive-exhibition-name {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
}

.exhibitions-container .breadcrumbs {
    margin-top: 40px;
    margin-bottom: 20px;
}

.collaboration {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.collaboration p {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
    text-align: left;
}

.collaboration strong {
    font-weight: 700;
    color: #1a1a1a;
}

.chamber-section {
    background: #000;
    padding: 20px 0;
    width: 100%;
}

.chamber-section-white + .chamber-section-white {
    padding-top: 0;
}

.chamber-section-white + .chamber-section-white .chamber-container {
    padding-top: 0;
}

.chamber-section-white:not(:last-child) {
    padding-bottom: 0;
}

.chamber-section-white:not(:last-child) .chamber-container {
    padding-bottom: 0;
}

.chamber-section-white {
    background: #fff !important;
}

.chamber-section-white .chamber-title {
    color: #1a1a1a !important;
}

.chamber-section-white .chamber-text {
    background: #fff !important;
    width: 100%;
    box-sizing: border-box;
}

.chamber-section-white .chamber-description {
    color: #1a1a1a !important;
    text-align: justify;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.chamber-section-white .chamber-image-caption {
    color: rgba(26, 26, 26, 0.7) !important;
    border-top: 1px solid rgba(26, 26, 26, 0.2) !important;
}

.chamber-link {
    color: #1a1a1a;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.chamber-link:hover {
    opacity: 0.7;
}

.exhibition-tickets-section .chamber-link {
    color: white;
    text-decoration: underline;
}

.exhibition-tickets-section .chamber-link:hover {
    opacity: 0.7;
}

.chamber-section:nth-of-type(4) {
    background: #fff;
}

.chamber-section:not(.chamber-section-white) {
    background: #000 !important;
}

.chamber-section:not(.chamber-section-white) .chamber-title {
    color: white !important;
}

.chamber-section:not(.chamber-section-white) .chamber-text {
    background: #000 !important;
}

.chamber-section:not(.chamber-section-white) .chamber-description {
    color: rgba(255, 255, 255, 0.9) !important;
}

.chamber-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 80px;
    padding-right: 80px;
}

.chamber-title {
    font-family: 'Brygada 1918', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: white;
    margin-bottom: 40px;
    white-space: nowrap;
    padding-left: 60px;
}

.chamber-section:nth-of-type(4) .chamber-title,
.chamber-section:last-of-type .chamber-title {
    color: #1a1a1a;
}

.chamber-content {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.chamber-content:has(.chamber-text:only-child) .chamber-text {
    flex: 1 1 100%;
}

.chamber-text {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #000;
    padding-left: 60px;
    padding-right: 30px;
}

.chamber-section:nth-of-type(4) .chamber-text,
.chamber-section:last-of-type .chamber-text {
    padding-left: 0;
    padding-right: 60px;
    background: #fff;
}

.chamber-section-white .chamber-text {
    padding-left: 0;
    background: #fff;
}

.chamber-description {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    margin-bottom: 20px;
    white-space: normal;
}

.chamber-section:nth-of-type(4) .chamber-description,
.chamber-section:last-of-type .chamber-description {
    color: #1a1a1a;
}

.chamber-discover {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    margin-bottom: 20px;
}

.chamber-section:nth-of-type(4) .chamber-discover,
.chamber-section:last-of-type .chamber-discover {
    color: #1a1a1a;
}

.chamber-button {
    display: inline-block;
    background: #8B1A1A;
    color: white;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    transition: background 0.3s ease, opacity 0.3s ease;
    margin-top: 10px;
}

.chamber-button:hover {
    opacity: 0.8;
}


.chamber-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 60px;
}

.chamber-section:nth-of-type(4) .chamber-image,
.chamber-section:last-of-type .chamber-image {
    padding-left: 60px;
    padding-right: 0;
}

.chamber-section:nth-of-type(3) .chamber-image {
    padding-left: 0;
    padding-right: 60px;
}

.chamber-section:nth-of-type(3) .chamber-text {
    padding-left: 60px;
    padding-right: 30px;
}

.chamber-image img {
    width: 100%;
    max-width: 80%;
    height: auto;
    object-fit: contain;
    display: block;
}

.chamber-image-caption {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 16px 0 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 80%;
}

.chamber-section:nth-of-type(4) .chamber-image-caption,
.chamber-section:last-of-type .chamber-image-caption {
    color: rgba(26, 26, 26, 0.7);
    border-top: 1px solid rgba(26, 26, 26, 0.2);
}

.contacts-section {
    background: white;
    padding: 80px 0;
    width: 100%;
}

.contacts-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.contacts-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.contacts-info {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-heading {
    font-family: 'Brygada 1918', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
}

.info-subheading {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0;
    margin-top: 10px;
}

.info-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #1a1a1a;
    margin: 0;
}

.info-link {
    color: #8B1A1A;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.info-link:hover {
    opacity: 0.7;
}

.contacts-map {
    flex: 0 0 50%;
    position: relative;
    height: 600px;
    min-height: 400px;
    overflow: hidden;
}

.contacts-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.season-selector {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.season-box-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.season-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border: 1px solid #1a1a1a;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    background: white;
    width: 100%;
}

.season-box:hover {
    background-color: #f5f5f5;
    border-color: #8B1A1A;
}

.season-box.active {
    border-bottom: none;
}

.season-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    display: inline-block;
}

.season-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    flex: 1;
}

.season-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.season-box.active .season-arrow {
    transform: rotate(180deg);
}

.season-content {
    display: none;
    border: 1px solid #1a1a1a;
    border-top: none;
    background: white;
    overflow: hidden;
}

.season-box-wrapper.active .season-content {
    display: block;
}

.season-date-row,
.season-time-row,
.season-admission-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.season-date-row {
    background: #8B1A1A;
    border-bottom: 1px solid #8B1A1A;
}

.season-time-row:last-child,
.season-admission-row:last-child {
    border-bottom: none;
}

.season-row-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.season-date-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: white;
}

.season-time-text,
.season-admission-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
}

.opening-hours-notices {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notice-red,
.notice-black {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.notice-red {
    color: #8B1A1A;
}

.notice-black {
    color: #1a1a1a;
}

.notice-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.notice-link {
    color: #8B1A1A;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.notice-link:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .page-content {
        padding-top: 80px;
    }

    .gallery-image-container {
        height: 30vh;
        min-height: 250px;
    }

    .gallery-title-overlay {
        padding: 0;
    }

    .gallery-title {
        font-size: 36px;
        white-space: normal;
    }

    .breadcrumbs {
        margin-bottom: 25px;
        font-size: 12px;
    }

    .gallery-content {
        padding: 40px 0;
    }

    .content-wrapper {
        padding: 0 20px;
    }

    .content-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .content-wrapper p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .exhibitions-section {
        padding: 40px 0;
    }

    .exhibitions-container {
        padding: 0 20px;
    }

    .event-detail-section {
        padding: 40px 0;
    }

    .event-detail-container {
        padding: 0 20px;
    }

    .event-detail-content {
        flex-direction: column;
        gap: 40px;
    }

    .event-detail-sidebar {
        flex: 1;
        width: 100%;
    }

    .event-detail-location {
        font-size: 28px;
    }

    .event-detail-subtitle {
        font-size: 20px;
    }

    .event-detail-date {
        font-size: 20px;
    }

    .event-info-box {
        padding: 30px 20px;
    }

    .exhibitions-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .exhibition-item {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }

    .exhibition-image {
        flex: 1;
        width: 100%;
    }

    .exhibition-name {
        font-size: 20px;
    }

    .archive-exhibitions {
        flex-direction: column;
        gap: 40px;
    }

    .archive-exhibition-name {
        font-size: 16px;
    }

    .collaboration {
        margin-top: 40px;
        padding-top: 30px;
    }

    .chamber-container {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 20px;
        padding-right: 20px;
        min-height: auto;
    }

    .chamber-title {
        font-size: 28px;
        padding-left: 0;
        margin-bottom: 25px;
        white-space: normal;
    }

    .chamber-content {
        flex-direction: column;
        gap: 20px;
    }

    .chamber-text {
        flex: 1;
        padding: 0 !important;
        width: 100%;
    }

    .chamber-image {
        flex: 1;
        padding: 20px 0 !important;
        width: 100%;
    }

    .chamber-image img {
        max-width: 100%;
    }

    .chamber-image-caption {
        font-size: 12px;
        margin-top: 12px;
        padding-top: 12px;
        max-width: 100%;
    }

    .chamber-description {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .chamber-discover {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .chamber-button {
        font-size: 12px;
        padding: 10px 20px;
    }

    .contacts-section {
        padding: 40px 0;
    }

    .contacts-container {
        padding: 0 20px;
    }

    .contacts-content {
        flex-direction: column;
        gap: 40px;
    }

    .contacts-info {
        flex: 1;
        width: 100%;
    }

    .contacts-map {
        flex: 1;
        width: 100%;
        height: 400px;
        min-height: 300px;
    }

    .info-heading {
        font-size: 24px;
    }

    .info-subheading {
        font-size: 16px;
    }

    .info-text {
        font-size: 14px;
    }

    .season-selector {
        flex-direction: column;
        gap: 15px;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .season-box-wrapper {
        width: 100%;
    }

    .season-box {
        padding: 14px 16px;
        width: 100%;
    }

    .season-text {
        font-size: 14px;
    }

    .season-icon {
        font-size: 18px;
        line-height: 1;
    }

    .season-arrow {
        width: 14px;
        height: 14px;
    }

    .season-date-row,
    .season-time-row,
    .season-admission-row {
        padding: 12px 16px;
        gap: 10px;
    }

    .season-row-icon {
        width: 18px;
        height: 18px;
    }

    .season-date-text,
    .season-time-text,
    .season-admission-text {
        font-size: 14px;
    }

    .opening-hours-notices {
        margin-top: 25px;
        gap: 12px;
    }

    .notice-red,
    .notice-black {
        font-size: 12px;
        gap: 10px;
    }

    .notice-icon {
        width: 16px;
        height: 16px;
    }
}

.special-openings-section {
    background: #1a1a1a;
    padding: 60px 0;
    width: 100%;
}

.special-openings-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 80px;
}

.special-openings-title {
    font-family: 'Brygada 1918', serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    color: white;
    margin-bottom: 20px;
    margin-top: 0;
}

.special-openings-subtitle {
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #8B1A1A;
    margin-bottom: 25px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.special-openings-text,
.special-openings-dates {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.special-openings-dates {
    margin-bottom: 0;
}

.special-openings-dates strong {
    font-weight: 700;
    color: white;
}

@media (max-width: 768px) {
    .special-openings-section {
        padding: 40px 0;
    }

    .special-openings-container {
        padding: 0 20px;
    }

    .special-openings-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .special-openings-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .special-openings-text,
    .special-openings-dates {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

.tickets-section {
    background: #1a1a1a;
    padding: 80px 0;
    width: 100%;
}

.tickets-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.tickets-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.tickets-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tickets-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tickets-title {
    font-family: 'Brygada 1918', serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    color: white;
    margin: 0;
    margin-bottom: 10px;
}

.tickets-subtitle {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tickets-description {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.tickets-list {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.tickets-list li {
    margin-bottom: 8px;
}

.tickets-link {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    transition: opacity 0.2s;
}

.tickets-link:hover {
    opacity: 0.7;
}

.tickets-audioguide {
    margin-top: 10px;
}

.tickets-audioguide-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: white;
    margin: 0;
    margin-bottom: 8px;
}

.tickets-audioguide-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    margin-bottom: 8px;
}

.tickets-table-wrapper {
    margin-bottom: 15px;
}

.tickets-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Work Sans', sans-serif;
}

.tickets-table thead {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.tickets-table th {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    padding: 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tickets-table th:first-child {
    padding-right: 20px;
}

.tickets-table th:not(:first-child) {
    text-align: right;
    padding-left: 20px;
}

.tickets-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tickets-table tbody tr:last-child {
    border-bottom: none;
}

.tickets-table td {
    font-size: 16px;
    color: white;
    padding: 16px 0;
}

.tickets-table td:first-child {
    padding-right: 20px;
}

.tickets-table td:not(:first-child) {
    text-align: right;
    padding-left: 20px;
    font-weight: 400;
}

.tickets-note {
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    margin-bottom: 20px;
}

.tickets-button {
    display: inline-block;
    background: #8B1A1A;
    color: white;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 30px;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s ease, opacity 0.3s ease;
    align-self: flex-start;
}

.tickets-button:hover {
    background: #a02020;
}

.tickets-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
}

.tickets-accordion-item {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.tickets-accordion-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tickets-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    transition: opacity 0.2s;
}

.tickets-accordion-header:hover {
    opacity: 0.7;
}

.tickets-accordion-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tickets-accordion-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    transform: rotate(180deg);
}

.tickets-accordion-item.active .tickets-accordion-arrow {
    transform: rotate(0deg);
}

.tickets-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.tickets-accordion-item.active .tickets-accordion-content {
    max-height: 500px;
    padding: 0 0 16px 0;
}

.tickets-accordion-content p {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.tickets-accordion-content p strong {
    font-weight: 700;
    color: white;
}

.tickets-accordion-list {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.tickets-accordion-list li {
    margin-bottom: 8px;
}

.tickets-accordion-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .tickets-section {
        padding: 40px 0;
    }

    .tickets-container {
        padding: 0 20px;
    }

    .tickets-content {
        flex-direction: column;
        gap: 40px;
    }

    .exhibition-tickets-section {
        padding: 40px 0;
    }

    .exhibition-tickets-container {
        padding: 0 20px;
    }

    .exhibition-tickets-content {
        flex-direction: column;
        gap: 40px;
    }

    .exhibition-tickets-right {
        flex: 1;
        width: 100%;
    }

    .exhibition-tickets-title {
        font-size: 28px;
    }

    .tickets-title {
        font-size: 28px;
    }

    .tickets-subtitle {
        font-size: 16px;
    }

    .tickets-description,
    .tickets-list,
    .tickets-link,
    .tickets-audioguide-title,
    .tickets-audioguide-text {
        font-size: 14px;
    }

    .tickets-table th,
    .tickets-table td {
        font-size: 14px;
        padding: 12px 0;
    }

    .tickets-button {
        font-size: 12px;
        padding: 12px 24px;
        width: 100%;
        text-align: center;
    }

    .tickets-accordion-title {
        font-size: 12px;
    }

    .tickets-accordion-arrow {
        width: 20px;
        height: 20px;
    }
}

.special-itinerary-section {
    background: #f5f0f0;
    padding: 80px 0;
    width: 100%;
}

.special-itinerary-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.special-itinerary-title {
    font-family: 'Brygada 1918', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
    margin-bottom: 60px;
}

.itinerary-tours {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.itinerary-tour {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.itinerary-tour-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.itinerary-tour-description {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #1a1a1a;
    margin: 0;
}

.itinerary-explore-link {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    text-decoration: underline;
    transition: opacity 0.2s;
    align-self: flex-start;
}

.itinerary-explore-link:hover {
    opacity: 0.7;
}

.itinerary-inclusions {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #1a1a1a;
    margin: 0;
}

.itinerary-table-wrapper {
    margin-top: 10px;
    margin-bottom: 20px;
}

.itinerary-table {
    width: 100%;
    max-width: 500px;
    border-collapse: collapse;
    font-family: 'Work Sans', sans-serif;
}

.itinerary-table thead {
    border-bottom: 1px solid rgba(26, 26, 26, 0.3);
}

.itinerary-table th {
    font-size: 14px;
    font-weight: 400;
    color: rgba(26, 26, 26, 0.7);
    text-align: left;
    padding: 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.itinerary-table th:first-child {
    padding-right: 20px;
}

.itinerary-table th:not(:first-child) {
    text-align: right;
    padding-left: 20px;
}

.itinerary-table tbody tr {
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.itinerary-table tbody tr:last-child {
    border-bottom: none;
}

.itinerary-table td {
    font-size: 16px;
    color: #1a1a1a;
    padding: 16px 0;
}

.itinerary-table td:first-child {
    padding-right: 20px;
}

.itinerary-table td:not(:first-child) {
    text-align: right;
    padding-left: 20px;
    font-weight: 400;
}

.itinerary-button {
    display: inline-block;
    background: #8B1A1A;
    color: white;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 30px;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s ease, opacity 0.3s ease;
    align-self: flex-start;
}

.itinerary-button:hover {
    background: #a02020;
}

.itinerary-accordion {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.itinerary-accordion-item {
    border-top: 1px solid rgba(26, 26, 26, 0.2);
    border-bottom: 1px solid rgba(26, 26, 26, 0.2);
}

.itinerary-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    transition: opacity 0.2s;
}

.itinerary-accordion-header:hover {
    opacity: 0.7;
}

.itinerary-accordion-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.itinerary-accordion-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    transform: rotate(180deg);
}

.itinerary-accordion-item.active .itinerary-accordion-arrow {
    transform: rotate(0deg);
}

.itinerary-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.itinerary-accordion-item.active .itinerary-accordion-content {
    max-height: 500px;
    padding: 0 0 16px 0;
}

.itinerary-accordion-list {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #1a1a1a;
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.itinerary-accordion-list li {
    margin-bottom: 8px;
}

.itinerary-accordion-list li:last-child {
    margin-bottom: 0;
}

.itinerary-accordion-note {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #1a1a1a;
    margin: 16px 0 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(26, 26, 26, 0.2);
}

@media (max-width: 768px) {
    .special-itinerary-section {
        padding: 40px 0;
    }

    .special-itinerary-container {
        padding: 0 20px;
    }

    .special-itinerary-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .itinerary-tours {
        gap: 40px;
    }

    .itinerary-tour-title {
        font-size: 16px;
    }

    .itinerary-tour-description,
    .itinerary-explore-link,
    .itinerary-inclusions {
        font-size: 14px;
    }

    .itinerary-table {
        max-width: 100%;
    }

    .itinerary-table th,
    .itinerary-table td {
        font-size: 14px;
        padding: 12px 0;
    }

    .itinerary-button {
        font-size: 12px;
        padding: 12px 24px;
        width: 100%;
        text-align: center;
    }

    .itinerary-accordion-title {
        font-size: 12px;
    }

    .itinerary-accordion-arrow {
        width: 20px;
        height: 20px;
    }
}

.museum-pass-section {
    background: #1a1a1a;
    padding: 80px 0;
    width: 100%;
}

.museum-pass-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.museum-pass-title {
    font-family: 'Brygada 1918', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: white;
    margin: 0;
    margin-bottom: 40px;
}

.museum-pass-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.museum-pass-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.museum-pass-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.museum-pass-description {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.museum-pass-included {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    margin-top: 10px;
}

.museum-pass-list {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.museum-pass-list li {
    margin-bottom: 8px;
}

.museum-pass-link {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    transition: opacity 0.2s;
    margin-top: 10px;
}

.museum-pass-link:hover {
    opacity: 0.7;
}

.museum-pass-table-wrapper {
    margin-bottom: 15px;
}

.museum-pass-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Work Sans', sans-serif;
}

.museum-pass-table thead {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.museum-pass-table th {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    padding: 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.museum-pass-table th:first-child {
    padding-right: 20px;
}

.museum-pass-table th:not(:first-child) {
    text-align: right;
    padding-left: 20px;
}

.museum-pass-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.museum-pass-table tbody tr:last-child {
    border-bottom: none;
}

.museum-pass-table td {
    font-size: 16px;
    color: white;
    padding: 16px 0;
}

.museum-pass-table td:first-child {
    padding-right: 20px;
}

.museum-pass-table td:not(:first-child) {
    text-align: right;
    padding-left: 20px;
    font-weight: 400;
}

.museum-pass-button {
    display: inline-block;
    background: #8B1A1A;
    color: white;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 30px;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s ease, opacity 0.3s ease;
    align-self: flex-start;
}

.museum-pass-button:hover {
    background: #a02020;
}

.museum-pass-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
}

.museum-pass-accordion-item {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.museum-pass-accordion-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.museum-pass-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    transition: opacity 0.2s;
}

.museum-pass-accordion-header:hover {
    opacity: 0.7;
}

.museum-pass-accordion-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.museum-pass-accordion-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    transform: rotate(180deg);
}

.museum-pass-accordion-item.active .museum-pass-accordion-arrow {
    transform: rotate(0deg);
}

.museum-pass-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.museum-pass-accordion-item.active .museum-pass-accordion-content {
    max-height: 500px;
    padding: 0 0 16px 0;
}

.museum-pass-accordion-list {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.museum-pass-accordion-list li {
    margin-bottom: 8px;
}

.museum-pass-accordion-list li:last-child {
    margin-bottom: 0;
}

.museum-pass-accordion-note {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 16px 0 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.museum-pass-accordion-content p {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 768px) {
    .museum-pass-section {
        padding: 40px 0;
    }

    .museum-pass-container {
        padding: 0 20px;
    }

    .museum-pass-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .museum-pass-content {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }

    .museum-pass-description,
    .museum-pass-included,
    .museum-pass-list,
    .museum-pass-link {
        font-size: 14px;
    }

    .museum-pass-table th,
    .museum-pass-table td {
        font-size: 14px;
        padding: 12px 0;
    }

    .museum-pass-button {
        font-size: 12px;
        padding: 12px 24px;
        width: 100%;
        text-align: center;
    }

    .museum-pass-accordion-title {
        font-size: 12px;
    }

    .museum-pass-accordion-arrow {
        width: 20px;
        height: 20px;
    }
}

.room-section {
    background: #000 !important;
}

.room-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
}

.room-title {
    font-family: 'Brygada 1918', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: white;
    margin-bottom: 30px;
    padding-left: 0;
    margin-left: 0;
    text-indent: 0;
}

.room-content {
    flex-direction: column;
}

.room-text {
    width: 100%;
    padding: 0;
}

.room-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.gallery-grid-section {
    background: #000;
    padding: 80px 0;
}

.gallery-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.gallery-grid-title {
    font-family: 'Brygada 1918', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: white;
    margin-bottom: 40px;
    padding-left: 0;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .room-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .room-title {
        font-size: 32px;
    }

    .room-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .gallery-grid-section {
        padding: 40px 0;
    }
}

/* Booking Form Styles */
.booking-form {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.booking-section {
    margin-bottom: 60px;
}

.booking-section-title {
    font-family: 'Brygada 1918', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.booking-radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.booking-radio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid rgba(26, 26, 26, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.booking-radio:hover {
    border-color: #8B1A1A;
    background-color: rgba(139, 26, 26, 0.05);
}

.booking-radio input[type="radio"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.booking-radio input[type="radio"]:checked + .booking-radio-label {
    font-weight: 600;
    color: #8B1A1A;
}

.booking-radio:has(input[type="radio"]:checked) {
    border-color: #8B1A1A;
    background-color: rgba(139, 26, 26, 0.05);
}

.booking-radio-label {
    flex: 1;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
}

.booking-radio-price {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.booking-note {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-top: 10px;
}

.booking-form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.booking-form-group {
    flex: 1;
}

.booking-label {
    display: block;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.booking-input,
.booking-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(26, 26, 26, 0.2);
    border-radius: 4px;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    background: white;
    transition: border-color 0.3s ease;
}

.booking-input:focus,
.booking-select:focus {
    outline: none;
    border-color: #8B1A1A;
}

.booking-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
}

.booking-total {
    background: #f5f0f0;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.booking-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.booking-total-row:last-child {
    margin-bottom: 0;
}

.booking-total-final {
    font-size: 20px;
    font-weight: 600;
    padding-top: 15px;
    border-top: 1px solid rgba(26, 26, 26, 0.2);
}

.booking-submit {
    width: 100%;
    background: #8B1A1A;
    color: white;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.booking-submit:hover {
    background: #a02020;
}

.booking-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .booking-form {
        padding: 20px 0;
    }

    .booking-section {
        margin-bottom: 40px;
    }

    .booking-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .booking-form-row {
        flex-direction: column;
        gap: 0;
    }

    .booking-form-group {
        margin-bottom: 25px;
    }

    .booking-radio {
        padding: 15px;
    }

    .booking-radio-label {
        font-size: 14px;
    }

    .booking-radio-price {
        font-size: 16px;
    }

    .booking-total {
        padding: 20px;
    }

    .booking-total-row {
        font-size: 14px;
    }

    .booking-total-final {
        font-size: 18px;
    }
}

/* Booking Category Selector */
.booking-category-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.booking-category-radio {
    flex: 1;
    min-width: 150px;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border: 1px solid rgba(26, 26, 26, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.booking-category-radio:hover {
    border-color: #8B1A1A;
    background-color: rgba(139, 26, 26, 0.05);
}

.booking-category-radio input[type="radio"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.booking-category-radio input[type="radio"]:checked + .booking-category-label {
    font-weight: 600;
    color: #8B1A1A;
}

.booking-category-radio:has(input[type="radio"]:checked) {
    border-color: #8B1A1A;
    background-color: rgba(139, 26, 26, 0.05);
}

.booking-category-label {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    cursor: pointer;
}

/* Booking Included Info */
.booking-included {
    margin-top: 30px;
    padding: 20px;
    background: #f5f0f0;
    border-radius: 4px;
}

.booking-included-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.booking-included-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.booking-included-list li {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.booking-included-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8B1A1A;
    font-weight: bold;
}

.booking-audioguide {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin: 0;
}

.booking-description,
.booking-inclusions {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.booking-inclusions {
    font-size: 14px;
    color: #666;
}

/* Calendar Wrapper */
.booking-calendar-wrapper {
    margin-bottom: 30px;
}

.booking-calendar-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.booking-calendar {
    flex: 0 0 350px;
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.2);
    border-radius: 4px;
    padding: 20px;
}

.booking-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.booking-calendar-nav {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.booking-calendar-nav:hover {
    color: #8B1A1A;
}

.booking-calendar-nav svg {
    width: 20px;
    height: 20px;
}

.booking-calendar-month {
    font-family: 'Brygada 1918', serif;
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
}

.booking-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.booking-calendar-weekday {
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.booking-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.booking-calendar-day.empty {
    cursor: default;
    visibility: hidden;
}

.booking-calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.booking-calendar-day:not(.disabled):not(.empty):hover {
    background-color: rgba(139, 26, 26, 0.1);
}

.booking-calendar-day.today {
    background-color: rgba(139, 26, 26, 0.1);
    font-weight: 600;
}

.booking-calendar-day.selected {
    background-color: #8B1A1A;
    color: white;
    font-weight: 600;
}

.booking-calendar-day.selected:hover {
    background-color: #a02020;
}

.booking-calendar-info {
    flex: 1;
    padding: 20px;
    background: #f5f0f0;
    border-radius: 4px;
}

.booking-hours-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.booking-hours-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
}

.booking-hours-season {
    color: #1a1a1a;
    font-weight: 500;
}

.booking-hours-time {
    color: #666;
}

@media (max-width: 768px) {
    .booking-category-selector {
        flex-direction: column;
    }

    .booking-category-radio {
        min-width: 100%;
    }

    .booking-calendar-container {
        flex-direction: column;
        gap: 20px;
    }

    .booking-calendar {
        flex: 1;
        width: 100%;
    }

    .booking-calendar-info {
        width: 100%;
    }

    .gallery-grid-container {
        padding: 0 20px;
    }

    .gallery-grid-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 15px;
    }

    .gallery-item {
        padding-bottom: 75%;
    }
}

/* Payment Page Styles */
.payment-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    align-items: flex-start;
}

.payment-order-summary {
    flex: 0 0 350px;
    background: #f5f0f0;
    padding: 30px;
    border-radius: 4px;
}

.payment-form-wrapper {
    flex: 1;
}

.payment-section-title {
    font-family: 'Brygada 1918', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.payment-order-details {
    margin-bottom: 25px;
}

.payment-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.payment-order-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.payment-order-item span:first-child {
    color: #666;
}

.payment-order-item span:last-child {
    font-weight: 600;
    color: #1a1a1a;
}

.payment-order-total {
    padding-top: 20px;
    border-top: 2px solid rgba(26, 26, 26, 0.2);
}

.payment-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.payment-form {
    background: white;
    padding: 30px;
    border: 1px solid rgba(26, 26, 26, 0.2);
    border-radius: 4px;
}

.payment-form-section {
    margin-bottom: 25px;
}

.payment-form-row {
    display: flex;
    gap: 20px;
}

.payment-form-row .payment-form-section {
    flex: 1;
}

.payment-label {
    display: block;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.payment-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(26, 26, 26, 0.2);
    border-radius: 4px;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    background: white;
    transition: border-color 0.3s ease;
}

.payment-input:focus {
    outline: none;
    border-color: #8B1A1A;
}

.payment-input::placeholder {
    color: #999;
}

.payment-checkbox {
    display: flex;
    align-items: center;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
}

.payment-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.payment-submit {
    width: 100%;
    background: #8B1A1A;
    color: white;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.payment-submit:hover {
    background: #a02020;
}

.payment-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .payment-container {
        flex-direction: column;
        gap: 30px;
    }

    .payment-order-summary {
        flex: 1;
        width: 100%;
    }

    .payment-form-row {
        flex-direction: column;
        gap: 0;
    }

    .payment-section-title {
        font-size: 24px;
    }
}

/* Card Form Styles (from westminster) */
.payment-form {
    background: white;
    padding: 30px;
    border: 1px solid rgba(26, 26, 26, 0.2);
    border-radius: 4px;
}

.payment-form h2 {
    font-family: 'Brygada 1918', serif;
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 30px 0;
}

.card-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.field-icon {
    width: 16px;
    height: 16px;
    color: #666;
    flex-shrink: 0;
}

.help-icon {
    width: 14px;
    height: 14px;
    color: #666;
    margin-left: 4px;
    cursor: help;
    flex-shrink: 0;
}

.form-field input {
    padding: 12px 15px;
    border: 1px solid rgba(26, 26, 26, 0.2);
    border-radius: 4px;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    transition: border-color 0.3s ease;
    background: white;
}


.form-field input:focus {
    outline: none;
    border-color: #8B1A1A;
}

.form-field input::placeholder {
    color: #999;
}

.form-field input:invalid,
.form-field input.invalid {
    border-color: #DC143C;
}

.form-field input.valid {
    border-color: #28a745;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 10px;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    text-decoration: none;
    padding: 12px 20px;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: #1a1a1a;
}

.back-button svg {
    width: 14px;
    height: 14px;
}

.confirm-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #8B1A1A;
    color: white;
    border: none;
    padding: 12px 24px;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.confirm-button:hover {
    background-color: #a02020;
}

.confirm-button svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .confirm-button {
        width: 100%;
        justify-content: center;
    }
}

/* Payment Success Modal */
.payment-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.payment-success-content {
    background: white;
    padding: 50px 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.payment-success-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.payment-success-icon svg {
    width: 64px;
    height: 64px;
}

.payment-success-title {
    font-family: 'Brygada 1918', serif;
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.payment-success-message {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.payment-success-button {
    background: #8B1A1A;
    color: white;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.payment-success-button:hover {
    background: #a02020;
}

@media (max-width: 768px) {
    .payment-success-content {
        padding: 40px 30px;
    }

    .payment-success-title {
        font-size: 28px;
    }

    .payment-success-message {
        font-size: 14px;
    }
}
