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

:root {
    /* Basis: Tiefes, ruhiges Indigo-Blau (pastellig) */
    --bg-primary: #1e2a47;
    --bg-secondary: #2a3a5a;
    --bg-tertiary: #3a4a6a;
    
    /* Text: Warme, weiche Töne */
    --text-primary: #f5f7fa;
    --text-secondary: #c8d4e8;
    --text-muted: #a0b0c8;
    
    /* Komplementärfarbe: Sanftes Korallen/Peach (warm, pastellig) */
    --accent-coral: #ff9a8b;
    --accent-coral-hover: #ffb3a8;
    --accent-coral-light: #ffc9c0;
    
    /* Sekundär-Akzent: Pastell-Cyan/Teal */
    --accent-cyan: #7dd3cc;
    --accent-cyan-hover: #9ee3dd;
    
    /* Tertiär-Akzent: Sanftes Gelb/Amber */
    --accent-amber: #ffd89b;
    --accent-amber-hover: #ffe5b8;
    
    /* Borders & Dividers: Weiche, pastellige Töne */
    --border: #3a4a6a;
    --border-light: #4a5a7a;
    
    /* Overlay & Shadows: Gedämpfte, warme Töne */
    --overlay: rgba(30, 42, 71, 0.85);
    --shadow-color: rgba(30, 42, 71, 0.3);
    --glow-coral: rgba(255, 154, 139, 0.4);
    --glow-cyan: rgba(125, 211, 204, 0.4);
}

body {
    font-family: 'Barrio', sans-serif;
    background: linear-gradient(180deg, 
        var(--bg-primary) 0%, 
        var(--bg-secondary) 50%,
        var(--bg-primary) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--overlay);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px var(--shadow-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-music-player {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.music-nav-btn {
    background: linear-gradient(135deg, 
        rgba(255, 154, 139, 0.15) 0%, 
        rgba(125, 211, 204, 0.1) 100%);
    border: 2px solid rgba(255, 154, 139, 0.25);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-size: 0.9rem;
    padding: 0;
    position: relative;
    overflow: hidden;
    opacity: 0.8;
}

.music-nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 154, 139, 0.3) 0%, 
        transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.music-nav-btn:hover::before {
    width: 100%;
    height: 100%;
}

.music-nav-btn:hover {
    transform: scale(1.1);
    border-color: var(--accent-coral);
    box-shadow: 0 4px 16px rgba(255, 154, 139, 0.3);
    opacity: 1;
}

.music-nav-btn:active {
    transform: scale(0.95);
}

.music-play-btn {
    background: linear-gradient(135deg, 
        rgba(255, 154, 139, 0.2) 0%, 
        rgba(125, 211, 204, 0.15) 100%);
    border: 2px solid rgba(255, 154, 139, 0.3);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-size: 1.2rem;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.music-play-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 154, 139, 0.4) 0%, 
        transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.music-play-btn:hover::before {
    width: 100%;
    height: 100%;
}

.music-play-btn:hover {
    transform: scale(1.1);
    border-color: var(--accent-coral);
    box-shadow: 0 4px 16px rgba(255, 154, 139, 0.4);
}

.music-play-btn:active {
    transform: scale(0.95);
}

.music-play-icon,
.music-pause-icon {
    position: relative;
    z-index: 1;
    line-height: 1;
}

#nav-audio-player {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: 'Barrio', sans-serif;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    opacity: 0.9;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-coral);
    transition: width 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
    color: var(--accent-coral);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-logo {
    height: 80px;
    width: auto;
    transition: all 0.3s;
    display: block;
    max-width: 350px;
}

.nav-logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.logo-link {
    display: block;
}

/* Main Content */
.main-content {
    margin-top: 100px;
    min-height: calc(100vh - 100px);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-video-left,
.hero-video-right {
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video-left::after,
.hero-video-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(30, 42, 71, 0.3) 0%, 
        rgba(42, 58, 90, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-video-left {
    left: 0;
    width: calc(50% - 300px);
    min-width: 200px;
}

.hero-video-right {
    right: 0;
    width: calc(50% - 300px);
    min-width: 200px;
}

.hero-video-left video,
.hero-video-right video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.75) contrast(1.05) saturate(0.85);
    transition: filter 0.3s ease;
    position: relative;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(30, 42, 71, 0.85) 0%, 
        rgba(42, 58, 90, 0.75) 100%);
    padding: 4rem 3rem;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 8px 32px var(--shadow-color);
    max-width: 600px;
    width: 90%;
}

.hero-logo-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 8px 30px var(--glow-coral))
            drop-shadow(0 4px 20px var(--glow-cyan))
            drop-shadow(0 2px 10px rgba(255, 154, 139, 0.5));
    animation: logoFadeIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.6);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

