:root {
    /* Corporate Colors */
    --c-indigo: #b7a7f8;
    --c-pink: #fc76b3;
    --c-orange: #ffbd59;
    --c-dark: #646464;
    --c-light: #ffffff;
    --c-bg: #fdfbf7;
    
    /* Gradient */
    --brand-gradient: linear-gradient(135deg, var(--c-indigo), var(--c-pink), var(--c-orange));
}

/* Sanftes Scrollen */
html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Red Hat Display', sans-serif;
    color: var(--c-dark);
    background-color: var(--c-bg);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0; 
}

/* --- SCROLL OFFSET FIX (DESKTOP) --- */
section {
    scroll-margin-top: 80px; 
    padding: 5rem 0;
}

#agentur {
    scroll-margin-top: 75px; 
}

#portfolio { scroll-margin-top: 130px; }

#kontakt {
    scroll-margin-top: 140px; 
    padding-top: 1rem; 
    padding-bottom: 5rem;
}

.en-anchor {
    display: block;
    height: 0;
    visibility: hidden;
    scroll-margin-top: 75px;
}

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- TYPOGRAPHY --- */
h1, h3 { font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
h2 { font-weight: 800; line-height: 1.1; margin-bottom: 2rem; font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
p { font-size: 1.125rem; font-weight: 400; margin-bottom: 1.5rem; }

.gradient-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-break-service, .mobile-only-break { display: none; } 
.lang-hidden { display: none !important; } 

.hide-on-mobile { display: inline; } /* DESKTOP-SICHTBARKEIT FÜR "ADVERTISING" */

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--brand-gradient);
    color: white !important;
    box-shadow: 0 10px 20px rgba(252, 118, 179, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(252, 118, 179, 0.4);
}

.btn-lang {
    background: transparent;
    border: 1px solid white; 
    color: white; 
    padding: 5px 15px;
    font-size: 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}
header.scrolled .btn-lang { border: 1px solid var(--c-dark); color: var(--c-dark); }
.btn-lang:hover { background: var(--c-light); color: var(--c-dark); border-color: var(--c-light); }
header.scrolled .btn-lang:hover { background: var(--c-dark); color: white; border-color: var(--c-dark); }

.burger-menu-btn {
    display: none; background: none; border: none; font-size: 2rem; cursor: pointer; padding: 0 5px; transition: color 0.3s; color: white; 
}
header.scrolled .burger-menu-btn { color: var(--c-dark); }

.scroll-to-top-btn {
    display: none; position: fixed; bottom: 25px; right: 25px; z-index: 999; border: none; outline: none;
    background: var(--brand-gradient); color: white; cursor: pointer; padding: 18px 22px; border-radius: 50%;
    font-size: 24px; line-height: 0; box-shadow: 0 6px 16px rgba(0,0,0,0.2); transition: opacity 0.3s, transform 0.3s;
}
.scroll-to-top-btn:hover { transform: translateY(-3px); opacity: 0.95; }

/* --- LAYOUT --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- HEADER --- */
header {
    padding: 20px 0; position: fixed; width: 100%; top: 0; z-index: 1000;
    background: transparent; backdrop-filter: blur(0px); border-bottom: none;
    transition: background 0.3s, backdrop-filter 0.3s, border-bottom 0.3s;
}
header.scrolled {
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; font-size: 1.5rem; text-decoration: none; color: white; transition: color 0.3s, transform 0.3s; }
.logo:hover { transform: scale(1.05); }
header.scrolled .logo { color: var(--c-dark); }

.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.desktop-menu { display: flex; gap: 1.5rem; align-items: center; }
.desktop-menu a.text-link { text-decoration: none; color: white; font-weight: 600; font-size: 0.95rem; position: relative; transition: color 0.3s; }
header.scrolled .desktop-menu a.text-link { color: var(--c-dark); }
.desktop-menu a.text-link::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0;
    background-color: var(--c-pink); transition: width 0.3s;
}
.desktop-menu a.text-link:hover::after { width: 100%; }

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--c-bg); z-index: 4000; padding: 20px; overflow-y: auto; animation: slideIn 0.3s forwards;
}
.mobile-menu-overlay::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 8px; background: var(--brand-gradient);
}
.mobile-menu-overlay.open { display: block; }
@keyframes slideIn { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }

