/*
 * Jonas Ginter — Shared Landing Page Styles
 * Verwendet von: industriefotografie, corporate-fotograf-bremen,
 *                recruiting-fotografie-bremen, geschaeftsbericht-fotograf
 * ─────────────────────────────────────────────────────────────────────
 */

:root {
    --yellow: #e8c840;
    --header-h: 120px;
    --font-display: 'Permanent Marker', cursive;
    --font-body: 'DM Sans', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #fff; color: #111; font-family: var(--font-body); }

/* ── HEADER / NAV (identisch mit Hauptseite) ──────────────────────── */
header {
    position: fixed; top: 0; left: 0; width: 100%; height: var(--header-h);
    z-index: 1000; background: rgba(255,255,255,0.98);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: 0.4s; border-bottom: 1px solid transparent;
}
header.scrolled { height: 80px; border-bottom: 1px solid #eee; }
.logo-link { display: block; }
.logo-img { height: 44px; width: auto; transition: 0.4s; }
header.scrolled .logo-img { height: 36px; }

nav { margin-top: 10px; display: flex; gap: 40px; transition: 0.3s; }
header.scrolled nav { margin-top: 5px; }
nav a {
    text-decoration: none; color: #000; font-family: var(--font-body);
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.18em; cursor: pointer; transition: 0.3s;
    padding: 14px 6px;
    display: inline-flex; align-items: center;
}
nav a:hover { opacity: 0.5; }

.burger-btn { display: none; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 30px; height: 20px; flex-direction: column; justify-content: space-between; cursor: pointer; }
.burger-btn span { display: block; width: 100%; height: 2px; background: #000; transition: 0.3s; }
.burger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -8px); }

#mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: #fff; z-index: 900;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 24px; transform: translateY(-100%); transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    padding-top: var(--header-h); box-sizing: border-box;
}
#mobile-menu.active { transform: translateY(0); }
#mobile-menu a {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 10vw, 3.5rem);
    font-weight: 400; text-decoration: none; color: #000; line-height: 1;
}

@media (max-width: 900px) { nav { display: none; } .burger-btn { display: flex; } }
@media (max-width: 900px) { header { --header-h: 72px; } }

/* ── HERO ─────────────────────────────────────────────────────────── */
.lp-hero {
    height: 86vh; min-height: 500px;
    position: relative; overflow: hidden;
    display: flex; align-items: flex-end;
    padding-top: var(--header-h);
}
.lp-hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 25%;
    filter: brightness(0.48);
}
.lp-hero-body {
    position: relative; z-index: 2;
    padding: 0 60px 60px; max-width: 820px;
}
.lp-hero-tag {
    display: block; font-size: 0.68rem; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--yellow);
    margin-bottom: 14px; font-weight: 500;
}
.lp-hero-h1 {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(2.8rem, 6.5vw, 5.5rem);
    color: #fff; line-height: 1.02;
    text-transform: none; margin-bottom: 18px;
}
.lp-hero-sub {
    font-size: 1rem; color: rgba(255,255,255,0.6);
    line-height: 1.65; max-width: 460px;
    margin-bottom: 28px; font-weight: 300;
}
.lp-hero-cta {
    display: inline-block; padding: 14px 30px;
    background: #fff; color: #111;
    font-weight: 700; font-size: 0.85rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; border-radius: 2px; transition: background .15s;
}
.lp-hero-cta:hover { background: var(--yellow); }
@media (max-width: 600px) {
    .lp-hero { height: 75vh; }
    .lp-hero-body { padding: 0 24px 44px; }
}

/* ── MAIN CONTENT ─────────────────────────────────────────────────── */
.lp-main {
    max-width: 1240px; margin: 0 auto;
    padding: 72px 40px 100px;
}
@media (max-width: 600px) { .lp-main { padding: 48px 20px 80px; } }

.lp-section-label {
    font-size: 0.65rem; letter-spacing: 0.22em;
    text-transform: uppercase; color: #bbb;
    margin-bottom: 32px; display: block;
    border-bottom: 1px solid #eee; padding-bottom: 12px;
}
.lp-intro-text {
    font-size: 1.05rem; color: #444; line-height: 1.75;
    font-weight: 300; max-width: 680px; margin-bottom: 48px;
}
.lp-intro-text strong { color: #111; font-weight: 600; }

/* ── MAGAZIN GRID ─────────────────────────────────────────────────── */
.lp-grid {
    display: grid; grid-template-columns: repeat(12, 1fr);
    gap: 3px; margin-bottom: 3px;
}

.lp-card {
    position: relative; overflow: hidden; background: #111;
    text-decoration: none; display: block;
}
.lp-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 45%, transparent 100%);
    transition: opacity .35s;
}
.lp-card:hover::after { opacity: 0.72; }
.lp-card img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .6s cubic-bezier(.2,0,0,1);
}
.lp-card:hover img { transform: scale(1.06); }
.lp-card-body {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 2; padding: 20px 24px;
}
.lp-card-tag {
    display: block; font-size: 0.6rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--yellow);
    margin-bottom: 7px; font-weight: 500;
}
.lp-card-title {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(1rem, 1.6vw, 1.35rem);
    color: #fff; text-transform: none; line-height: 1.2;
}
.lp-card-arrow {
    display: inline-block; margin-top: 10px;
    font-size: 0.72rem; color: rgba(255,255,255,0.4);
    font-family: 'DM Sans', sans-serif; font-weight: 500;
    transition: color .2s, transform .2s;
}
.lp-card:hover .lp-card-arrow { color: var(--yellow); transform: translateX(5px); }