.hero-title {
    font-family: 'Barrio', sans-serif;
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8),
                 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: 'Barrio', sans-serif;
    font-size: 2.2rem;
    color: #ffffff;
    letter-spacing: 4px;
    font-weight: 400;
    text-transform: uppercase;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7),
                 0 0 15px rgba(0, 0, 0, 0.4);
}

/* Section Titles */
.section-title {
    font-family: 'Barrio', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    line-height: 1.3;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--accent-coral) 0%, 
        var(--accent-cyan) 100%);
    border-radius: 2px;
}

/* Logo Animation Section */
.logo-animation-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, 
        var(--bg-primary) 0%, 
        var(--bg-secondary) 50%,
        var(--bg-tertiary) 100%);
    overflow: hidden;
    position: relative;
}

.logo-animation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, 
        rgba(255, 154, 139, 0.1) 0%, 
        transparent 50%),
        radial-gradient(circle at 70% 50%, 
        rgba(125, 211, 204, 0.1) 0%, 
        transparent 50%);
    pointer-events: none;
}

.logo-animation-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    align-items: center;
    justify-items: center;
}

.logo-animation-item {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-animation-item:nth-child(2) {
    min-height: 600px;
    height: auto;
    max-width: 600px;
}

.animated-logo {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px var(--glow-coral))
            drop-shadow(0 2px 8px var(--glow-cyan));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-animation-item:nth-child(2) .animated-logo {
    max-height: 600px !important;
    min-height: 500px;
    width: auto;
    height: auto;
}

.animated-logo:hover {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 8px 25px var(--glow-coral))
            drop-shadow(0 4px 15px var(--glow-cyan));
}

.animation-section-text {
    font-family: 'Barrio', sans-serif;
    text-align: center;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-top: 4rem;
    padding: 0 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    opacity: 1;
    animation: fadeInUp 1s ease-out 0.5s both;
}

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

.spin-logo {
    animation: spin 20s linear infinite;
    max-height: 600px !important;
    min-height: 500px;
    width: auto;
    height: auto;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Pulse animation wird jetzt auf alle Logos außer spin-logo angewendet */

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.85;
    }
}

.animated-logo:not(.spin-logo) {
    animation: pulse 3s ease-in-out infinite;
}

/* Event Section */
.event-section {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.event-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, 
        rgba(255, 154, 139, 0.08) 0%, 
        transparent 50%),
        radial-gradient(circle at 80% 70%, 
        rgba(125, 211, 204, 0.08) 0%, 
        transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.event-section > * {
    position: relative;
    z-index: 1;
}

.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.event-card {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, 
        var(--bg-secondary) 0%, 
        var(--bg-tertiary) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--accent-coral) 0%, 
        var(--accent-cyan) 50%,
        var(--accent-amber) 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-color);
}

.event-card:hover::before {
    transform: scaleX(1);
}

