/* Hero Section */
#hero {
    height: 55svh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 5%;
    position: relative;
    overflow: clip;
    background: none;
   
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0.1;
    z-index: 0;
    background-image: url('/assets/images/hero-background/hero-bg-light.webp');
    background-size: cover;
    background-position: center;
    filter: contrast(100%);
    animation: kenBurns 20s infinite alternate ease-in-out;
}

[data-theme="dark"] .hero-bg {
    background-image: url('/assets/images/hero-background/hero-bg-dark.webp');
    opacity: 0.2;
}

[data-theme="dark"].hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    text-align: left;
    max-width: 52%;
}

.hero-title {
    font-size: clamp(4rem, 9vw, 7rem);
    margin-top: 25px;
    line-height: 0.88;
    margin-bottom: 0;
    letter-spacing: -0.03em;
    text-wrap: nowrap;
}

.title-solid {
    display: block;
    color: #080808;
    font-weight: 900;
    white-space: nowrap;
}
[data-theme="dark"] .title-solid {
    color: #faf8f8;
}

.title-outline {
    display: block;
    color: transparent;
    -webkit-text-stroke: 3px var(--accent-color);
    font-weight: 900;
    white-space: nowrap;
} 

.title-outline:hover {
     -webkit-text-stroke: 3px #414142;

}

[data-theme="dark"] .title-outline:hover {
    -webkit-text-stroke: 3px #1e6bff;
}

.hero-divider {
    border: none;
    border-top: 2px solid var(--text-color);
    margin: 1.4rem 0 1.2rem;
    width: 100%;
}

[data-theme="dark"] .hero-divider {
    border-top: 2px solid var(--text-color);
}

.hero-desc {
   font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(1.5rem, 2vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0c0c0c;
    margin: 0;
    opacity: 0;
    animation: fadeUp 0.8s forwards 0.8s;
}

[data-theme="dark"] .hero-desc {
     color: #fbf9f9;

}

.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(24px);
    animation: charReveal 0.55s cubic-bezier(0.2, 1, 0.2, 1) forwards;
}


.title-outline .char {
    color: white;
    -webkit-text-stroke: inherit;
}

[data-theme="dark"] .title-outline .char {
    color: rgb(12, 12, 12); }
    
/* Zitat & Split Intro */
.split-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.split-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.split-quote {
    margin: 0;
    padding: 4rem 4rem 4rem;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    position: relative;
}

.split-quote::before {
    content: '\201C';
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3.5rem, 6vw, 5rem);
    line-height: 1;
    color: var(--accent-color);
    position: absolute;
    top: 0.75rem;
    left: 1.25rem;
    pointer-events: none;
}

.split-quote::after {
    content: '\201D';
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3.5rem, 6vw, 5rem);
    line-height: 1;
    color: var(--accent-color);
    position: absolute;
    bottom: 0.75rem;
    right: 1.25rem;
    pointer-events: none;
}

.split-quote p {
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    font-style: italic;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 1rem;
    text-wrap: pretty;
    padding: 0;
    border: none;
}

.split-quote-credit {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
    padding-left: 0;
    background: none;
}

.split-quote-credit cite { font-style: normal; }

.split-left h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--text-color);
    margin: 0;
    transition: color 0.3s, -webkit-text-stroke 0.3s;
    cursor: default;
}

.split-left h2:hover {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-color);
}

[data-theme="dark"] .split-left h2:hover {
    -webkit-text-stroke: 0.7px var(--text-color);
    text-shadow:
        4px 4px 0 #0f0f0f,
       -1px -1px 0 #0f0f0f,
        1px -1px 0 #0f0f0f,
       -1px  1px 0 #0f0f0f,
        1px  1px 0 #0f0f0f;
}

.split-body {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
    text-wrap: balance;
}

.split-hint {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color5);
    margin: 0;
}

.section-eyebrow {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-color);
    margin: 0 0 5.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-eyebrow::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--text-color);
    opacity: 0.4;
}

.section-eyebrow::after:hover{
    background: var(--accent-color);
}
.section-eyebrow:hover{
    color: var(--accent-color);
}

.split-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    padding: 1.75rem;
    transition: border-color 0.4s ease, transform 0.4s ease;
    text-align: left;
    cursor: pointer;
    display: block;
}

.split-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-8px);
}

.split-card:hover .thumb-img { transform: scale(1.06); }

/* Portfolio Blobs */
#mainblob {
    position: relative;
    overflow: clip;
}

.main-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.blob {
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(72px);
    opacity: 0.6;
    mix-blend-mode: multiply;
    will-change: transform, border-radius;
}

[data-theme="dark"] .blob {
    mix-blend-mode: screen;
    opacity: 0.45;
}

