/* ============================================
   PHOTOGRAPHER PORTFOLIO WEBSITE
   Modern, clean design with responsive layout
   ============================================ */

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

:root {
    --primary-color: #1a1a1a;
    --accent-color: #ff009e;
    --light-color: #f5f5f5;
    --dark-color: #1a1a1a;
    --text-color: #333;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

/* Mobile-only line break */
.mobile-break {
    display: none;
}

/* Desktop-only line break */
.desktop-break {
    display: block;
}

/* Desktop-only content (visible on tablet and desktop) */
.desktop-only {
    display: block;
}

/* Mobile-only content (hidden on tablet and desktop) */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
    .desktop-break {
        display: none;
    }
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: white;
    color: white;
    padding: 1rem 0;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    transition: min-height 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: none;
    padding: 0 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    padding-left: 78px;
}

.nav-brand h1 {
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--accent-color);
    font-weight: 300;
}

.nav-brand .logo {
    height: 250px;
    width: auto;
    object-fit: contain;
    display: block !important;
    visibility: visible !important;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding-right: 25px;
}

.nav-menu a {
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-right: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: auto;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    overflow: visible;
    padding: 40px 0 0;
}

.hero-title-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0;
    padding: 0 20px;
    padding-left: 98px;
}

.hero-title-picture {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    visibility: visible;
}

.hero-title-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    object-position: left;
    visibility: visible;
}

/* Mobile Hero: zwei Bilder mit Text dazwischen */
.hero-mobile {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 12px;
}

.hero-mobile-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-mobile-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #1a1a1a;
    text-align: center;
    padding: 24px 0;
    margin: 0 !important;
    letter-spacing: 0.5px;
    line-height: 1;
}

.hero-mobile-image {
    margin: 0;
}

.hero-content {
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    margin-top: 0;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-weight: 300;
}

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    transition: var(--transition);
    font-weight: 500;
}

.btn-primary {
    background: white;
    color: #1a1a1a;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-light {
    background: white;
    color: #1a1a1a;
}

.btn-light:hover {
    background: var(--accent-color);
    color: #1a1a1a;
}

/* ============================================
   FEATURED WORK SECTION
   ============================================ */

.featured-work {
    padding: 0 0 1rem;
    background: white;
}

.featured-work > .container {
    max-width: none;
    padding: 0;
}

.featured-work h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: #999;
    margin-bottom: 3rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

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

.featured-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    group: "featured";
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.featured-item:hover img {
    transform: scale(1.05);
}

.featured-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 30px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.featured-item:hover .featured-info {
    transform: translateY(0);
}

.featured-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.featured-info p {
    font-size: 0.9rem;
    color: #ddd;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.service-card {
    text-align: center;
    padding: 30px;
    transition: var(--transition);
}

.service-card:hover {
    background: var(--light-color);
    padding: 30px;
    border-radius: 8px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.service-card p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 300;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    background: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 1px;
}

.cta .btn {
    border-color: white;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    color: #ddd;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.page-header p {
    font-size: 1.3rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    letter-spacing: 0.5px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */

.portfolio {
    padding: 12px 12px;
}

.portfolio .container {
    max-width: 100%;
    padding: 0;
}

.portfolio-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.portfolio-gallery .gallery-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: calc(50% - 6px);
    max-width: calc(50% - 6px);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 1;
    transition: var(--transition);
}

.gallery-item.full-width {
    min-width: 100%;
    max-width: 100%;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.view-btn {
    background: var(--accent-color);
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
    border-radius: 2px;
    font-weight: 600;
}

.view-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* ============================================
   CAROUSEL / LIGHTBOX
   ============================================ */

.carousel-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.carousel-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.carousel-container {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#carousel-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.carousel-close,
.carousel-prev,
.carousel-next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
    z-index: 2001;
}

.carousel-close {
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    line-height: 1;
}

.carousel-close:hover {
    color: var(--accent-color);
}

.carousel-prev,
.carousel-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-prev:hover,
.carousel-next:hover {
    color: var(--accent-color);
}

.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    background: rgba(0,0,0,0.5);
    padding: 10px 20px;
    border-radius: 2px;
    max-width: 90%;
    text-align: center;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 80px 0;
    background: var(--light-color);
}