.event-card h3 {
    font-family: 'Barrio', sans-serif;
    color: var(--accent-coral);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.event-date {
    font-family: 'Barrio', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.event-location {
    font-family: 'Barrio', sans-serif;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.event-doors {
    font-family: 'Barrio', sans-serif;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
    font-size: 1.1rem;
}

.event-link {
    font-family: 'Barrio', sans-serif;
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, 
        var(--accent-coral) 0%, 
        var(--accent-cyan) 100%);
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: 2px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px var(--glow-coral);
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-weight: 500;
}

.event-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s;
}

.event-link:hover {
    background: linear-gradient(135deg, 
        var(--accent-coral-hover) 0%, 
        var(--accent-cyan-hover) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--glow-coral),
                0 4px 15px var(--glow-cyan);
}

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

/* Links Section */
.links-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.links-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, 
        rgba(255, 154, 139, 0.05) 0%, 
        transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.links-section > * {
    position: relative;
    z-index: 1;
}

.links-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.links-category {
    background: linear-gradient(135deg, 
        rgba(30, 42, 71, 0.6) 0%, 
        rgba(42, 58, 90, 0.5) 100%);
    padding: 3.5rem;
    border-radius: 24px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px var(--shadow-color);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.links-category h3 {
    font-family: 'Barrio', sans-serif;
    color: var(--accent-coral);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.link-item {
    font-family: 'Barrio', sans-serif;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.9;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 12px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.link-item::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    display: inline-block;
}

.link-item:hover {
    color: var(--accent-coral);
    opacity: 1;
    transform: translateX(5px);
    padding-left: 1rem;
}

.link-item:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, 
        var(--bg-secondary) 0%, 
        var(--bg-primary) 100%);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    display: block;
    margin: 0 auto;
}

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

.footer-section h4 {
    font-family: 'Barrio', sans-serif;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.footer-section p {
    font-family: 'Barrio', sans-serif;
    color: var(--text-primary);
    line-height: 2;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.85;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--accent-coral);
    transition: color 0.3s ease;
}

.footer-links-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link {
    font-family: 'Barrio', sans-serif;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    transition: all 0.3s ease;
    opacity: 0.7;
    position: relative;
}

.footer-link::after {
    content: '•';
    margin-left: 1rem;
    opacity: 0.3;
}

.footer-link:last-child::after {
    display: none;
}

.footer-link:hover {
    color: var(--accent-coral);
    opacity: 1;
    transform: translateY(-2px);
}

.footer-bottom {
    font-family: 'Barrio', sans-serif;
    text-align: center;
    padding-top: 2rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Arts Page */
.arts-page {
    margin-top: 100px;
}

/* Connect Page */
.connect-page {
    margin-top: 0;
}

.connect-hero {
    position: relative;
}

.connect-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    top: 60%;
    transform: translate(-50%, -40%);
}

.connect-overlay .section-title {
    animation: connectTitleExtreme 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    transform-origin: center;
}

@keyframes connectTitleExtreme {
    0% {
        transform: translateY(0) rotate(-2deg) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-15px) rotate(3deg) scale(1.05);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(-3deg) scale(1.08);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-20px) rotate(2deg) scale(1.05);
        opacity: 1;
    }
    100% {
        transform: translateY(0) rotate(-2deg) scale(1);
        opacity: 0.8;
    }
}

.contact-info-section {
    max-width: 600px;
    width: 100%;
}

.contact-info-section {
    background: linear-gradient(135deg, 
        rgba(30, 42, 71, 0.6) 0%, 
        rgba(42, 58, 90, 0.5) 100%);
    padding: 3rem;
    border-radius: 24px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px var(--shadow-color);
}

.connect-subtitle {
    font-family: 'Barrio', sans-serif;
    font-size: 2.5rem;
    color: var(--accent-coral);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(255, 154, 139, 0.3);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    text-align: center;
}

