* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #FFFFFF;
    --primary-color: #031e2d;
    --secondary-color: #f1ede6;
    --accent-color: #c09f7b;
    --transition-speed: 0.3s;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(3, 30, 45, 0.15);
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    background-color: var(--secondary-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--accent-color);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform var(--transition-speed);
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--primary-color);
    line-height: 1;
}

.logo-sub {
    font-size: 11px;
    font-weight: 300;
    color: var(--accent-color);
    letter-spacing: 0.5px;
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    transition: color var(--transition-speed);
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.nav-link svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-speed);
}

.nav-link:hover svg {
    transform: scale(1.1);
}

.instagram-link {
    color: var(--accent-color);
    font-weight: 600;
}

.instagram-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-speed);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 20px;
    background-color: rgba(192, 159, 123, 0.1);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 14px;
    cursor: pointer;
    opacity: 0.5;
    transition: all var(--transition-speed);
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 12px;
}

.lang-btn.active {
    opacity: 1;
    color: var(--accent-color);
    background-color: rgba(192, 159, 123, 0.15);
}

.lang-btn:hover {
    opacity: 1;
}

.lang-divider {
    color: var(--primary-color);
    opacity: 0.3;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('pictures/hero.jpg?v=2');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.4);
    z-index: 0;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    color: var(--bg-color);
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 24px;
    color: var(--bg-color);
    opacity: 0.95;
    margin-bottom: 40px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--bg-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 15px rgba(192, 159, 123, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 159, 123, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Featured Section */
.featured {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.featured h2,
.portfolio h2,
.photographers h2,
.contact h2,
.impressum h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    width: 100%;
}

.featured h2::after,
.portfolio h2::after,
.photographers h2::after,
.contact h2::after,
.impressum h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 3/2;
    background-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-speed);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(3, 30, 45, 0.95), rgba(3, 30, 45, 0.7) 60%, transparent);
    padding: 30px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--bg-color);
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 600;
}

.portfolio-overlay p {
    color: var(--accent-color);
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

/* Photographers Section */
.photographers {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.photographers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.photographer-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 3/2;
    background-color: var(--secondary-color);
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-md);
}

.photographer-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.photographer-item > img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.photographer-item:hover > img:first-child {
    transform: scale(1.08);
}

.photographer-profile-pic {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 10;
    border: 3px solid var(--bg-color);
    transition: transform var(--transition-speed);
}

.photographer-item:hover .photographer-profile-pic {
    transform: scale(1.05);
}

.photographer-instagram-link {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 10;
    transition: all var(--transition-speed);
    cursor: pointer;
}

.photographer-instagram-link:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.photographer-instagram-link svg {
    width: 26px;
    height: 26px;
}

.photographer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(3, 30, 45, 0.95), rgba(3, 30, 45, 0.6) 70%, transparent);
    padding: 30px;
}

.photographer-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.photographer-info {
    flex: 1;
}

.photographer-overlay h3 {
    color: var(--bg-color);
    font-size: 22px;
    margin-bottom: 4px;
    font-weight: 600;
}

.photographer-overlay p {
    color: var(--accent-color);
    font-size: 14px;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-color);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 30px;
}

.form-group-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.form-group-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all var(--transition-speed);
    background-color: var(--bg-color);
    color: var(--primary-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(192, 159, 123, 0.1);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--accent-color);
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--bg-color);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 12px rgba(3, 30, 45, 0.2);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    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;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 159, 123, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.96);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-images-container {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 80vh;
}

/* Loading Spinner für Lightbox */
.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 4px solid rgba(192, 159, 123, 0.2);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.lightbox-images-container {
    position: relative;
}