.lp-card-lg   { grid-column: span 8; aspect-ratio: 16/10; }
.lp-card-sm   { grid-column: span 4; aspect-ratio: 3/4; }
.lp-card-half { grid-column: span 6; aspect-ratio: 4/3; }
@media (max-width: 900px) {
    .lp-card-lg, .lp-card-sm, .lp-card-half { grid-column: span 12; }
    .lp-card-lg   { aspect-ratio: 16/9; }
    .lp-card-sm   { aspect-ratio: 4/3; }
    .lp-card-half { aspect-ratio: 4/3; }
}

/* ── STORY STRIP ──────────────────────────────────────────────────── */
.lp-story-strip {
    border-top: 1px solid #eee; border-bottom: 1px solid #eee;
    padding: 32px 0; margin: 48px 0;
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px;
}
@media (max-width: 700px) {
    .lp-story-strip { grid-template-columns: 1fr; gap: 24px; }
}
.lp-story-client {
    font-size: 0.62rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: #bbb;
    margin-bottom: 9px; display: block;
}
.lp-story-quote {
    font-size: 0.92rem; color: #444; line-height: 1.65; font-weight: 300;
}
.lp-story-quote strong { color: #111; font-weight: 600; }

/* ── CTAS ─────────────────────────────────────────────────────────── */
.lp-ctas {
    display: flex; gap: 10px; align-items: center;
    flex-wrap: wrap; padding-top: 40px; border-top: 1px solid #eee;
}
.lp-cta-label {
    font-size: 0.7rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: #ccc; margin-right: 4px; font-weight: 500;
}
.lp-btn {
    padding: 12px 22px; font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    text-decoration: none; border-radius: 2px; transition: all .15s;
}
.lp-btn-primary { background: #111; color: #fff; }
.lp-btn-primary:hover { background: #cc0000; }
.lp-btn-ghost { background: transparent; color: #555; border: 1px solid #ddd; }
.lp-btn-ghost:hover { border-color: #111; color: #111; }

/* ── SEO TEXT ─────────────────────────────────────────────────────── */
.lp-seo {
    max-width: 680px; margin: 0 auto;
    padding: 60px 40px 80px; border-top: 1px solid #eee;
}
.lp-seo h2 {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    color: #111; text-transform: none;
    margin-bottom: 10px; margin-top: 32px;
}
.lp-seo h2:first-child { margin-top: 0; }
.lp-seo p {
    font-size: 0.88rem; color: #666; line-height: 1.8;
    margin-bottom: 12px; font-weight: 300;
}
.lp-seo a { color: #111; text-decoration: underline; text-underline-offset: 3px; }

/* ── FAQ ──────────────────────────────────────────────────────────── */
.lp-faq {
    max-width: 680px; margin: 0 auto;
    padding: 0 40px 80px;
}
.lp-faq h2 {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    color: #111; text-transform: none;
    margin-bottom: 24px;
}
.lp-faq details {
    border-bottom: 1px solid #eee;
}
.lp-faq summary {
    padding: 18px 30px 18px 0;
    font-size: 0.95rem; font-weight: 600; color: #111;
    cursor: pointer; list-style: none;
    position: relative;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
    content: '+'; position: absolute; right: 4px; top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem; font-weight: 300; color: #bbb;
    transition: transform .2s;
}
.lp-faq details[open] summary::after { content: '–'; color: #111; }
.lp-faq details p {
    font-size: 0.88rem; color: #666; line-height: 1.75;
    font-weight: 300; padding: 0 0 20px;
}
.lp-faq details a { color: #111; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 600px) { .lp-faq { padding: 0 20px 60px; } }

/* ── FOOTER CTA ───────────────────────────────────────────────────── */
.lp-footer-cta {
    background: #111; color: #fff;
    padding: 80px 40px; text-align: center;
}
.lp-footer-cta h2 {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: #fff; text-transform: none; margin-bottom: 12px;
}
.lp-footer-cta p {
    font-size: 0.88rem; color: rgba(255,255,255,0.4); margin-bottom: 30px;
}
.lp-footer-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.lp-footer-btn-main {
    padding: 15px 32px; background: #fff; color: #111;
    font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em;
    text-transform: uppercase; text-decoration: none;
    border-radius: 2px; transition: background .15s;
}
.lp-footer-btn-main:hover { background: var(--yellow); }
.lp-footer-btn-sec {
    padding: 15px 26px;
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.55); font-size: 0.85rem;
    text-decoration: none; border-radius: 2px; transition: all .15s;
}
.lp-footer-btn-sec:hover { border-color: rgba(255,255,255,0.45); color: #fff; }