.contact-label {
    font-family: 'Barrio', sans-serif;
    font-size: 1.5rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-value {
    font-family: 'Barrio', sans-serif;
    font-size: 1.4rem;
    color: var(--text-primary);
    line-height: 1.8;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.contact-link {
    color: var(--accent-coral);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.contact-link:hover {
    color: var(--accent-cyan);
    border-bottom-color: var(--accent-cyan);
}

.connect-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.connect-link-item {
    font-family: 'Barrio', sans-serif;
    color: var(--text-primary);
    text-decoration: none;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.connect-link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 154, 139, 0.2), 
        transparent);
    transition: left 0.5s ease;
}

.connect-link-item:hover::before {
    left: 100%;
}

.connect-link-item:hover {
    color: var(--accent-coral);
    background: linear-gradient(135deg, 
        rgba(255, 154, 139, 0.2) 0%, 
        rgba(255, 154, 139, 0.1) 100%);
    transform: translateY(-5px);
    border-color: var(--accent-coral);
    box-shadow: 0 8px 25px rgba(255, 154, 139, 0.3);
}

.connect-link-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 8px rgba(255, 154, 139, 0.4));
}

.connect-link-text {
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Content Elements Section */
.arts-content-section {
    padding: 0.5rem 2rem 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* SoundCloud Section */
.arts-soundcloud-section {
    position: relative;
}

.arts-soundcloud-title {
    font-family: 'Barrio', sans-serif;
    font-size: 3rem;
    color: var(--accent-coral);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(255, 154, 139, 0.4);
}

.arts-soundcloud-tracks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.arts-soundcloud-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.arts-soundcloud-track {
    font-family: 'Barrio', sans-serif;
    color: var(--text-primary);
    text-decoration: none;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(30, 42, 71, 0.6) 0%, 
        rgba(42, 58, 90, 0.5) 100%);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arts-soundcloud-track::before {
    content: '🎵';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    transition: opacity 0.3s ease;
    font-size: 1.5rem;
}

.arts-soundcloud-track:hover {
    color: var(--accent-coral);
    background: linear-gradient(135deg, 
        rgba(255, 154, 139, 0.2) 0%, 
        rgba(255, 154, 139, 0.1) 100%);
    transform: translateY(-4px);
    border-color: var(--accent-coral);
    box-shadow: 0 8px 30px rgba(255, 154, 139, 0.3);
}

.arts-soundcloud-track:hover::before {
    opacity: 1;
}

.arts-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Headline section at top - reduced spacing */
.arts-section:first-of-type {
    padding-bottom: 0.5rem;
    padding-top: 1rem;
}

.arts-section:first-of-type .section-title {
    margin-bottom: 0.5rem;
}

.arts-header-video-section {
    width: 100%;
    padding: 0 2rem;
    margin: 2rem 0 0.5rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.arts-header-video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 32px var(--shadow-color);
}

.arts-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.top-timelapse-container {
    grid-column: 1;
    grid-row: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.top-timelapse-container.art-item-visible {
    opacity: 1;
    transform: translateY(0);
}

.top-timelapse-container .art-item {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
}

.bottom-videos-container {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    align-items: start;
}

.bottom-videos-container.art-item-visible {
    opacity: 1;
    transform: translateY(0);
}

.left-video-container,
.right-video-container {
    width: 100%;
}

.left-video-container .art-item,
.right-video-container .art-item {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
}

/* Arts Links Section */
.arts-links-section {
    margin-top: 0;
}

.arts-links-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.arts-links-category {
    background: linear-gradient(135deg, 
        rgba(30, 42, 71, 0.6) 0%, 
        rgba(42, 58, 90, 0.5) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arts-links-category:first-child {
    grid-column: 1;
    grid-row: 1;
}

.arts-links-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-color);
}

.arts-links-title {
    font-family: 'Barrio', sans-serif;
    font-size: 1.8rem;
    color: var(--accent-coral);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(255, 154, 139, 0.3);
}

.arts-links-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.arts-link-item {
    font-family: 'Barrio', sans-serif;
    color: var(--text-primary);
    text-decoration: none;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.arts-link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 154, 139, 0.2), 
        transparent);
    transition: left 0.5s ease;
}

.arts-link-item:hover::before {
    left: 100%;
}

.arts-link-item:hover {
    color: var(--accent-coral);
    background: linear-gradient(135deg, 
        rgba(255, 154, 139, 0.2) 0%, 
        rgba(255, 154, 139, 0.1) 100%);
    transform: translateX(5px);
    border-color: var(--accent-coral);
    box-shadow: 0 4px 15px rgba(255, 154, 139, 0.3);
}

/* Contact Category - Larger Items */
.arts-contact-category {
    grid-column: 1;
    grid-row: 2;
}

.arts-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    height: 100%;
    align-items: stretch;
}