.lightbox-images-container img {
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.lightbox-images-container img.loaded {
    opacity: 1;
}

/* Slide animations for lightbox - DISABLED */
@keyframes slideInRight {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeSlideIn {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-images-container img.slide-in-right {
    animation: none;
}

.lightbox-images-container img.slide-in-left {
    animation: none;
}

.lightbox-images-container img.slide-out-right {
    animation: none;
}

.lightbox-images-container img.slide-out-left {
    animation: none;
}

.lightbox-images-container img.fade-slide-in {
    animation: none;
}

.lightbox-images-container.single-image img {
    max-width: 90vw;
}

.lightbox-images-container.portrait-pair img {
    max-width: calc(45vw - 10px);
    height: auto;
}

.lightbox-info {
    margin-top: 20px;
    text-align: center;
    color: var(--bg-color);
}

.lightbox-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 600;
}

.lightbox-info p {
    color: var(--accent-color);
    font-size: 14px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--bg-color);
    font-size: 32px;
    cursor: pointer;
    z-index: 2001;
    transition: all var(--transition-speed);
    padding: 12px 20px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(192, 159, 123, 0.3);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: scale(1.1);
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 50px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left p {
    margin: 0;
    opacity: 0.9;
}

.footer-left a {
    transition: color var(--transition-speed);
}

.footer-left a:hover {
    color: var(--bg-color);
    text-decoration: underline;
}

.footer-right {
    display: flex;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--bg-color);
    text-decoration: none;
    transition: all var(--transition-speed);
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    color: var(--accent-color);
    background: rgba(192, 159, 123, 0.1);
    transform: translateY(-2px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Impressum Section */
.impressum {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.impressum-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--secondary-color);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.impressum-section {
    margin-bottom: 40px;
}

.impressum-section h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    font-weight: 600;
}

.impressum-section h4 {
    color: var(--accent-color);
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.impressum-section p {
    color: var(--primary-color);
    line-height: 1.8;
    margin-bottom: 10px;
}

.impressum-section a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all var(--transition-speed);
    font-weight: 500;
}

.impressum-section a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all var(--transition-speed);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition-speed);
    backdrop-filter: blur(5px);
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        position: relative;
    }
    
    .menu-toggle {
        display: flex;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .logo {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    header nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--secondary-color);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    }
    
    header nav.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .instagram-link {
        order: -1;
    }
    
    .language-selector {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--accent-color);
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .photographers-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-container {
        padding: 15px 20px;
    }

    .hero {
        margin-top: 70px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .portfolio-grid,
    .featured-grid,
    .photographers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .impressum-content {
        padding: 30px 20px;
    }

    /* Lightbox Mobile - Hide visible buttons but keep touch areas */
    .lightbox-prev,
    .lightbox-next {
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .lightbox-close {
        position: fixed !important;
        top: 10px !important;
        right: 10px !important;
        font-size: 32px !important;
        width: 50px !important;
        height: 50px !important;
        padding: 5px !important;
        z-index: 2003 !important;
    }

    .lightbox-content {
        width: 100%;
        max-width: 100%;
        padding: 60px 10px 100px;
    }

    .lightbox-images-container {
        width: 100%;
        max-width: 100%;
        max-height: calc(100vh - 180px);
        gap: 10px;
    }

    .lightbox-images-container img {
        max-width: 100%;
        max-height: calc(100vh - 180px);
        width: auto;
        height: auto;
    }

    .lightbox-images-container.single-image img {
        max-width: 100%;
    }

    .lightbox-images-container.portrait-pair {
        flex-direction: column;
    }

    .lightbox-images-container.portrait-pair img:first-child {
        display: block;
        max-width: 100%;
        max-height: calc(100vh - 180px);
    }

    .lightbox-images-container.portrait-pair img:last-child {
        display: none !important;
    }

    .lightbox-info {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0;
        padding: 15px 20px;
        background: rgba(0, 0, 0, 0.9);
        z-index: 2002;
        backdrop-filter: blur(10px);
    }

    .lightbox-info h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .lightbox-info p {
        font-size: 12px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .featured h2,
    .portfolio h2,
    .photographers h2,
    .contact h2,
    .impressum h2 {
        font-size: 32px;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 15px;
    }

    .lightbox-content {
        padding: 60px 5px 80px;
    }

    .lightbox-images-container {
        max-height: calc(100vh - 160px);
    }

    .lightbox-images-container img {
        max-height: calc(100vh - 160px);
    }

    .lightbox-images-container.portrait-pair img {
        max-height: 45vh;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

/* Accessibility: Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 6px;
    border: 3px solid var(--secondary-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.form-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all var(--transition-speed);
    background-color: var(--bg-color);
    color: var(--primary-color);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23031e2d' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(192, 159, 123, 0.1);
}

.form-select:hover {
    border-color: var(--accent-color);
}

/* Articles Section Styles */
.new-articles {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.new-articles h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    width: 100%;
}

.new-articles h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.articles-preview-container {
    max-width: 1000px;
    margin: 0 auto;
}

.article-preview-item {
    background: var(--bg-color);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-speed);
    cursor: pointer;
}

.article-preview-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.article-preview-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    padding: 30px;
    align-items: center;
}

.article-preview-thumbnail {
    width: 200px;
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.article-preview-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.article-preview-item:hover .article-preview-thumbnail img {
    transform: scale(1.05);
}

.article-preview-info {
    flex: 1;
}

.article-preview-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.article-preview-info .subtitle {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 500;
}

.article-preview-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.article-preview-item.expanded .article-preview-content {
    max-height: 600px;
}

.article-preview-item.expanded .article-preview-thumbnail {
    width: 100%;
    height: 250px;
}

.article-preview-item.expanded .article-preview-header {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
}

.article-preview-body {
    padding: 0 30px 30px;
}

.article-preview-text {
    color: var(--primary-color);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.article-preview-footer {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.read-article-btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--accent-color);
    color: var(--bg-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 12px rgba(192, 159, 123, 0.3);
    text-align: center;
}

.read-article-btn-de {
    background-color: var(--primary-color);
}

.read-article-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 159, 123, 0.4);
}

.read-article-btn-en:hover {
    background-color: var(--primary-color);
}

.read-article-btn-de:hover {
    background-color: var(--accent-color);
}

@media (max-width: 768px) {
    .article-preview-header {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .article-preview-thumbnail {
        width: 100%;
        height: 200px;
    }

    .article-preview-item.expanded .article-preview-thumbnail {
        height: 200px;
    }

    .article-preview-body {
        padding: 0 20px 20px;
    }

    .article-preview-info h3 {
        font-size: 20px;
    }
}