/*
Theme Name:   KLANGLICHT CUSTOM THEME
Theme URI:    https://klanglicht.at/
Author:       Matthias Pöschl / Studio Uniform
Author URI:   https://studiouniform.at/
Description:  
Version:      1.0.1
Text Domain:  KLANGLICHT-CUSTOM-THEME
*/

:root {
    /* Hintergründe */
    --bg-dark: #000000;
    --bg-content: #e5e5e5;
    --bg-light: #ffffff;
    
    /* Textfarben */
    --text-light: #ffffff;
    --text-dark: #000000;
    --text-muted: #aaaaaa;
    --text-muted-dark: #666666;
    --text-muted-light: #888888;
    
    /* Akzente & Rahmen */
    --accent-yellow: #fce803;
    --border-dark: #222222;
    --border-content: #111111;
    --border-content-light: #cccccc;
    
    /* Layout & Typografie */
    --font-main: Scto Grotesk A Medium, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    --side-padding: 2rem;
}

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

body { 
    font-family: var(--font-main); 
    font-weight: 400; 
    color: var(--text-dark); 
    background-color: var(--bg-dark); 
    line-height: 1.5; 
    overflow-x: clip; /* WICHTIG: clip statt hidden */
    width: 100vw; 
    -webkit-font-smoothing: antialiased;
    /*hyphens: auto;
  -webkit-hyphens: auto; /* Für ältere Safari-Versionen */
/*  -ms-hyphens: auto;     /* Für den Internet Explorer */
}

.archiv { 
    font-family: var(--font-main); 
    font-weight: 400; 
    color: var(--text-light); 
    background-color: var(--bg-dark); 
    line-height: 1.5; 
    /* overflow-x: hidden;  <-- Entfernen oder auskommentieren! */
    width: 100%; 
    -webkit-font-smoothing: antialiased;
    padding: 0 var(--side-padding);
}

.sidebar-lang {
    color: #000000;
    font-weight: bold;
    font-size: 0.75rem;
    text-decoration: none;
    display: flex;
    gap: 0.4rem;
    text-transform: uppercase;
}

.lang-switch ul, .sidebar-lang ul, .bottom-lang ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    text-transform: uppercase;
}

.lang-switch li.current-lang a, 
.sidebar-lang li.current-lang a, 
.bottom-lang li.current-lang a {
    font-weight: bold;
    text-decoration: underline;
    text-transform: uppercase;
}

strong { 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    display: inline-block;
    letter-spacing: 1.5px; 
    font-weight: 600; 
    margin: 1rem 0;
}

li { 
    list-style-type: none; 
}


/* Header (Schwarz) */
header {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 70px;
    background: var(--bg-dark); 
    color: var(--text-light);
    padding: 0 var(--side-padding);
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    z-index: 1003;
    border-bottom: 0px solid var(--border-dark);
}

.logo img {
    height: 2.5vh;
}