.arts-contact-item {
    font-family: 'Barrio', sans-serif;
    color: var(--text-primary);
    text-decoration: none;
    padding: 3rem 3rem;
    background: linear-gradient(135deg, 
        rgba(255, 154, 139, 0.25) 0%, 
        rgba(125, 211, 204, 0.2) 100%);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 154, 139, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    font-size: 2.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 150px;
    height: 100%;
    min-width: 250px;
    font-weight: 400;
}

.arts-contact-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 154, 139, 0.3) 0%, 
        transparent 70%);
    animation: rotate 15s linear infinite;
    pointer-events: none;
}

.arts-contact-item:hover {
    color: var(--accent-coral);
    background: linear-gradient(135deg, 
        rgba(255, 154, 139, 0.4) 0%, 
        rgba(255, 154, 139, 0.3) 100%);
    transform: translateY(-8px) scale(1.05);
    border-color: var(--accent-coral);
    box-shadow: 0 16px 48px rgba(255, 154, 139, 0.5);
}

.arts-contact-info {
    font-family: 'Barrio', sans-serif;
    color: var(--text-primary);
    font-size: 1.4rem;
    text-align: center;
    opacity: 0.8;
    letter-spacing: 1px;
    text-transform: none;
    font-weight: 300;
    word-break: break-word;
    max-width: 100%;
}

.art-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    background: var(--bg-secondary);
}

.art-item-visible {
    opacity: 1;
    transform: translateY(0);
}

.art-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.art-item img,
.art-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.art-item:hover img,
.art-item:hover video {
    transform: scale(1.1);
}

