/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===================================
   Custom Font Definition
   =================================== */
@font-face {
    font-family: 'GlossAndBloom';
    src: url('/assets/fonts/GlossAndBloom/font.woff2') format('woff2'),
         url('/assets/fonts/GlossAndBloom/font.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===================================
   Base Typography
   =================================== */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'GlossAndBloom', serif;
    font-weight: normal;
}

section {
    position: relative;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===================================
   Light Animation Background
   =================================== */
.light-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.light-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
    mix-blend-mode: screen;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(25, 175, 142, 0.5) 0%, transparent 70%);
    top: 10%;
    left: -5%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    top: 50%;
    right: -10%;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(74, 233, 201, 0.3) 0%, transparent 70%);
    bottom: 20%;
    left: 40%;
}

/* ===================================
   Particles
   =================================== */
.particles {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 10s infinite linear;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1.5);
    }
}

/* ===================================
   Go Up Button
   =================================== */
.go-up-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #19af8e, #4ae9c9);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(25, 175, 142, 0.4);
}

.go-up-btn.visible {
    opacity: 1;
    visibility: visible;
    animation: pulse 2s ease-in-out infinite;
}

.go-up-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(25, 175, 142, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(25, 175, 142, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(25, 175, 142, 0.6);
    }
}

/* ===================================
   Navigation
   =================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 50px;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav.scrolled {
    padding: 10px 50px;
    background: rgba(0,0,0,0.95);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'GlossAndBloom', serif;
    font-size: 4rem;
    color: rgb(20, 25, 25);
    text-shadow: 
        0 0 1px rgb(25, 175, 142),
        0 0 2px rgb(25, 175, 142),
        0 0 10px rgba(25, 175, 142, 0.5);
    -webkit-text-stroke: 0.8px rgb(25, 175, 142);
    transform: rotate(-3deg);
    margin: 0;
    letter-spacing: 3px;
    font-weight: normal;
    filter: drop-shadow(0 0 15px rgba(25, 175, 142, 0.6));
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #19af8e;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #19af8e;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-nav {
    background: linear-gradient(45deg, #19af8e, #4ae9c9);
    padding: 10px 25px;
    border-radius: 25px;
    color: #000 !important;
    font-weight: 600;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(25, 175, 142, 0.4);
}

.cta-nav::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #19af8e;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(20px);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
    border-bottom: 1px solid rgba(25, 175, 142, 0.2);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    display: block;
    padding: 15px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(25, 175, 142, 0.1);
    color: #19af8e;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 50%, rgba(25, 175, 142, 0.1) 0%, transparent 50%);
    overflow: hidden;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.music-bars {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    opacity: 0.2;
}

.bar {
    width: 4px;
    background: linear-gradient(180deg, #19af8e, #4ae9c9);
    animation: musicPulse 1s ease-in-out infinite;
    border-radius: 2px;
}

.bar:nth-child(1) { animation-delay: 0s; height: 60px; }
.bar:nth-child(2) { animation-delay: 0.1s; height: 100px; }
.bar:nth-child(3) { animation-delay: 0.2s; height: 80px; }
.bar:nth-child(4) { animation-delay: 0.3s; height: 120px; }
.bar:nth-child(5) { animation-delay: 0.4s; height: 90px; }
.bar:nth-child(6) { animation-delay: 0.5s; height: 110px; }
.bar:nth-child(7) { animation-delay: 0.6s; height: 70px; }
.bar:nth-child(8) { animation-delay: 0.7s; height: 95px; }
.bar:nth-child(9) { animation-delay: 0.8s; height: 85px; }
.bar:nth-child(10) { animation-delay: 0.9s; height: 105px; }

@keyframes musicPulse {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1.5); }
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #19af8e;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
    line-height: 1.2;
}

.hero-title strong {
    font-weight: normal;
    background: linear-gradient(45deg, #19af8e, #4ae9c9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 20px;
    margin: 0 10px;
    display: inline-block;
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 50px;
    animation: fadeInUp 1.4s ease;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease;
}

/* ===================================
   Buttons
   =================================== */