.vienna {height:35px; width:100vw; background-color:#f00; display:block;}

/*--
.logo { 
    font-family: Brandon Grotesque;
    font-weight: 800; 
    font-size: 1.6rem; 
    letter-spacing: 2px; 
    color: var(--text-light); 
    text-decoration: none; 
}
--*/

.header-controls { 
    display: flex;
    align-items: center; 
    gap: 1.5rem; 
}

.btn-tickets-header { 
    background: var(--accent-yellow); 
    color: #000000; 
    padding: 0.4rem 1.2rem; 
    border-radius: 20px; 
    font-weight: 700; 
    font-size: 0.75rem; 
    text-decoration: none; 
    letter-spacing: 1px; 
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-tickets-header:visited { 
    color: #000000; 
}

.btn-tickets-header:hover { 
    background: var(--text-light); 
    color: #000000; 
}

.lang-switch { 
    font-size: 0.75rem; 
    color: var(--text-light); 
    display: flex; 
    gap: 0.4rem; 
}

.lang-switch a { 
    color: var(--text-light); 
    text-decoration: none; 
}

.lang-switch a.active { 
    font-weight: bold; 
    text-decoration: underline; 
}

.menu-toggle { 
    background: none; 
    border: none; 
    color: var(--text-light); 
    font-size: 1.4rem; 
    cursor: pointer; 
    line-height: 1; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 30px; 
    height: 30px; 
}

/* Fullscreen Hero */
.hero {
    position: relative;
    height: calc(100vh - 70px); 
    width: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    height: calc(100vh - 70px); 
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* Weicher Übergang */
}

.hero-slide.active {
    opacity: 1;
}

/* Sidebar Drawer (Schwarz) */
.sidebar-overlay {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh;
    background: rgba(0, 0, 0, 0.7); 
    z-index: 1000;
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-overlay.open { 
    opacity: 1; 
    visibility: visible; 
}

.sidebar-drawer {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 340px; 
    max-width: 85vw; 
    height: 100vh;
    background: var(--bg-dark); 
    color: var(--text-light); 
    z-index: 1001;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
    transform: translateX(-100%);
    border-right: 1px solid var(--border-dark);
}

.sidebar-drawer.open { 
    transform: translateX(0); 
}

.sidebar-content { 
    padding: 5rem 2rem 2rem 2rem; 
    display: flex; 
    flex-direction: column; 
    gap: 2rem; 
    overflow-y: auto; 
}

.main-nav { 
    display: flex; 
    flex-direction: column; 
    gap: 1.2rem; 
}

.main-nav a { 
    color: var(--text-light); 
    text-decoration: none; 
    font-size: 1.1rem; 
    font-weight: 700; 
    letter-spacing: 1px; 
}

.main-nav a.active { 
    text-decoration: underline; 
    text-underline-offset: 6px; 
}

.secondary-nav { 
    display: flex; 
    flex-direction: column; 
    gap: 0.5rem; 
    margin-top: 1rem; 
}

.secondary-nav a { 
    color: var(--text-muted-light); 
    text-decoration: none; 
    font-size: 0.75rem; 
    letter-spacing: 0.5px; 
}

.secondary-nav a:hover { 
    color: var(--text-light); 
}

.social-icons { 
    display: flex; 
    gap: 1rem; 
    margin-top: 1rem; 
    font-size: 1.1rem; 
}

.social-icons a { 
    color: var(--text-light); 
    text-decoration: none; 
    display: inline-flex; 
    align-items: center; 
}

.sidebar-footer-cta {
    background: var(--accent-yellow); 
    padding: 0.8rem 1.2rem; 
    height: 100px;
    display: flex; 
    align-items: center; 
    justify-content: space-between;
}

.btn-tickets-sidebar {
    background: #000000; 
    color: var(--accent-yellow); 
    border: none; 
    padding: 0.5rem 1rem;
    border-radius: 20px; 
    font-size: 0.7rem; 
    font-weight: bold; 
    letter-spacing: 0.5px; 
    cursor: pointer; 
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-tickets-sidebar:hover {
    background: #fff; 
    color: var(--text-dark); 
}

/* BALKEN 
.balken {width: 100vw; height: 35px; background-color: #fff; position: fixed; top: 0; z-index: 9999;}*/


/* Sponsoren Ticker */
.sponsors-wrapper {
    overflow: hidden;
    background: #ffffff;
    padding: 2rem 0;
    white-space: nowrap;
    width: 100%;
}

.sponsors-track {
    display: inline-block;
    white-space: nowrap;
    /* Verhindert Ruckeln beim Rendern */
    will-change: transform; 
    animation: marquee 80s linear infinite;
}

.sponsor-logo {
    display: inline-block;
    height: 30px;
    margin: 0 2rem;
    vertical-align: middle;
}

.sponsor-logo img {
    height: 30px;       /* Feste Höhe vorgeben */
    width: auto;        /* Breite automatisch berechnen */
    display: inline-block;
    vertical-align: middle;
}

/* Pausieren beim Hover (optional, verbessert Usability) */
.sponsors-wrapper:hover .sponsors-track {
    animation-play-state: paused;
}

/* Sections & Layout Blocks */
.section-light { 
    background-color: var(--bg-content); 
    color: var(--text-dark); 
    padding: 4rem var(--side-padding); 
    width: 100%; 
}

.section-dark { 
    background-color: var(--bg-dark); 
    color: var(--text-light); 
    padding: 4rem var(--side-padding); 
    width: 100%; 
}

.section-faq { 
    background-color: var(--bg-light); 
    color: var(--text-dark); 
    padding: 4rem var(--side-padding); 
    width: 100%; 
}

.main-container {
    padding: 70px var(--side-padding) var(--side-padding);
    width: 100%;
}

.main-content-wrapper {
    background-color: var(--bg-content);
    color: var(--text-dark);
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

.intro-section { 
    padding: 4rem var(--side-padding) 2rem var(--side-padding); 
}

.sub-label { 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    margin-bottom: 1.5rem; 
    display: block; 
    letter-spacing: 1.5px; 
    font-weight: 600; 
    color: var(--text-dark);
}

.sub-label-faq { 
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--text-dark);
}

.sub-label-programm { 
    font-size: 0.75rem;
    text-transform: uppercase;
    display: block;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--text-light);
}

.intro-text, 
.intro-headline { 
    font-size: 1.8rem; 
    font-weight: 500; 
    line-height: 1.35; 
    max-width: 1400px; 
    margin-bottom: 3rem; 
    color: var(--text-dark);
}

/* Split Layout Grid & Karte */

/* 2. Sticky-Anpassungen für die Karten-Sektion */
.content-split {
    display: grid;
    background: #000;
    padding: 0;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start; /* Wichtig: Verhindert, dass beide Spalten gleich hoch gezogen werden */
    padding-bottom: 90px;
}

.map-section {
    background: #000;
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: 90px; /* Anpassen: Header-Höhe (70px) + gewünschter Abstand (20px) */
    align-self: start;
    z-index: 50;
}

.map-header {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.map-header h2 { 
    font-size: 1.1rem; 
    letter-spacing: 1px; 
    font-weight: 700; 
    color: var(--text-light); 
}

.map-hint { 
    font-size: 0.8rem; 
    color: var(--text-muted); 
}

.map-container { 
    position: relative; 
    width: 100%; 
    background: var(--bg-dark); 
}

.map-container img.map-bg {
    width: 100%;
    height: auto;
    display: block;
    PADDING-TOP: 2rem;
    object-fit: contain;
}

.map-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 23px; 
    height: 23px;
    border-radius: 50%;
    border: 0px;
    background: var(--accent-yellow);
    color: #000000;
    font-weight: 800; 
    font-size: 0.8rem;
    display: flex; 
    align-items: center; 
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(252, 232, 3, 0.4);
    transition: all 0.25s ease;
    z-index: 10;
}

.map-pin:hover, 
.map-pin.active {
    transform: translate(-50%, -50%) scale(1.2);
    background: var(--text-light);
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
    z-index: 20;
}

/* Programmliste & Accordion */
.program-list { 
    width: 100%; 
    display: flex; 
    flex-direction: column; 
}

.location-card {
    background: transparent;
    border-bottom: 1px solid var(--border-dark);
    transition: background-color 0.2s ease;
    scroll-margin-top: 90px;
}

.location-header {
    padding: 1.8rem 0;
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    cursor: pointer; 
    user-select: none; 
    background: transparent;
}

.location-title-group { 
    display: flex; 
    align-items: center; 
    gap: 1.5rem; 
}

.location-number { 
    font-weight: 400; 
    font-size: 1.1rem; 
    color: var(--text-muted); 
    min-width: 24px; 
}

.location-card.active-card .location-number { 
    color: var(--accent-yellow); 
    font-weight: 700; 
}

.location-meta { 
    display: flex; 
    flex-direction: column; 
    gap: 0.2rem; 
}

.location-name { 
    font-size: 1.1rem; 
    font-weight: 600; 
    letter-spacing: 0.2px; 
    color: var(--text-light); 
}

.artist-name { 
    font-size: 0.85rem; 
    color: var(--text-muted); 
    font-weight: 400; 
}

.toggle-icon { 
    font-size: 1.5rem; 
    font-weight: 300; 
    transition: transform 0.3s ease; 
    color: var(--text-light); 
}

.location-card.open .toggle-icon { 
    transform: rotate(45deg); 
}

.location-body {
    max-height: 0; 
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: transparent;
}

.location-card.open .location-body { 
    max-height: 100%; 
    transition: max-height 0.5s ease-in-out; 
}

.location-inner { 
    padding: 0 0 2rem 0; 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 1.5rem; 
    color: #cccccc; 
}

.location-image { 
    width: 50%; 
    height: auto; 
    object-fit: cover; 
    border-radius: 2px; 
    filter: grayscale(10%); 
}

.location-info { 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
}

.location-description { 
    font-size: 0.95rem; 
    line-height: 1.6; 
    color: #bbbbbb; 
    margin-bottom: 1.5rem; 
}

.location-description p {
    padding-bottom: 10px;
}

.project-desc p {
    padding-bottom: 10px;
}


.location-tags { 
    display: flex; 
    gap: 0.5rem; 
    flex-wrap: wrap; 
}

.tag {
    background: #111111; 
    color: #aaaaaa; 
    border: 1px solid #333333;
    padding: 0.25rem 0.6rem; 
    border-radius: 4px;
    font-size: 0.65rem; 
    font-weight: 600; 
    letter-spacing: 0.5px; 
    text-transform: uppercase;
}

/* Swipeable Galleries & Sliders */
.swipe-container {
    display: flex; 
    gap: 16px; 
    overflow-x: auto;
    scroll-snap-type: x mandatory; 
    scrollbar-width: none; /* Für Firefox */
    -ms-overflow-style: none; /* Für ältere IE/Edge Versionen */
    padding-bottom: 1rem; 
    width: 100%;
    
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none; /* Verhindert das Standard-Bild-Ziehen */
}

/* Versteckt die Scrollleiste in WebKit-Browsern */
.swipe-container::-webkit-scrollbar {
    display: none;
}

/* Deaktiviert Snapping und ändert Cursor beim aktiven Ziehen */
.swipe-container.active {
    scroll-snap-type: none;
    scroll-behavior: auto;
    cursor: grabbing;
}

.swipe-item, 
.slider-img {
    height: 220px; 
    object-fit: cover; 
    border-radius: 6px; 
    scroll-snap-align: start;
    pointer-events: none; /* Verhindert Bildevents beim Ziehen */
}

.text-block-page { 
    max-width: 100vw; 
    margin: 1rem auto; 
    text-align: left; 
    transition: all 0.3s ease; 
}

/* Expandable / FAQ / Presse Block */
/* Der Block ist standardmäßig komplett ausgeblendet */
.expandable-wrapper {
    max-width: 900px;
    margin: 5rem auto;
    text-align: left;
    transition: all 0.3s ease;
}

/* Erst mit der Klasse 'is-open' wird er sichtbar */
.expandable-wrapper.is-open {
    display: block !important;
}

/* Der Content-Schild – min-height: 0 ist hier entscheidend */
.expandable-content {
    font-size: 0.85rem; 
    overflow: hidden;
    min-height: 0;
}

.expandable-wrapper p { 
    font-size: 0.85rem; 
    line-height: 1.6; 
    color: #333333; 
    margin-bottom: 1.2rem; 
}

.accordion-item { 
    border-bottom: 1px solid #333333; 
}

.accordion-header { 
    padding: 1.2rem 0; 
    display: flex; 
    justify-content: space-between; 
    cursor: pointer; 
    font-size: 1.2rem; 
}

.icon {
    padding-left: 2rem;
}

.accordion-content {
    display: none;
    padding-bottom: 1.2rem;
    font-size: 0.85rem;
    color: #000;
    line-height: 1.6;
    margin: 1rem 50% 1rem 0;
}



.accordion-item.active .accordion-content { 
    display: block; 
}

.info-grid { 
    max-width: 600px; 
    margin: 0 auto; 
    display: flex; 
    flex-direction: column; 
    gap: 4rem; 
}

.presse-item { 
    border-bottom: 1px solid #cccccc; 
}

.presse-header { 
    padding: 1rem 0; 
    display: flex; 
    justify-content: space-between; 
    font-size: 0.85rem; 
    cursor: pointer; 
}

.presse-content { 
    display: none; 
    padding-bottom: 1rem; 
    font-size: 0.8rem; 
    color: #555555; 
}

.presse-item.active .presse-content { 
    display: block; 
}

.news-input { 
    width: 100%; 
    border: none; 
    border-bottom: 1px solid #888888; 
    background: transparent; 
    padding: 0.8rem 0; 
    margin-bottom: 1rem; 
    outline: none; 
    font-size: 0.9rem; 
}

/* Buttons */
.btn-center { 
    text-align: center; 
    margin-top: 2.5rem; 
}

.btn-pill {
    border: 1px solid #000000;
    background: transparent;
    padding: 0.6rem 1.8rem;
    font-size: 0.7rem;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 50px;
    text-transform: uppercase;
    color: #000000;
}

/* Archiv Layout */
.archive-container { 
    padding: 2rem var(--side-padding) 6rem var(--side-padding); 
}

.archive-year-group { 
    border-top: 1px solid var(--border-content); 
}

.year-header { 
    padding: 1.8rem 0; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    cursor: pointer; 
    user-select: none; 
    transition: opacity 0.2s ease; 
}

.year-header:hover { 
    opacity: 0.7; 
}

.year-title-wrap { 
    display: flex; 
    align-items: baseline; 
    gap: 1.5rem; 
}

.year-number { 
    font-size: 1.4rem; 
    font-weight: 800; 
    letter-spacing: 1px; 
}

.year-location { 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: var(--text-muted-dark); 
}

.icon-toggle {
    display: block;
    font-size: 1.5rem;
    padding-left: 2em;
    font-weight: 300;
}

.year-content { 
    display: none; 
    padding-bottom: 2rem; 
}

.archive-year-group.open .year-content { 
    display: block; 
}

.project-item { 
    border-top: 1px solid var(--border-content-light); 
    padding: 1.2rem 0; 
}

.project-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    cursor: pointer; 
    font-size: 1.1rem; 
    font-weight: 500; 
    transition: opacity 0.2s; 
}

.project-header:hover { 
    opacity: 0.7; 
}

.project-title { 
    display: block; 
    font-weight: 700; 
    font-size: 1.05rem; 
}

.project-artist { 
    color: var(--text-muted-dark); 
    display: block;
    font-size: 0.85rem; 
    font-weight: 400; 
}

.project-body { 
    display: none; 
    padding: 1.5rem 0 1rem 0; 
}

.project-item.open .project-body { 
    display: block; 
}

.project-desc { 
    font-size: 0.95rem; 
    color: #222222; 
    line-height: 1.6; 
    max-width: 900px; 
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        /* Von 0% auf -50% verschieben, da die Inhalte gedoppelt sind */
        transform: translateX(-50%);
    }
}

/* Footer */
footer { 
    background: var(--bg-dark); 
    color: var(--text-light); 
    padding: 4rem var(--side-padding); 
    font-size: 0.75rem; 
    width: 100%; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 2rem; 
}

.footer-grid a { 
    color: var(--text-light); 
    text-decoration: none; 
    display: block; 
    margin-bottom: 0.4rem; 
}

/* Mobile Bottom Bar */
.mobile-bottom-bar { 
    display: none; 
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .content-split { 
        grid-template-columns: 1fr; 
        gap: 2rem; 
    }
    
    .map-section { 
        position: relative; 
        top: 0; 
    }
  
  .accordion-content { 
    display: none; 
    padding-bottom: 1.2rem; 
    font-size: 0.85rem; 
    color: #cccccc; 
    line-height: 1.6; 
    margin: 0 0 0 0;
}
  
}

@media (max-width: 768px) {
    
    :root { 
        --side-padding: 1.25rem; 
    }
    
    body { 
        padding-bottom: 70px; 
    }

    header { 
        height: 65px; 
        padding: 0 1.25rem; 
    }
    
    .logo { 
        font-size: 1.4rem; 
    }
    
    .sponsors-track {
        animation: marquee 120s linear infinite;
    }
    
    .btn-tickets-header { 
        background: #ffffff; 
        color: #000000; 
        padding: 0.35rem 1.1rem; 
    }
    
    .lang-switch { 
        display: none; 
    }

    .sidebar-drawer { 
        width: 100vw; 
        max-width: 100vw; 
    }
    
    .sidebar-content { 
        padding: 6rem 1.5rem 7rem 1.5rem; 
        gap: 2.2rem; 
    }
    
    .main-nav a { 
        font-size: 1.45rem; 
        font-weight: 700; 
        color: var(--text-light); 
    }
    
    .secondary-nav a { 
        color: var(--text-light); 
        font-size: 0.85rem; 
        font-weight: 600; 
        text-transform: uppercase; 
    }
    
    .sidebar-footer-cta { 
        display: none; 
    }

    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0; 
        left: 0;
        width: 100%; 
        height: 100px;
        background-color: var(--accent-yellow);
        z-index: 1002;
        align-items: center;
        justify-content: space-between;
        padding: 0 1.25rem;
    }
    
    .btn-tickets-bottom {
        background: #000000; 
        color: var(--accent-yellow);
        padding: 0.5rem 1.1rem; 
        border-radius: 30px;
        font-size: 0.75rem; 
        font-weight: 700; 
        text-decoration: none; 
        text-transform: uppercase;
    }
    
    .bottom-lang { 
        display: flex; 
        gap: 0.8rem; 
        font-size: 0.85rem; 
        font-weight: 700; 
        color: #000000; 
    }
    
    .bottom-lang a { 
        color: #000000; 
        text-decoration: none; 
    }
    
    .bottom-lang a.active { 
        text-decoration: underline; 
        text-underline-offset: 3px; 
    }

    .main-container { 
        margin-top: 65px; 
        padding: 2rem 1.25rem; 
    }
    
    .main-content-wrapper { 
        margin-top: 65px; 
    }
    
    .intro-section { 
        padding: 2rem 1.25rem 1rem 1.25rem; 
    }
    
    .intro-headline, 
    .intro-text { 
        font-size: 1.25rem; 
        margin-bottom: 2rem; 
    }
    
    .archive-container { 
        padding: 1.5rem 1.25rem 4rem 1.25rem; 
    }

    .location-header { 
        padding: 1.2rem 0; 
    }
    
    .location-name { 
        font-size: 1rem; 
    }
    
    .artist-name { 
        font-size: 0.75rem; 
    }
    
    .location-inner { 
        grid-template-columns: 1fr; 
        gap: 1rem; 
        padding: 0 0 1.5rem 0; 
    }
    
    .location-image { 
        width: 100%; 
        height: auto; 
    }

    .year-title-wrap { 
        flex-direction: column; 
        gap: 0.2rem; 
    }
    
    .year-number { 
        font-size: 1.15rem; 
    }
    
    .swipe-item, 
    .slider-img { 
        height: 200px; 
        border-radius: 10px; 
    }

    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem; 
    }
    
    footer div[style*="text-align: right"] { 
        text-align: left !important; 
    }
}