.art-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.art-item:hover .art-shimmer {
    left: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-logo {
        height: 60px;
        max-width: 250px;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .arts-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }
    
    .top-timelapse-container {
        grid-column: 1;
        grid-row: 1;
    }
    
    .bottom-videos-container {
        grid-column: 1;
        grid-row: 2;
        grid-template-columns: 1fr;
    }
    
    .arts-links-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .arts-links-category {
        padding: 2rem 1.5rem;
        grid-column: 1;
    }
    
    .arts-contact-category {
        grid-column: 1;
    }
    
    .arts-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .arts-contact-item {
        font-size: 2rem;
        padding: 2.5rem 1.5rem;
        min-height: 120px;
    }
    
    .arts-soundcloud-title {
        font-size: 2rem;
    }
    
    .arts-soundcloud-tracks {
        grid-template-columns: 1fr;
    }
    
    .connect-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-section {
        padding: 2rem 1.5rem;
    }
    
    .connect-subtitle {
        font-size: 2rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .main-content {
        margin-top: 80px;
    }

    .hero-logo-img {
        max-width: 350px;
    }

    .hero-overlay {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .hero-video-left,
    .hero-video-right {
        width: calc(50% - 150px);
        min-width: 150px;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
        font-weight: 400;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        letter-spacing: 3px;
        font-weight: 400;
    }

    .section-title {
        font-size: 2rem;
        font-weight: 400;
        letter-spacing: 2px;
    }

    .logo-animation-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .logo-animation-item {
        max-width: 350px;
        height: 300px;
    }
    
    .animated-logo {
        max-height: 250px;
    }
    
    .animation-section-text {
        font-size: 1.3rem;
        margin-top: 3rem;
        padding: 0 1rem;
        letter-spacing: 1.5px;
        font-weight: 400;
        line-height: 1.6;
    }

    .events-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .links-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .links-category {
        padding: 2.5rem 1.5rem;
        min-height: auto;
    }
    
    .links-category h3 {
        font-size: 1.8rem;
    }
    
    .link-item {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
    }
    
    .footer-links-wall {
        gap: 0.8rem 1rem;
        padding: 1.5rem 0;
    }
    
    .footer-link {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Projects Page */
.projects-page {
    margin-top: 100px;
}

/* Impressum Page */
.impressum-page {
    margin-top: 100px;
}

.impressum-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.impressum-container {
    background: linear-gradient(135deg, 
        rgba(30, 42, 71, 0.6) 0%, 
        rgba(42, 58, 90, 0.5) 100%);
    padding: 4rem 3rem;
    border-radius: 24px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px var(--shadow-color);
    border: 2px solid rgba(255, 154, 139, 0.2);
}

.impressum-content {
    margin-top: 2rem;
}

.impressum-block {
    margin-bottom: 3rem;
}

.impressum-block:last-child {
    margin-bottom: 0;
}

.impressum-block h3 {
    font-family: 'Barrio', sans-serif;
    color: var(--accent-coral);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.impressum-block h4 {
    font-family: 'Barrio', sans-serif;
    color: var(--accent-teal);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.impressum-block p {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.impressum-link {
    color: var(--accent-teal);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.impressum-link:hover {
    color: var(--accent-coral);
    border-bottom-color: var(--accent-coral);
}

.impressum-link-footer {
    margin-left: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.impressum-link-footer:hover {
    opacity: 1;
}

.projects-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.project-card {
    background: linear-gradient(135deg, 
        rgba(30, 42, 71, 0.6) 0%, 
        rgba(42, 58, 90, 0.5) 100%);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px var(--shadow-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 154, 139, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.project-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 154, 139, 0.2) 0%, 
        transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-coral);
    box-shadow: 0 16px 48px rgba(255, 154, 139, 0.4);
}

.project-title {
    font-family: 'Barrio', sans-serif;
    font-size: 2rem;
    color: var(--accent-coral);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(255, 154, 139, 0.3);
}

.project-location {
    font-family: 'Barrio', sans-serif;
    font-size: 1.2rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.project-location:empty {
    display: none;
}

/* Event Content Gallery */
.event-content-gallery {
    margin-top: 2rem;
    padding-top: 0;
    border-top: none;
}

.gallery-title {
    font-family: 'Barrio', sans-serif;
    font-size: 2.5rem;
    color: var(--accent-coral);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(255, 154, 139, 0.3);
}

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

.event-content-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, 
        rgba(30, 42, 71, 0.6) 0%, 
        rgba(42, 58, 90, 0.5) 100%);
    border: 2px solid rgba(255, 154, 139, 0.2);
}

.event-content-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-coral);
    box-shadow: 0 16px 48px rgba(255, 154, 139, 0.4);
}

.event-video,
.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16 / 9;
}

.event-image {
    object-fit: cover;
}

/* Event Photos Section */
.event-photos-section {
    margin-top: 5rem;
    padding-top: 3rem;
}

.event-photos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.event-photo-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, 
        rgba(30, 42, 71, 0.6) 0%, 
        rgba(42, 58, 90, 0.5) 100%);
    border: 2px solid rgba(255, 154, 139, 0.2);
}

.event-photo-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-coral);
    box-shadow: 0 16px 48px rgba(255, 154, 139, 0.4);
}

.event-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    min-height: 400px;
    background: linear-gradient(135deg, 
        rgba(30, 42, 71, 0.3) 0%, 
        rgba(42, 58, 90, 0.2) 100%);
}