.btn-primary {
    background: linear-gradient(45deg, #19af8e, #4ae9c9);
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(25, 175, 142, 0.4);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #19af8e;
    transform: translateY(-3px);
}

/* ===================================
   Section Styles
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #19af8e;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: normal;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-title strong {
    font-weight: normal;
    background: linear-gradient(45deg, #ff4a4a, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 10px;
    display: inline-block;
}

/* ===================================
   Christmas Section
   =================================== */
.christmas-section {
    padding: 120px 50px;
    background: linear-gradient(180deg, #000 0%, #0a0f1c 100%);
    position: relative;
}

.christmas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.christmas-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.christmas-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: normal;
    letter-spacing: 1px;
}

.christmas-text p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff4a4a, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.feature-icon i {
    color: #fff;
}

.feature-subtext {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.video-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.video-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.youtube-privacy-notice {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(25, 175, 142, 0.1), rgba(74, 233, 201, 0.05));
    border: 1px solid rgba(25, 175, 142, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    min-height: 338px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.privacy-icon {
    font-size: 3rem;
    color: #19af8e;
    margin-bottom: 20px;
    opacity: 0.5;
}

.youtube-privacy-notice p {
    color: rgba(255,255,255,0.8);
    margin: 10px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.youtube-privacy-notice p strong {
    color: #19af8e;
    font-weight: 600;
}

.btn-privacy {
    margin-top: 20px;
    background: linear-gradient(45deg, #19af8e, #4ae9c9);
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-privacy:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(25, 175, 142, 0.4);
}

.youtube-player {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #000;
    cursor: pointer;
}

.youtube-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    transition: all 0.3s ease;
}

.youtube-player:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.video-gallery {
    margin-top: 30px;
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    padding: 120px 50px;
    background: #0a0f1c;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 50px 45px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.service-bg-icon {
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 10rem;
    color: rgba(25, 175, 142, 0.05);
    transform: rotate(-15deg);
    transition: all 0.4s ease;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}

.service-card:hover .service-bg-icon {
    transform: rotate(-10deg) scale(1.1);
    color: rgba(25, 175, 142, 0.1);
}

.service-card > *:not(.service-bg-icon) {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: #19af8e;
    box-shadow: 0 20px 40px rgba(25, 175, 142, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: inline-block;
    color: #19af8e;
    transition: all 0.3s ease;
}

.service-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: normal;
    letter-spacing: 1px;
    line-height: 1.1;
}

.service-description {
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '✔';
    color: #19af8e;
    font-weight: bold;
}

/* ===================================
   Portfolio Section
   =================================== */
.portfolio-section {
    padding: 120px 50px;
    background: linear-gradient(180deg, #0a0f1c 0%, #000 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* ===================================
   Portfolio Card Design (NEUES SYSTEM)
   =================================== */
.portfolio-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(25, 175, 142, 0.2);
    border-color: rgba(25, 175, 142, 0.3);
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 175, 142, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.portfolio-card:hover::before {
    left: 100%;
}

/* Portfolio Media */
.portfolio-media {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    aspect-ratio: 16/9;
    cursor: pointer;
    overflow: hidden;
}

.portfolio-click-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    cursor: pointer;
}

/* Portfolio Video */
.portfolio-video {
    position: relative;
}

.portfolio-video-player {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    backface-visibility: hidden;
    perspective: 1000px;
    will-change: transform;
}

.portfolio-play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: none !important;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s ease;
    pointer-events: none;
}

.portfolio-play-indicator i {
    color: #fff;
    font-size: 24px;
    margin-left: 3px;
}

.portfolio-card:hover .portfolio-play-indicator {
    background: rgba(25, 175, 142, 0.8);
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Portfolio Details */
.portfolio-details {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-title {
    font-family: 'GlossAndBloom', serif;
    font-size: 2rem;
    color: #fff;
    margin: 0 0 12px 0;
    font-weight: normal;
    letter-spacing: 0.5px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-title {
    color: #19af8e;
}

/* Tag System */
.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.tag i {
    font-size: 0.65rem;
}

.tag-category {
    background: rgba(25, 175, 142, 0.1);
    border-color: rgba(25, 175, 142, 0.3);
    color: #4ae9c9;
}

.tag-location {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
    color: rgba(255, 215, 0, 0.8);
}

.tag-credit {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
}

.portfolio-card:hover .tag {
    transform: translateX(3px);
}

/* Portfolio Loading State */
.portfolio-card.loading .portfolio-media::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(25, 175, 142, 0.3);
    border-top-color: #19af8e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 20;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ===================================
   Portfolio Lightbox (KONSOLIDIERTE VERSION)
   =================================== */
.portfolio-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-lightbox.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    color: #19af8e;
}

.lightbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    height: 80vh;
    position: relative;
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90%;
    max-height: 100%;
}

.lightbox-media-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
}

#lightbox-image,
#lightbox-video {
    max-width: 100%;
    max-height: calc(80vh - 150px);
    width: auto;
    height: auto;
    border-radius: 12px 12px 0 0;
    background: #000;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-info-card {
    background: rgba(10, 15, 28, 0.98);
    border: 1px solid rgba(25, 175, 142, 0.2);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 25px;
    width: 100%;
    box-sizing: border-box;
}

.lightbox-info-card h3 {
    color: #fff;
    font-size: 3rem;
    margin: 0 0 15px 0;
    font-family: 'GlossAndBloom', serif;
    font-weight: normal;
    letter-spacing: 1px;
}

.lightbox-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lightbox-tags .tag {
    padding: 6px 12px;
    font-size: 0.85rem;
}

.lightbox-tags .tag i {
    font-size: 0.75rem;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(25, 175, 142, 0.2);
    border: 1px solid rgba(25, 175, 142, 0.4);
    color: #fff;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(25, 175, 142, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

/* Video Controls Styling */
#lightbox-video::-webkit-media-controls-panel {
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: 120px 50px;
    background: linear-gradient(180deg, #000 0%, #0a0f1c 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: normal;
    letter-spacing: 1px;
    color: #19af8e;
}

.about-intro {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.about-intro strong {
    color: #19af8e;
    font-weight: 600;
}

.about-text p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
    padding: 40px;
    background: rgba(25, 175, 142, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(25, 175, 142, 0.2);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255,255,255,0.8);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #19af8e;
}

.about-cta {
    font-size: 1.2rem;
    color: #19af8e;
    margin-top: 30px;
    padding: 25px;
    background: rgba(25, 175, 142, 0.1);
    border-left: 3px solid #19af8e;
    border-radius: 5px;
}

.hobby-notice {
    margin-top: 40px;
    padding: 25px;
    background: rgba(255, 215, 0, 0.05);
    border-left: 3px solid #ffd700;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.hobby-notice i {
    font-size: 1.8rem;
    color: #ffd700;
    margin-top: 5px;
}

.hobby-notice p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin: 0;
}

.hobby-notice strong {
    color: #ffd700;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-placeholder {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(25, 175, 142, 0.1), rgba(74, 233, 201, 0.1));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(25, 175, 142, 0.3);
    transition: all 0.3s ease;
}

.about-image-placeholder:hover {
    transform: scale(1.05);
    border-color: #19af8e;
    box-shadow: 0 20px 40px rgba(25, 175, 142, 0.3);
}

.about-image-placeholder i {
    font-size: 8rem;
    color: #19af8e;
    margin-bottom: 20px;
}

.about-image-placeholder p {
    font-size: 1.5rem;
    color: #19af8e;
    margin: 0;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: 120px 50px;
    background: #000;
}

.contact-content {
    max-width: 700px;
    margin: 60px auto 0;
}

.contact-form {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 50px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 0;
}

.form-group:only-child {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Date Input Styling */
.form-group input[type="date"] {
    color-scheme: dark;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.form-group input[type="date"]::-moz-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

/* Select Styling */
.form-group select {
    cursor: pointer;
    appearance: none;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    padding-right: 45px;
}

.form-group select option {
    background-color: #1a1a1a;
    color: #fff;
}

.form-group select option:hover {
    background-color: rgba(25, 175, 142, 0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #19af8e;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(25, 175, 142, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Form Validation Styles */
.form-group input.field-success,
.form-group textarea.field-success,
.form-group select.field-success {
    border-color: #19af8e !important;
    background: rgba(25, 175, 142, 0.05);
}

.form-group input.field-error,
.form-group textarea.field-error,
.form-group select.field-error {
    border-color: #ff4a4a !important;
    background: rgba(255, 74, 74, 0.05);
}

.field-error-message {
    display: block;
    color: #ff4a4a;
    font-size: 0.85rem;
    margin-top: 5px;
    padding: 5px 10px;
    background: rgba(255, 74, 74, 0.1);
    border-left: 2px solid #ff4a4a;
    border-radius: 3px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.character-counter {
    text-align: right;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
    transition: color 0.3s ease;
}

/* Checkbox Styling */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 30px 0;
}

.form-checkbox input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    opacity: 1 !important;
    position: relative !important;
    margin-right: 10px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.form-checkbox input[type="checkbox"]:checked {
    background: linear-gradient(45deg, #19af8e, #4ae9c9);
    border-color: #19af8e;
}

.form-checkbox input[type="checkbox"]:checked::after {
    content: '✔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 14px;
    font-weight: bold;
}

.form-checkbox input[type="checkbox"]:hover {
    border-color: #19af8e;
    background: rgba(25, 175, 142, 0.1);
}

.form-checkbox input[type="checkbox"]:focus {
    outline: 2px solid rgba(25, 175, 142, 0.5);
    outline-offset: 2px;
}

.form-checkbox label {
    display: inline;
    cursor: pointer;
    user-select: none;
    color: rgba(255, 255, 255, 0.8);
    vertical-align: middle;
}

.form-checkbox label:hover {
    color: #fff;
}

.form-checkbox.error {
    animation: shake 0.3s ease;
}

.form-checkbox.error input[type="checkbox"] {
    border-color: #ff4a4a;
}

.form-checkbox.error label {
    color: #ff4a4a;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Submit Button */
.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 18px;
    padding: 18px;
}

.btn-submit.loading {
    position: relative;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-submit .fa-spinner {
    animation: spin 1s linear infinite;
}

/* Form Status Messages */
.form-status {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease;
    position: relative;
}

.form-status i {
    font-size: 1.2rem;
    margin-right: 10px;
    vertical-align: middle;
}

.form-status.success {
    background: linear-gradient(135deg, rgba(25, 175, 142, 0.1), rgba(74, 233, 201, 0.05));
    border: 1px solid #19af8e;
    color: #19af8e;
}

.form-status.error {
    background: linear-gradient(135deg, rgba(255, 74, 74, 0.1), rgba(255, 107, 107, 0.05));
    border: 1px solid #ff4a4a;
    color: #ff4a4a;
}

/* ===================================
   Footer
   =================================== */
footer {
    padding: 40px 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.social-link {
    color: rgba(255,255,255,0.6);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #19af8e;
    transform: translateY(-3px);
}

.footer-location {
    margin-top: 10px;
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

.footer-privacy {
    margin-top: 15px;
}

.footer-privacy a:hover {
    color: rgba(255,255,255,0.5) !important;
}

/* ===================================
   Legal Modal
   =================================== */
.legal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.legal-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.legal-modal-content {
    background: linear-gradient(135deg, rgba(10, 15, 28, 0.98), rgba(0, 0, 0, 0.98));
    border: 1px solid rgba(25, 175, 142, 0.2);
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(25, 175, 142, 0.2);
}

.legal-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-modal-close:hover {
    background: rgba(25, 175, 142, 0.2);
    border-color: #19af8e;
    transform: rotate(90deg);
}

.legal-modal-header {
    padding: 30px 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-modal-title {
    font-family: 'GlossAndBloom', serif;
    font-size: 2.5rem;
    color: #19af8e;
    margin: 0 0 20px 0;
    font-weight: normal;
    letter-spacing: 1px;
}

.legal-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: -1px;
}

.legal-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px 10px 0 0;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.legal-tab.active {
    background: rgba(25, 175, 142, 0.1);
    border-color: #19af8e;
    color: #19af8e;
    border-bottom: 1px solid rgba(10, 15, 28, 0.98);
    margin-bottom: -1px;
    z-index: 1;
    position: relative;
}

.legal-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.legal-modal-body::-webkit-scrollbar {
    width: 8px;
}

.legal-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.legal-modal-body::-webkit-scrollbar-thumb {
    background: rgba(25, 175, 142, 0.3);
    border-radius: 4px;
}

.legal-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(25, 175, 142, 0.5);
}

.legal-content {
    display: none;
    animation: fadeInContent 0.3s ease;
}

.legal-content.active {
    display: block;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: #4ae9c9;
    margin: 30px 0 20px 0;
    font-weight: normal;
    border-bottom: 1px solid rgba(74, 233, 201, 0.2);
    padding-bottom: 10px;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content h4 {
    font-size: 1.2rem;
    color: #19af8e;
    margin: 25px 0 15px 0;
    font-weight: normal;
}

.legal-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 20px 30px;
    color: rgba(255, 255, 255, 0.7);
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-content a {
    color: #19af8e;
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-content a:hover {
    color: #4ae9c9;
    text-decoration: underline;
}

.legal-content strong {
    color: #fff;
}

.legal-info-box {
    background: rgba(25, 175, 142, 0.05);
    border-left: 3px solid #19af8e;
    padding: 20px;
    margin: 25px 0;
    border-radius: 5px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.legal-info-box i {
    color: #19af8e;
    font-size: 1.5rem;
    margin-top: 3px;
}

.legal-info-box p {
    margin: 0;
    flex: 1;
}

.legal-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInContent {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .christmas-content {
        gap: 60px;
    }
}

@media (max-width: 968px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .christmas-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    nav {
        padding: 15px 20px;
    }

    .about-section,
    .christmas-section,
    .services-section,
    .portfolio-section,
    .contact-section {
        padding: 80px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .portfolio-title {
        font-size: 1.2rem;
    }
    
    .portfolio-details {
        padding: 15px;
    }
    
    .tag {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .lightbox-info-card {
        padding: 20px;
    }
    
    .lightbox-info-card h3 {
        font-size: 1.5rem;
    }
    
    .lightbox-tags {
        gap: 8px;
    }
    
    .lightbox-tags .tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .form-checkbox {
        display: flex;
        align-items: flex-start;
    }
    
    .form-checkbox input[type="checkbox"] {
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    .field-error-message {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .character-counter {
        font-size: 0.8rem;
    }
    
    .form-status {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .legal-modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 20px;
    }
    
    .legal-modal-header {
        padding: 20px 20px 0;
    }
    
    .legal-modal-title {
        font-size: 1.8rem;
    }
    
    .legal-tabs {
        flex-direction: column;
        gap: 5px;
    }
    
    .legal-tab {
        width: 100%;
        justify-content: center;
        border-radius: 5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .legal-tab.active {
        border-bottom: none;
    }
    
    .legal-modal-body {
        padding: 20px;
    }
}

@media (max-width: 640px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-card {
        border-radius: 10px;
    }
    
    .portfolio-tags {
        gap: 6px;
    }
    
    .portfolio-play-indicator {
        width: 50px;
        height: 50px;
        opacity: 0;
        pointer-events: none;
        display: none !important;
    }
    
    .portfolio-play-indicator i {
        font-size: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
    
    #lightbox-video {
        max-height: calc(70vh - 100px);
    }
}

/* ===================================
   Accessibility & Performance
   =================================== */
@media (prefers-reduced-motion: reduce) {
    .portfolio-video-player,
    .video-indicator,
    .portfolio-card.loading::after,
    * {
        animation: none !important;
        transition: none !important;
    }
}

@media (prefers-contrast: high) {
    .video-indicator {
        background: #000;
        border: 2px solid #fff;
    }
    
    .portfolio-video:hover .video-indicator {
        background: #19af8e;
        border-color: #fff;
    }
}

@media (prefers-color-scheme: dark) {
    .portfolio-card {
        background: rgba(255, 255, 255, 0.01);
    }
    
    .portfolio-details {
        background: rgba(0, 0, 0, 0.5);
    }
}

/* ===================================
   AUSKOMMENTIERTE / ALTE STYLES
   =================================== */

/* ALTES PORTFOLIO SYSTEM - WIRD NICHT MEHR VERWENDET
.portfolio-item {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(25, 175, 142, 0.3);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.8));
    padding-left: 30px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-category {
    color: #19af8e;
    font-size: 0.95rem;
}

.portfolio-credit {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-style: italic;
    margin: 0;
}
*/

/* ALTE LIGHTBOX STYLES - ERSTE VERSION
.lightbox-info {
    background: linear-gradient(135deg, rgba(25, 175, 142, 0.05), rgba(74, 233, 201, 0.02));
    border: 1px solid rgba(25, 175, 142, 0.2);
    border-radius: 10px;
    padding: 20px 30px;
    margin-top: 20px;
    width: 100%;
    max-width: 800px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.lightbox-info-left {
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.lightbox-info h3 {
    color: #fff;
    font-size: 2rem;
    margin: 0;
    font-weight: normal;
}

#lightbox-category {
    color: #19af8e;
    font-size: 1rem;
    margin: 0;
    padding-top: 8px;
}

#lightbox-credit {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
    text-align: right;
}

@media (max-width: 968px) {
    .lightbox-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 20px;
    }
    
    .lightbox-info-left {
        flex-direction: column;
        gap: 5px;
        width: 100%;
    }
    
    #lightbox-credit {
        text-align: left;
        width: 100%;
    }
}
*/