.mobile-menu-content { display: flex; flex-direction: column; padding-top: 80px; height: 100%; gap: 2rem; align-items: center; text-align: center; }
.mobile-menu-content a { font-size: 2rem; font-weight: 800; text-decoration: none; color: var(--c-dark); transition: color 0.3s; }
.mobile-menu-content a:hover { color: var(--c-pink); }
.close-btn { position: absolute; top: 30px; right: 20px; font-size: 3rem; background: none; border: none; cursor: pointer; color: var(--c-dark); line-height: 1; }
.mobile-social-links { margin-top: 2rem; display: flex; gap: 1.5rem; }
.mobile-social-links a { font-size: 1.2rem; font-weight: 600; color: var(--c-indigo); text-decoration: none; transition: color 0.3s; }
.mobile-social-links a:hover { color: var(--c-pink); }

/* --- HERO SECTION --- */
.hero { height: 100vh; min-height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--c-bg); z-index: 1; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.5s ease-in-out; display: block; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero-slide.active { opacity: 1; }
.hero-overlay-content { position: absolute; z-index: 10; bottom: 8%; left: 5%; width: 100%; max-width: 650px; padding: 0; text-align: left; }

.quote-badge-fullscreen { background: transparent; backdrop-filter: none; padding: 0; border-radius: 0; box-shadow: none; margin-left: 55px; }
.quote-badge-fullscreen .lang-de, .quote-badge-fullscreen .lang-en {
    font-size: 1.8rem; line-height: 1.4; font-weight: 500; color: white;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8), 0 4px 15px rgba(0,0,0,0.5); position: relative;
}
.quote-badge-fullscreen .lang-de::before, .quote-badge-fullscreen .lang-en::before {
    content: '“'; position: absolute; top: -35px; left: -55px; font-size: 6rem;
    font-family: 'Times New Roman', Georgia, serif; background: var(--brand-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; opacity: 0.9; text-shadow: none;
}

/* --- INTRO SECTION --- */
.intro-section { background: #ffffff; padding: 8rem 0 5rem 0; position: relative; z-index: 10; }
.intro-split { display: flex; gap: 4rem; align-items: flex-start; }
.intro-left { flex: 1; overflow: visible; align-self: flex-start; padding-right: 0; width: 100%; }
.intro-right { flex: 1; }
.intro-left h1 { font-size: 3.8rem; line-height: 1.05; margin-bottom: 0; letter-spacing: -0.03em; overflow: visible !important; display: block; padding-right: 2rem; padding-left: 0.5rem; }

.kicker-gray { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2.5px; color: #aaa; font-weight: 500; margin-bottom: 1rem; margin-left: 0.5rem; }
.dezentes-trennelement { width: 150px; height: 2px; background: var(--brand-gradient); margin: 6rem auto 4rem auto; border-radius: 2px; }
.separator-box { text-align: center; max-width: 700px; margin: 5rem auto 3rem auto; }

/* --- CATEGORIES GRID (FULL WIDTH / EDGE-TO-EDGE) --- */
.category-wrapper { 
    width: 100%; 
    max-width: 100%; 
    margin: 0 auto; 
    padding: 0 2%; 
}
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.cat-card {
    position: relative; border-radius: 20px; overflow: hidden; cursor: pointer;
    aspect-ratio: 4/5; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cat-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 25px 20px; color: white;
}
.cat-name { font-size: 1.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; transition: transform 0.3s ease; }
.cat-btn { font-size: 0.95rem; font-weight: 600; opacity: 0; transform: translateY(10px); transition: opacity 0.3s ease, transform 0.3s ease; display: flex; align-items: center; gap: 8px; color: var(--c-pink); }
.cat-card:hover { transform: scale(1.02); box-shadow: 0 20px 40px rgba(183, 167, 248, 0.3); }
.cat-card:hover img { transform: scale(1.05); }
.cat-card:hover .cat-btn { opacity: 1; transform: translateY(0); }

/* --- COLLECTION OVERLAY MODAL --- */
.collection-modal { display: none; position: fixed; z-index: 4500; top: 0; left: 0; width: 100%; height: 100%; background: var(--c-bg); overflow-y: auto; padding: 60px 20px; animation: fadeIn 0.3s; }

.collection-header { 
    max-width: 94%; 
    margin: 0 auto 3rem auto; display: flex; justify-content: space-between; align-items: center; 
}
.collection-header h2 { margin: 0; font-size: 3rem; }

.close-collection { font-size: 4rem; cursor: pointer; color: var(--c-dark); line-height: 1; transition: color 0.3s; background: none; border: none; }
.close-collection:hover { color: var(--c-pink); }

.collection-grid-inner { 
    max-width: 94%; 
    margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding-bottom: 50px; 
}

.collection-item {
    border-radius: 15px; overflow: hidden; cursor: pointer;
    aspect-ratio: 4/5; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.collection-item:hover { transform: scale(1.03); box-shadow: 0 15px 30px rgba(183, 167, 248, 0.3); }
.collection-item img { width: 100%; height: 100%; object-fit: cover; }

/* --- LIGHTBOX --- */
.lightbox { display: none; position: fixed; z-index: 5000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.95); justify-content: center; align-items: center; backdrop-filter: blur(10px); touch-action: none; }
.lightbox-content-wrapper { position: relative; width: 90%; height: 90%; display: flex; justify-content: center; align-items: center; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 10px; box-shadow: 0 0 50px rgba(0,0,0,0.5); animation: zoomIn 0.3s ease-out; user-select: none; }
@keyframes zoomIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: white; font-size: 40px; font-weight: bold; cursor: pointer; z-index: 5100; transition: 0.3s; }
.lightbox-close:hover { color: var(--c-pink); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.1); border: none; color: white; padding: 20px; font-size: 24px; cursor: pointer; border-radius: 50%; transition: 0.3s; display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; }
.lightbox-nav:hover { background: var(--brand-gradient); }
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* --- TRUSTED LOGOS MARQUEE --- */
.trusted-marquee-container { display: flex; overflow: hidden; width: 100%; gap: 60px; }
.trusted-marquee-track { display: flex; gap: 60px; align-items: center; animation: scrollMarquee 25s linear infinite; flex-shrink: 0; padding-right: 60px; }
.trusted-marquee-container:hover .trusted-marquee-track { animation-play-state: paused; }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
.trusted-item { flex-shrink: 0; transition: transform 0.3s ease; display: flex; align-items: center; justify-content: center; text-decoration: none; }
.trusted-item img { max-width: 100%; max-height: 130px; width: auto; filter: grayscale(100%); opacity: 0.6; transition: all 0.4s ease; }
.trusted-item:hover img { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }

/* --- INSTAGRAM FEED --- */
.insta-feed-section { padding: 3rem 0; text-align: center; }
behold-widget { max-width: 1080px; margin: 0 auto; display: block; }
behold-widget img { border-radius: 20px !important; transition: filter 0.3s ease, transform 0.3s ease !important; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
behold-widget img:hover { filter: brightness(0.9); transform: scale(1.02); box-shadow: 0 20px 40px rgba(183, 167, 248, 0.3); cursor: pointer; }

/* --- AI BANNER --- */
.ai-banner-img { width: 100%; height: auto; border-radius: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); display: block; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.ai-banner-img:hover { transform: translateY(-10px) scale(1.01); box-shadow: 0 30px 60px rgba(183, 167, 248, 0.4); cursor: pointer; }

/* --- SERVICES & BENEFITS --- */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.service-card { background: white; padding: 3rem; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(183, 167, 248, 0.3); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--brand-gradient); }
.icon-large { font-size: 3rem; margin-bottom: 1rem; display: block; }

.benefits-section { margin-top: 6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.benefits-text h3 { font-size: 2rem; margin-bottom: 1rem; }
.check-list { list-style: none; margin-top: 2rem; }
.check-list li { margin-bottom: 1rem; font-weight: 700; font-size: 1.25rem; display: flex; align-items: flex-start; }
.check-list li::before { content: '✓'; color: var(--c-pink); font-weight: 800; margin-right: 15px; font-size: 1.5rem; line-height: 1.3; }

.benefits-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.benefit-card-small { background: white; padding: 1.5rem 2rem; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; align-items: flex-start; gap: 0.8rem; transition: transform 0.3s, box-shadow 0.3s; }
.benefit-card-small:hover { transform: translateX(10px); box-shadow: 0 15px 40px rgba(183, 167, 248, 0.25); }
.benefit-icon { font-size: 1.8rem; line-height: 1.2; }
.benefit-content h4 { margin-bottom: 0.5rem; font-weight: 800; font-size: 1.4rem; }
.benefit-content p { margin-bottom: 0; font-size: 1.1rem; color: var(--c-dark); font-weight: 500; line-height: 1.4; }

/* --- ABOUT SEKTION (EMILY) --- */
.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 3rem; 
    align-items: center; 
}
.about-image-col { order: 1; }
.about-text-col { order: 2; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.about-text-col h2, .about-text-col p { text-align: left; margin-left: 0; padding-left: 0; width: 100%; }

.image-container { width: 100%; height: auto; aspect-ratio: 4/5; border-radius: 30px; overflow: hidden; background: #eee; display: flex; align-items: center; justify-content: center; box-shadow: 0 20px 40px rgba(0,0,0,0.1); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.image-container img { width: 100%; height: 100%; object-fit: cover; }
.image-container:hover { transform: translateY(-10px) scale(1.01); box-shadow: 0 30px 60px rgba(183, 167, 248, 0.5); }

/* --- BEYOND (STACKED IMAGES) --- */
.beyond-section { text-align: center; }
.stacked-images-container { position: relative; max-width: 1000px; height: 500px; margin: 1.5rem auto 2.5rem auto; display: flex; justify-content: center; align-items: center; cursor: pointer; }
.stacked-img { position: absolute; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.15); transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease; }
.img-back-left { width: 44%; left: -8%; transform: scale(0.9) rotate(-12deg); z-index: 1; opacity: 0.8; }
.img-back-right { width: 44%; right: -8%; transform: scale(0.9) rotate(12deg); z-index: 1; opacity: 0.8; }
.img-front { width: 50%; z-index: 2; transform: scale(1); box-shadow: 0 25px 60px rgba(0,0,0,0.25); }
.stacked-images-container:hover .img-back-left { transform: scale(0.95) rotate(-20deg) translateX(-70px); opacity: 1; }
.stacked-images-container:hover .img-back-right { transform: scale(0.95) rotate(20deg) translateX(70px); opacity: 1; }
.stacked-images-container:hover .img-front { transform: scale(1.05); box-shadow: 0 35px 70px rgba(183, 167, 248, 0.4); }

/* --- PASSWORD MODAL --- */
.pw-modal-content { background: #ffffff; color: var(--c-dark); text-align: center; border: none; max-width: 550px; padding: 50px 40px; border-radius: 30px; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.pw-modal-content .close { color: var(--c-dark); position: absolute; top: 20px; right: 25px; }
.pw-modal-content .close:hover { color: var(--c-pink); }
.pw-modal-content h2 { font-size: 2.2rem; margin-bottom: 1.5rem; color: var(--c-dark); }
.pw-desc { color: var(--c-dark); font-size: 1.1rem; line-height: 1.6; max-width: 500px; margin: 0 auto 2rem auto; }
.pw-desc a { color: var(--c-pink); text-decoration: underline; font-weight: 600; transition: color 0.3s; }
.pw-desc a:hover { color: var(--c-indigo); }
.pw-form-area { margin-top: 2.5rem; }
.pw-label { font-weight: 800; margin-bottom: 0.8rem; font-size: 1.1rem; color: var(--c-dark); }
.pw-input { width: 100%; max-width: 350px; padding: 1.2rem; border-radius: 50px; border: 2px solid #eaeaea; background: #f9f9f9; color: var(--c-dark); margin: 0 auto 1.5rem auto; font-family: 'Red Hat Display', sans-serif; font-size: 1.1rem; text-align: center; outline: none; display: block; transition: all 0.3s ease; }
.pw-input::placeholder { color: #aaa; }
.pw-input:focus { border-color: var(--c-pink); background: #ffffff; box-shadow: 0 0 15px rgba(252, 118, 179, 0.2); }
.pw-error { color: var(--c-pink); margin-bottom: 1.5rem; display: none; font-weight: 600; }
.pw-submit-btn { display: block; margin: 0 auto; background: var(--brand-gradient); color: white !important; box-shadow: 0 10px 20px rgba(252, 118, 179, 0.3); border: none; }
.pw-submit-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(252, 118, 179, 0.4); }

/* --- CONTACT FORM --- */
.contact-box { background: var(--brand-gradient); padding: 4rem 2rem; border-radius: 30px; color: white; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.contact-box:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(252, 118, 179, 0.3); }
.form-container { max-width: 700px; margin: 0 auto; text-align: left; }
.form-group { margin-bottom: 2rem; }
.form-label { display: block; margin-bottom: 0.5rem; font-weight: 800; margin-left: 1.5rem; font-size: 1.3rem; color: white; }
.form-input, .form-textarea { width: 100%; padding: 1.2rem 1.5rem; border-radius: 50px; border: none; font-family: 'Red Hat Display', sans-serif; font-size: 1.1rem; outline: none; transition: box-shadow 0.3s; }
.form-textarea { border-radius: 20px; resize: vertical; min-height: 120px; }
.form-input:focus, .form-textarea:focus { box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3); }
.submit-btn { background: white; color: #fc76b3; font-weight: 800; border: none; padding: 1rem 3rem; border-radius: 50px; font-size: 1.1rem; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; width: 100%; }
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
#success-message { display: none; text-align: center; padding: 2rem; animation: fadeIn 0.5s; }
#success-message h3 { font-size: 2.5rem; margin-bottom: 1rem; }

/* --- FOOTER & MODALS --- */
footer { background: var(--c-dark); color: white; padding: 4rem 0 2rem 0; text-align: center; }
.footer-social-wrapper { margin-bottom: 3rem; display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.footer-social-title { text-transform: uppercase; letter-spacing: 2px; font-weight: 500; font-size: 0.9rem; margin-bottom: 0; opacity: 1; color: white; }
.footer-social-icons { display: flex; align-items: center; justify-content: center; gap: 20px; }
.footer-social-icons a { color: rgba(255,255,255,0.4); transition: color 0.3s, transform 0.3s; display: flex; align-items: center; }
.footer-social-icons a svg { width: 32px; height: 32px; fill: currentColor; }
.footer-social-icons a:hover { color: var(--c-pink); transform: translateY(-3px); }
.footer-copyright { font-size: 0.95rem; color: rgba(255,255,255,0.9); margin-bottom: 1.2rem; letter-spacing: 0.5px; }
.footer-love-text { display: inline; }
.legal-links a { color: rgba(255,255,255,0.4); text-decoration: none; margin: 0 10px; font-size: 0.75rem; cursor: pointer; transition: 0.3s; }
.legal-links a:hover { color: var(--c-orange); opacity: 1; }

.modal { display: none; position: fixed; z-index: 3000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.8); backdrop-filter: blur(5px); animation: fadeIn 0.3s; }
@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
.modal-content { background-color: #fefefe; margin: 5% auto; padding: 40px; border: 1px solid #eee; width: 80%; max-width: 800px; border-radius: 20px; position: relative; overflow: hidden; animation: slideUp 0.3s; }
@keyframes slideUp { from {transform: translateY(50px);} to {transform: translateY(0);} }
.modal-content::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 8px; background: var(--brand-gradient); }
.close { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; }
.close:hover { color: var(--c-pink); }

/* --- MOBILE OPTIMIERUNGEN --- */
@media (max-width: 768px) {
    body { padding-top: 0; }
    .desktop-br { display: none; }
    header { padding: 15px 0; }
    .desktop-menu { display: none; }
    .burger-menu-btn { display: block; } 
    .nav-right { gap: 0.8rem; }
    h2 { font-size: 2rem; }
    
    .hide-on-mobile { display: none !important; } /* BLENDET "ADVERTISING" AUF MOBIL AUS */

    .hero { height: auto; min-height: auto; display: flex; flex-direction: column; justify-content: flex-start; overflow: visible; padding-top: 0 !important; }
    .hero-slider { position: relative; height: 75vh; width: 100%; z-index: 1; }
    .hero-slide { object-position: center top; }
    
    .hero-overlay-content { position: relative; bottom: auto; left: auto; transform: none; width: 100%; padding: 0; margin: 3rem auto 0 auto; z-index: 10; text-align: center; }
    .quote-badge-fullscreen { 
        background: var(--brand-gradient); padding: 2rem 1.5rem; border-radius: 20px; box-shadow: 0 10px 25px rgba(252, 118, 179, 0.4); 
        width: calc(100% - 40px) !important; margin: 0 auto !important; 
    }
    
    /* FIX: Schriftgröße wieder auf 1.05rem, damit es in eine Zeile passt */
    .quote-badge-fullscreen .lang-de, .quote-badge-fullscreen .lang-en { font-size: 1.05rem !important; line-height: 1.4; text-align: center !important; font-weight: 600; color: white; text-shadow: none; }
    .quote-badge-fullscreen .lang-de::before, .quote-badge-fullscreen .lang-en::before { display: none; }

    .intro-section { padding: 3rem 0 3rem 0 !important; }
    .intro-left h1, .reveal.active h1 { overflow: visible !important; display: block; width: 100% !important; padding-right: 1.5rem !important; padding-left: 0.5rem; text-align: left !important; font-size: 2.6rem; }
    .kicker-gray { text-align: left !important; margin-left: 0.5rem; }
    .intro-left { flex: none; width: 100% !important; padding-right: 0 !important; }
    .intro-right { flex: none; width: 100%; text-align: left !important; }
    .intro-split { flex-direction: column; gap: 2rem; }
    
    .mobile-break-service { display: block; }
    .service-card { padding: 2rem !important; }
    .services-grid { grid-template-columns: 1fr; }
    .benefits-section { grid-template-columns: 1fr; margin-top: 4rem; gap: 2rem; }
    .check-list li { font-size: 1.1rem; }

    .category-wrapper { 
        width: calc(100% - 40px) !important; margin: 0 auto !important; padding: 0 !important; 
    }
    .category-grid { grid-template-columns: 1fr; }
    .cat-btn { opacity: 1; transform: translateY(0); }
    
    .collection-header { max-width: 100%; }
    .collection-grid-inner { max-width: 100%; grid-template-columns: repeat(2, 1fr); gap: 15px;}
    .collection-header h2 { font-size: 1.8rem; }
    .collection-modal { padding: 20px 15px; }
  
    section { padding: 2.5rem 0; scroll-margin-top: 85px; }

    .beyond-section p { font-size: 1.05rem !important; padding: 0 15px; }
    .beyond-section .btn-primary { width: 100%; max-width: 350px; font-size: 1.05rem !important; padding: 1rem 1.5rem !important; }
    .stacked-images-container { max-width: 100%; height: 260px; margin: 2rem auto 2.5rem auto; }
    .img-back-left { width: 42%; left: 0%; transform: scale(0.9) rotate(-10deg); }
    .img-back-right { width: 42%; right: 0%; transform: scale(0.9) rotate(10deg); }
    .img-front { width: 50%; }

    .pw-modal-content { padding: 40px 25px !important; border-radius: 20px; width: 90%; }
    .pw-modal-content h2 { font-size: 1.8rem; margin-bottom: 1rem; }
    .pw-desc { font-size: 1rem; margin-bottom: 1.5rem; }
    .pw-input { padding: 1rem; font-size: 1rem; }

    #kontakt { scroll-margin-top: 100px; padding-top: 0.5rem; text-align: left !important; }
    #kontakt h2 br { display: block; }
    .mobile-only-break { display: block; height: 0; }
    .contact-box { margin-left: 10px; margin-right: 10px; padding: 2.5rem 1.5rem !important; }
    .contact-box h2 { margin-bottom: 1rem; text-align: left !important; }
    .contact-intro-text { margin-bottom: 2rem !important; text-align: left !important; font-size: 1.15rem !important; }
    .form-group { margin-bottom: 1.2rem !important; }
    .form-label { margin-bottom: 0.5rem !important; margin-left: 0 !important; }
    .form-input, .form-textarea { padding: 1rem 1.2rem; }

    .about-grid { display: flex; flex-direction: column; gap: 2rem; }
    .about-text-col { order: 1; }
    .about-image-col { order: 2; }
    .about-text-col, .about-image-col, .reveal { width: 100%; max-width: 100%; padding: 0; }
    
    .insta-feed-section { padding-bottom: 6rem !important; }
    .ai-banner-img { border-radius: 20px; }
  
    .modal-content:not(.pw-modal-content) { width: 95%; margin: 10% auto; padding: 30px 20px; }
    .modal-content h2 { font-size: 2rem; word-break: break-word; }
    .modal-content p { word-break: break-word; }
    a[href^="mailto"] { word-break: break-all; }
  
    .scroll-to-top-btn { padding: 15px 20px; font-size: 22px; bottom: 50px; right: 20px; }
    .trusted-marquee-container { gap: 30px; }
    .trusted-marquee-track { gap: 30px; padding-right: 30px; }
    .trusted-item img { max-height: 160px; }
    .lightbox-nav { display: none; }
    .footer-love-text { display: block; margin-top: 5px; }
}