.blob--1 {
    width: clamp(320px, 42vw, 620px);
    height: clamp(320px, 42vw, 620px);
    background: radial-gradient(circle at 40% 40%, #fff8e1, #1e6bff 60%, transparent);
}

.blob--2 {
    width: clamp(260px, 36vw, 540px);
    height: clamp(260px, 36vw, 540px);
    background: radial-gradient(circle at 60% 30%, #ffffff, #91c5f9 55%, transparent);
}

.blob--3 {
    width: clamp(220px, 30vw, 450px);
    height: clamp(220px, 30vw, 450px);
    background: radial-gradient(circle at 50% 60%, #57cffe, #97b1d8 50%, transparent);
}

[data-theme="dark"] .blob--1 {
    background: radial-gradient(circle at 40% 40%, #0a0a0a, #0d2ae6 60%, transparent);
}

[data-theme="dark"] .blob--2 {
    background: radial-gradient(circle at 60% 30%, #3a3a3a, #1a1a2e 55%, transparent);
}

[data-theme="dark"] .blob--3 {
    background: radial-gradient(circle at 50% 60%, #30dcdc, #2659cf 50%, transparent);
}

/* Markenentwicklung */
.brand-section {
    padding: 80px 5%;
    position: relative;
    text-align: left;
    background-color: #e3e7fc32;
}

[data-theme="dark"] .brand-section {
    background-color: #10101046;

}

.corperate-section {
    padding: 80px 5%;
    position: relative;
    text-align: left;
    background-color: #8fa1d127;
    
}
[data-theme="dark"] .corperate-section {
  background-color: #34325c2b;  
}
  

/* Thumbnail */
.thumb-container {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.box-title {
    font-size: clamp(1rem, 1vw, 1.4rem);
    margin-bottom: 0.25rem;
    color: var(--text-color);
    font-weight: 700;
}

.box-meta {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 0.5rem;
    display: block;
}

/* Modal Titel */
#m-title {
    font-size: clamp(1.4rem, 1rem + 2.5vw, 3rem);
    margin-bottom: 2rem;
}

/* Modal */
.modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-color);
    z-index: 2000;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
}

.modal.open { opacity: 1; pointer-events: all; }

.close-modal {
    position: fixed;
    top: 2rem; right: 2rem;
    width: 50px; height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--text-color);
    border-radius: 50%;
    color: var(--text-color);
    font-size: 2rem;
    z-index: 2010;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.close-modal:hover { background: var(--accent-color); border-color: transparent; color: #000; }

.modal-content {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.main-slider {
    position: relative;
    height: 60svh;
    background: #111;
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
}

[data-theme="light"] .main-slider {
    background: #ffffff;
}

.slide-img {
    width: 100%; height: 100%;
    object-fit: contain;
    transition: opacity 0.2s;
}

.slide-img.zoomed {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: var(--bg-color);
    z-index: 3000;
    padding: 20px;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.ctrl-btn {
    background: var(--accent-color8);
    color: #000;
    padding: 10px 25px;
    font-weight: 700;
    text-transform: uppercase;
     font-family: 'Manrope', sans-serif;
    border: none;
    transition: 0.3s;
}

.ctrl-btn:hover { background: var(--text-color); color: var(--bg-color); }

.strip-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
    margin: 2rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.strip-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: moveLeftToRight 25s linear infinite;
}

.strip-track:hover { animation-play-state: paused; }

.strip-thumb {
    width: 150px; height: 100px;
    object-fit: cover;
    opacity: 0.5;
    transition: 0.3s;
    border: 2px solid transparent;
}

.strip-thumb:hover { opacity: 1; border-color: var(--accent-color); transform: scale(1.05); }

@keyframes fadeUp     { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes charReveal { to { opacity: 1; transform: translateY(0); } }

@keyframes moveLeftToRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

.modal-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.detail-group h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-left: 0;
    font-size: 1.2rem;
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
}

.detail-group p {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.detail-group h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-color);
    margin: 1.5rem 0 0.75rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.4rem;
}

.detail-group ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.detail-group ul li {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-color);
    padding-left: 1rem;
    border-left: 2px solid var(--accent-color);
}

.detail-group ul li strong {
    font-weight: 700;
    color: var(--text-color);
    display: block;
    margin-bottom: 0.1rem;
}

.section-subnav {
    border-top: 0.5px solid rgba(128, 128, 128, 0.802);
    background:none;
}

/* Responsive */
@media (max-width: 1024px) {
    .split-intro { gap: 3rem; }
}

@media (max-width: 768px) {
    #hero { padding: 0 5%; }
    .hero-content { max-width: 100%; }
    .hero-title { font-size: clamp(3rem, 19vw, 6rem); }
    .hero-desc { font-size: clamp(0.75rem, 4vw, 1.5rem); white-space: normal; max-width: 90vw; }
    .brand-section { padding: 60px 5%; }
    .corperate-section { padding: 60px 5%; }
    .section-subnav { padding: 60px 5%; }
    .modal-details { grid-template-columns: 1fr; gap: 2rem; }
    .split-intro {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .hero-bg {
        background-image: url('/assets/images/hero-background/hero500-light.webp');
    }
    [data-theme="dark"] .hero-bg {
        background-image: url('/assets/images/hero-background/hero500-dark.webp');
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: clamp(2.8rem, 19vw, 4.5rem); }
    .hero-desc { font-size: clamp(0.7rem, 4vw, 1.4rem); }
    .hero-content { max-width: 100%; }
    .split-hint {font-size: 0.8rem;}
    .hero-bg {
        background-image: url('/assets/images/hero-background/hero500-light.webp');
    }
    [data-theme="dark"] .hero-bg {
        background-image: url('/assets/images/hero-background/hero500-dark.webp');
        opacity: 0.3;
    }
}