/* Responsive Design for Projects */
@media (max-width: 768px) {
    .projects-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-card {
        padding: 2.5rem 2rem;
    }
    
    .project-title {
        font-size: 1.75rem;
    }
    
    .project-location {
        font-size: 1.1rem;
    }
    
    .event-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .event-photos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-photos-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    /* Navigation Music Player Mobile */
    .nav-music-player {
        gap: 0.3rem;
    }
    
    .music-play-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .music-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    /* Hero Section Mobile */
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-video-left,
    .hero-video-right {
        width: calc(50% - 100px);
        min-width: 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .hero-logo-img {
        max-width: 280px;
    }
    
    /* Connect Page Mobile */
    .connect-hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .connect-overlay {
        top: 55%;
        transform: translate(-50%, -35%);
    }
    
    .contact-details {
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .contact-label {
        font-size: 1.2rem;
    }
    
    .contact-value {
        font-size: 1rem;
    }
    
    /* Impressum Page Mobile */
    .impressum-section {
        padding: 2rem 1rem;
    }
    
    .impressum-container {
        padding: 2.5rem 1.5rem;
    }
    
    .impressum-block h3 {
        font-size: 1.3rem;
    }
    
    .impressum-block h4 {
        font-size: 1.1rem;
    }
    
    .impressum-block p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Footer Mobile */
    .footer-container {
        padding: 2rem 1.5rem;
    }
    
    .footer-links-wall {
        gap: 1rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Arts Page Mobile */
    .arts-header-video-section {
        margin-bottom: 2rem;
    }
    
    .arts-header-video {
        width: 100%;
        height: auto;
        max-height: 50vh;
    }
    
    .arts-section {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .bottom-videos-container video {
        width: 100%;
        height: auto;
    }
    
    /* Projects Section Mobile */
    .projects-section {
        padding: 2rem 1rem;
    }
    
    .gallery-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

/* Extra Small Devices (320px - 480px) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0.8rem 1rem;
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: center;
    }
    
    .nav-logo {
        height: 50px;
        max-width: 200px;
        order: 1;
    }
    
    .nav-menu {
        gap: 0.6rem;
        flex-wrap: wrap;
        justify-content: center;
        order: 3;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        letter-spacing: 1px;
        padding: 0.3rem 0.5rem;
    }
    
    .nav-music-player {
        order: 2;
        justify-content: center;
    }
    
    .main-content {
        margin-top: 70px;
    }
    
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-video-left,
    .hero-video-right {
        width: calc(50% - 60px);
        min-width: 60px;
    }
    
    /* Hide videos on very small screens if they become too small */
    @media (max-width: 360px) {
        .hero-video-left,
        .hero-video-right {
            display: none;
        }
        
        .hero-overlay {
            width: 100%;
            left: 50%;
        }
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }
    
    .hero-logo-img {
        max-width: 220px;
    }
    
    .hero-overlay {
        padding: 1.5rem 1rem;
        max-width: 95%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .connect-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .connect-overlay {
        top: 50%;
        transform: translate(-50%, -30%);
    }
    
    .contact-info-section {
        padding: 1.5rem 1rem;
    }
    
    .contact-item {
        padding: 1.2rem;
    }
    
    .contact-label {
        font-size: 1.1rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
    }
    
    .impressum-container {
        padding: 2rem 1rem;
    }
    
    .impressum-block h3 {
        font-size: 1.2rem;
    }
    
    .impressum-block h4 {
        font-size: 1rem;
    }
    
    .impressum-block p {
        font-size: 0.85rem;
    }
    
    .project-card {
        padding: 2rem 1.5rem;
    }
    
    .project-title {
        font-size: 1.5rem;
    }
    
    .project-location {
        font-size: 1rem;
    }
    
    .footer-container {
        padding: 1.5rem 1rem;
    }
    
    .footer-links-wall {
        gap: 0.8rem;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
    }
    
    .arts-contact-item {
        font-size: 1.5rem;
        padding: 2rem 1rem;
        min-height: 100px;
    }
    
    .arts-links-category {
        padding: 1.5rem 1rem;
    }
    
    .arts-soundcloud-title {
        font-size: 1.5rem;
    }
}