.about-section.about-page {
    background: white;
    padding: 40px 0 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.about-text p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
    font-size: 1rem;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background: var(--light-color);
    padding: 30px;
    border-radius: 4px;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-member img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.team-member .position {
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.team-member p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 300;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    padding: 80px 0;
    background: var(--light-color);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-left: 4px solid var(--accent-color);
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 12px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form h2,
.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 0, 158, 0.18);
}

.form-message {
    margin-top: 1rem;
    padding: 12px;
    border-radius: 2px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.info-item p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 300;
    color: #666;
    line-height: 1.8;
}

.info-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--primary-color);
}

.info-items-row {
    display: flex;
    flex-direction: column;
}

.info-items-row .info-item {
    margin-bottom: 1rem;
}

/* Contact Image - füllt den Whitespace rechts */
.contact-image {
    margin-top: 2rem;
}

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

.social-info {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: white;
    color: var(--primary-color);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mittlere Bildschirmgrößen (Tablets, kleine Laptops) */
@media (max-width: 1100px) {
    .nav-brand .logo {
        height: 180px;
    }
    
    .navbar {
        min-height: 200px;
    }
    
    .nav-menu {
        gap: 1.2rem;
    }
}

@media (max-width: 900px) {
    .nav-brand .logo {
        height: 140px;
    }
    
    .navbar {
        min-height: 160px;
    }
    
    .nav-menu {
        gap: 0.8rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 12px;
    }

    .nav-brand {
        flex: 1 1 auto;
        padding-right: 0;
        padding-left: 0;
    }

    .nav-brand .logo {
        max-width: calc(100vw - 60px);
        height: 100px !important;
        margin-right: 0;
    }
    
    .hero-title-wrapper {
        padding: 0 12px;
        padding-left: 12px;
    }
    
    /* Mobile Hero: Desktop ausblenden, Mobile einblenden */
    .hero-desktop {
        display: none;
    }
    
    .hero-mobile {
        display: flex;
    }
    
    .hero {
        padding: 20px 0 0;
    }
    
    .about-intro {
        padding: 0 6px;
    }

    .nav-menu {
        position: fixed;
        left: 12px;
        right: 12px;
        transform: translateX(-110%);
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: auto;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        gap: 0;
        border: 1px solid var(--accent-color);
        border-radius: 6px;
    }

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

    .nav-menu a {
        font-size: 0.85rem;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 12px 0;
        margin: 0 auto;
        color: var(--primary-color);
    }

    .nav-menu a::after {
        bottom: 6px;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .featured-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Contact Image auf Mobile zentriert */
    .contact-image {
        display: flex;
        justify-content: center;
    }
    
    .contact-image img {
        max-width: 80%;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Portfolio: 2 Spalten auf Tablet */
    .portfolio-gallery .gallery-column {
        min-width: calc(50% - 6px);
        max-width: calc(50% - 6px);
    }
    
    /* CTA Section: kleinere Schrift auf Mobile */
    .cta .btn {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-brand .logo {
        max-width: calc(100vw - 100px);
        height: 100px !important;
    }

    .nav-brand h1 {
        font-size: 1.2rem;
    }

    .nav-menu {
        top: 70px;
    }

    .nav-menu a {
        font-size: 0.65rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .featured-work h2,
    .services h2,
    .cta h2 {
        font-size: 1.8rem;
    }

    .featured-gallery {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.3rem;
    }

    .carousel-prev,
    .carousel-next {
        font-size: 1.5rem;
    }

    .carousel-close {
        font-size: 2rem;
    }
    
    /* Portfolio: 2 Spalten auf Mobile */
    .portfolio-gallery .gallery-column {
        min-width: calc(50% - 6px);
        max-width: calc(50% - 6px);
    }
    
    .gallery-item.full-width {
        min-width: 100%;
        max-width: 100%;
    }
}

/* ============================================
   GALLERY IMAGE OPTIMIZATION
   ============================================ */

.portfolio-gallery img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lazy Loading Support */
img[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

/* Keine Lade-Animation für transparente Bilder */
.editorial-image img[loading="lazy"],
img.section-image[loading="lazy"] {
    background: none;
    animation: none;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   PRICING PAGE STYLES
   ============================================ */

.pricing-section {
    padding: 12px 0;
    background: #fafafa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: bold;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.price {
    margin: 2rem 0 3rem 0;
}

.price .amount {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.pricing-card .features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card .features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: #666;
}

.pricing-card .features li:before {
    content: '✓ ';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.pricing-card .package-desc {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 300;
    margin: 2rem 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-info {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    margin-top: 4rem;
    text-align: center;
}

.pricing-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pricing-info p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 300;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* ============================================
   IMPRESSUM PAGE STYLES
   ============================================ */

.impressum-section {
    padding: 60px 0;
    background: #fafafa;
}

.impressum-content {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.impressum-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.impressum-content h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.impressum-content p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 300;
    color: #666;
    margin-bottom: 1rem;
}

.impressum-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.impressum-content a:hover {
    text-decoration: underline;
}

/* ============================================
   ABOUT PHOTOS STYLES
   ============================================ */

.about-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-photo-item {
    display: flex;
    flex-direction: column;
}

.about-photos img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 12px;
}

.photo-caption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

/* Mobile: Fotos untereinander */
@media (max-width: 768px) {
    .about-photos {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 12px;
    }
}

/* Single centered photo */
.about-photo-single {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-top: 40px;
}

/* ============================================
   ABOUT INTRO STYLES
   ============================================ */

.about-intro {
    max-width: none;
    margin: 2rem 0;
    padding-left: 98px;
    padding-right: 98px;
}

.about-intro blockquote {
    font-family: 'Libre Baskerville', serif;
    font-style: normal;
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--primary-color);
    padding: 0 calc(25vw - 98px);
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.about-intro p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    margin-top: 0;
    margin-bottom: 1em;
    text-align: left;
}

.about-intro .btn {
    display: block;
    margin: 2rem auto 4rem;
    width: fit-content;
    text-align: center;
}

/* Editorial Bild */
.editorial-image {
    display: block;
    margin: 2rem 0;
}

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

/* Section Images (Negativbild, Klara & Anton etc.) */
.section-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 2rem 0;
}

/* Home Images - zwei Bilder nebeneinander, linksbündig mit Titelbild */
.home-images {
    display: flex;
    gap: 12px;
    margin: 1.5rem 0;
    margin-left: 0;
    margin-right: 0;
}

.home-images img {
    flex: 1;
    width: calc(50% - 6px);
    height: auto;
    object-fit: cover;
}

/* Intro Headline - größere Schrift für "Analoge Erinnerungen." in Pink */
.about-intro .intro-headline {
    font-size: 1.5rem;
    font-weight: normal;
    color: var(--accent-color);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Mobile: Text fast bis zum Rand, kleinere Schrift */
@media (max-width: 768px) {
    
    .about-intro {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .about-intro p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .about-intro .intro-headline {
        font-size: 1.15rem;
    }
    
    .about-intro blockquote {
        font-size: 1.4rem;
        padding: 0;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .about-intro .btn {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 1.5rem;
        margin-bottom: 3rem;
        width: fit-content;
    }

    .editorial-image {
        margin: 1.5rem 0;
    }

    .section-image {
        margin: 1.5rem 0;
    }

    .about-intro .intro-headline {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Mobile: Bilder nebeneinander */
    .home-images {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

/* ============================================
   RESPONSIVE PRICING
   ============================================ */

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .price .amount {
        font-size: 2.5rem;
    }

    .impressum-content {
        padding: 1.5rem;
    }
}

/* ============================================
   FORM REQUIRED FIELD STYLES
   ============================================ */

.required {
    color: var(--accent-color);
    font-weight: 600;
}

.required-hint {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
}

/* ============================================
   CAPTCHA STYLES
   ============================================ */

.captcha-group {
    background: #f8f8f8;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.captcha-group label {
    font-weight: 500;
    color: #555;
}

#captcha-question {
    font-weight: 600;
    color: var(--primary-color);
}

.captcha-group input {
    max-width: 150px;
    margin-top: 0.5rem;
}

