/* ================================================================
   UnternehmerSeele – main.css
   Farben: Gold #F0A800 | Dunkel #06061c | Silber #C8BEA0
   ================================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', system-ui, Arial, sans-serif;
    background: #06061c;
    color: #e8e8f0;
    line-height: 1.7;
    overflow-x: hidden;
    /* Subtiler blauer Hintergrund-Glow passend zum Hero */
    background-image:
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(37,99,235,.08) 0%, transparent 60%);
}

/* ── HELPERS ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

.section-label {
    display: inline-block;
    font-size: .75rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    padding: .3rem 1rem; border-radius: 50px; margin-bottom: 1rem;
}
.label-orange { background: rgba(240,168,0,.15); color: #F0A800; border: 1px solid rgba(240,168,0,.35); }
.label-blue   { background: rgba(37,99,235,.15);   color: #60a5fa; border: 1px solid rgba(37,99,235,.35); }
.label-amber  { background: rgba(255,208,64,.13);  color: #FFD040; border: 1px solid rgba(255,208,64,.30); }

.section-title { margin-bottom: 3rem; }
.section-title h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 900; line-height: 1.15; }
.section-title p  { color: #7a7a99; margin-top: .6rem; font-size: 1.05rem; }

.grad-text {
    background: linear-gradient(90deg, #F0A800, #FFD040);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-text-blue {
    background: linear-gradient(90deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .9rem 2rem; border-radius: 50px;
    font-size: 1rem; font-weight: 700; text-decoration: none;
    transition: transform .2s, box-shadow .2s; cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
    background: linear-gradient(135deg, #F0A800, #FFD040);
    color: #06061c; box-shadow: 0 4px 20px rgba(240,168,0,.3);
}
.btn-primary:hover { box-shadow: 0 8px 28px rgba(240,168,0,.45); }
.btn-ghost {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.15); color: #e8e8f0;
}
.btn-ghost:hover { background: rgba(255,255,255,.09); }

/* ── NAVIGATION ── */
nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(6,6,28,.88); backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    height: 66px; display: flex; align-items: center; padding: 0 2rem;
}
.nav-inner {
    width: 100%; max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-size: 1.25rem; font-weight: 900; letter-spacing: -.5px; text-decoration: none; }
.logo-u    { color: #F0A800; }
.logo-s    { color: #e8e8f0; }
.logo-heart{ color: #F0A800; font-size: 1em; margin: 0 .05em; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: #aaa; text-decoration: none; font-size: .92rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: #F0A800; }
.nav-cta {
    background: linear-gradient(135deg, #F0A800, #FFD040) !important;
    color: #06061c !important; font-weight: 700 !important;
    padding: .45rem 1.2rem; border-radius: 50px;
    transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(240,168,0,.4); }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #F0A800; border-radius: 2px; transition: all .3s; }


/* ── HERO ── */
#hero {
    margin-top: 66px; /* Abstand für fixe Navigation */
    background: #06061c;
    overflow: hidden;
}
.hero-image-wrap {
    display: block;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    font-size: 0;
}
.hero-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: bottom;
}
.hero-cta-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, #0c0c32 0%, #06061c 100%);
    border-bottom: 1px solid rgba(240,168,0,.12);
}

@media (max-width: 600px) {
    .hero-cta-strip { flex-direction: column; }
    .hero-cta-strip .btn { width: 100%; justify-content: center; }
}

/* ── PROBLEM / MISSION ── */
#problem {
    padding: 7rem 2rem;
    background: linear-gradient(180deg, #06061c 0%, #080828 100%);
}
.problem-box {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(240,168,0,.15); border-left: 4px solid #F0A800;
    border-radius: 20px; padding: 3rem 3.5rem; margin-bottom: 3rem;
}
.problem-box h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.problem-box p  { color: #9090b0; margin-bottom: .8rem; }

.check-list { list-style: none; margin: 1.5rem 0; }
.check-list li {
    display: flex; align-items: flex-start; gap: .8rem;
    color: #c0c0dd; margin-bottom: .7rem;
}
.check-list li::before { content: '👉'; flex-shrink: 0; margin-top: .1rem; }

.audit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem; margin-top: 2.5rem;
}
.audit-item {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px; padding: 1.4rem 1.2rem; text-align: center;
    transition: transform .2s, border-color .2s, box-shadow .2s;
}
.audit-item:hover {
    transform: translateY(-4px);
    border-color: rgba(37,99,235,.4);
    box-shadow: 0 8px 24px rgba(37,99,235,.15);
}
.audit-item .icon { font-size: 2rem; margin-bottom: .7rem; display: block; }
.audit-item h4 { font-size: .95rem; font-weight: 700; color: #F0A800; margin-bottom: .3rem; }
.audit-item p  { font-size: .82rem; color: #7070a0; }

.goal-box {
    background: linear-gradient(135deg, rgba(240,168,0,.1), rgba(255,208,64,.08));
    border: 1px solid rgba(240,168,0,.2); border-radius: 20px;
    padding: 2.5rem 3rem; text-align: center; margin-top: 3rem;
}
.goal-box p { font-size: 1.15rem; color: #c8c8e0; }
.goal-box strong { color: #FFD040; }

/* ── YOUTUBE ── */
#videos { padding: 7rem 2rem; background: #06061c; }
.yt-header {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem;
}
.yt-link {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,0,0,.12); border: 1px solid rgba(255,0,0,.25);
    border-radius: 50px; padding: .5rem 1.2rem;
    color: #ff4444; font-weight: 700; font-size: .88rem;
    text-decoration: none; transition: background .2s, transform .2s;
}
.yt-link:hover { background: rgba(255,0,0,.2); transform: translateY(-2px); }
.yt-icon { font-size: 1.2rem; }

/* Einzelnes Featured Video */
.featured-video-wrap {
    display: grid; grid-template-columns: 1.6fr 1fr; gap: 2.5rem; align-items: center;
    background: rgba(255,255,255,.03); border: 1px solid rgba(240,168,0,.15);
    border-radius: 24px; padding: 2rem;
}
.featured-video-meta h3 { font-size: 1.2rem; font-weight: 800; line-height: 1.4; margin-bottom: .8rem; color: #F0E8C0; }
.featured-video-meta p  { color: #7878a0; font-size: .95rem; line-height: 1.65; }

/* YouTube Facade – lädt Iframe erst beim Klick */
.yt-facade {
    position: relative; aspect-ratio: 16/9;
    border-radius: 14px; overflow: hidden; background: #000;
    box-shadow: 0 12px 40px rgba(0,0,0,.5);
    cursor: pointer; display: block;
}
.yt-facade img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .3s;
}
.yt-facade:hover img { transform: scale(1.02); }

.yt-play-btn {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.25); border: none; cursor: pointer;
    transition: background .2s; width: 100%;
}
.yt-facade:hover .yt-play-btn { background: rgba(0,0,0,.45); }
.yt-play-btn svg {
    width: 72px; height: 52px;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,.6));
    transition: transform .2s;
}
.yt-facade:hover .yt-play-btn svg { transform: scale(1.1); }

/* Iframe nach dem Klick (JS ersetzt Facade) */
.yt-facade-iframe {
    width: 100%; height: 100%; border: none; display: block;
    position: absolute; inset: 0;
}

/* Video Grid (mehrere Videos) */
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.video-card {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px; overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.video-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.4); border-color: rgba(240,168,0,.3); }
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #111; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.video-card:hover .video-thumb img { transform: scale(1.04); }
.play-btn {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.35); transition: background .2s;
}
.video-card:hover .play-btn { background: rgba(0,0,0,.5); }
.play-circle {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(240,168,0,.9);
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
    transition: transform .2s, background .2s;
}
.video-card:hover .play-circle { transform: scale(1.1); background: #F0A800; }
.video-info { padding: 1.2rem 1.4rem; }
.video-info h4 { font-size: .97rem; font-weight: 700; line-height: 1.4; }

/* ── VIDEOPRODUKTION ── */
#produktion {
    padding: 7rem 2rem;
    background: linear-gradient(180deg, #06061c 0%, #0a0a30 100%);
}
.produktion-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.prod-card {
    background: rgba(37,99,235,.07); border: 1px solid rgba(37,99,235,.2);
    border-radius: 20px; padding: 2.2rem;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.prod-card:hover {
    transform: translateY(-5px);
    border-color: rgba(240,168,0,.4);
    box-shadow: 0 12px 32px rgba(37,99,235,.15);
}
.prod-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.prod-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: .6rem; color: #93c5fd; }
.prod-card p  { color: #8888aa; font-size: .92rem; line-height: 1.65; }

/* ── ÜBER UNS ── */
#about { padding: 7rem 2rem; background: rgba(255,255,255,.02); }
.about-grid { display: grid; grid-template-columns: 340px 1fr; gap: 5rem; align-items: center; }
.about-card {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px; padding: 2.5rem; text-align: center;
}
.avatar {
    width: 120px; height: 120px; border-radius: 50%;
    background: linear-gradient(135deg, #F0A800, #FFD040);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; margin: 0 auto 1.2rem;
}
.about-card h3   { font-size: 1.3rem; font-weight: 800; margin-bottom: .3rem; }
.about-card .role{ color: #F0A800; font-size: .88rem; font-weight: 600; margin-bottom: 1.5rem; }
/* Foto */
.avatar-wrap {
    width: 180px; height: 180px; border-radius: 50%;
    background: linear-gradient(135deg, #F0A800, #FFD040);
    padding: 4px; margin: 0 auto 1.4rem; display: block;
}
.avatar-photo {
    width: 100%; height: 100%; border-radius: 50%;
    object-fit: cover; object-position: center top; display: block;
}

.about-social { display: flex; gap: .6rem; justify-content: center; margin-top: 1.4rem; flex-wrap: wrap; }
.social-btn {
    display: flex; align-items: center; gap: .4rem;
    padding: .4rem .9rem; border-radius: 50px; font-size: .8rem; font-weight: 600;
    text-decoration: none; transition: transform .2s, opacity .2s;
}
.social-btn:hover { transform: translateY(-2px); opacity: .85; }
.social-yt   { background: rgba(255,0,0,.15);     border: 1px solid rgba(255,0,0,.25);     color: #ff4444; }
.social-ig   { background: rgba(214,83,165,.14);  border: 1px solid rgba(214,83,165,.3);   color: #e056b8; }
.social-mail { background: rgba(240,168,0,.12);   border: 1px solid rgba(240,168,0,.25);   color: #F0A800; }

.about-text h3 { font-size: 1.7rem; font-weight: 900; margin-bottom: 1rem; }
.about-text p  { color: #8888aa; margin-bottom: 1rem; }
.about-company {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-left: 3px solid #F0A800; border-radius: 12px;
    padding: 1.2rem 1.5rem; margin-top: 1.5rem;
}
.about-company p { color: #7070a0; font-size: .9rem; margin: 0; }
.about-company strong { color: #e8e8f0; }

/* ── KONTAKT ── */
#contact { padding: 7rem 2rem; background: #06061c; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: .8rem; }
.contact-info > p { color: #7070a0; margin-bottom: 2rem; }
.cinfo-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; color: #b0b0cc; }
.cinfo-icon {
    width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0;
    background: rgba(240,168,0,.12); border: 1px solid rgba(240,168,0,.2);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.cinfo-item a { color: #F0A800; text-decoration: none; }
.cinfo-item a:hover { text-decoration: underline; }

.contact-form-wrap {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px; padding: 2.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .83rem; font-weight: 600; color: #8888aa; margin-bottom: .4rem; letter-spacing: .4px; }
.form-group input,
.form-group textarea {
    width: 100%; background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1); border-radius: 12px;
    padding: .85rem 1.1rem; color: #e8e8f0; font-size: .96rem; font-family: inherit;
    outline: none; transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #F0A800;
    box-shadow: 0 0 0 3px rgba(240,168,0,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-send {
    width: 100%; padding: 1rem; border-radius: 12px;
    font-size: 1rem; font-weight: 700;
    background: linear-gradient(135deg, #F0A800, #FFD040);
    color: #06061c; border: none; cursor: pointer; margin-top: .5rem;
    transition: transform .2s, box-shadow .2s;
}
.btn-send:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,168,0,.4); }
.btn-send:disabled { opacity: .6; cursor: wait; transform: none; }

/* Alert Meldungen */
.alert { padding: 1rem 1.2rem; border-radius: 12px; margin-bottom: 1.2rem; font-size: .93rem; font-weight: 500; }
.alert-ok  { background: rgba(34,197,94,.1);  border: 1px solid rgba(34,197,94,.25); color: #4ade80; }
.alert-err { background: rgba(239,68,68,.1);  border: 1px solid rgba(239,68,68,.25); color: #f87171; }

/* ── FOOTER ── */
footer { padding: 3rem 2rem 2rem; border-top: 1px solid rgba(255,255,255,.06); background: #06061c; }
.footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
}
.footer-brand .logo { font-size: 1.3rem; font-weight: 900; margin-bottom: .5rem; }
.footer-brand p { color: #555; font-size: .85rem; line-height: 1.6; max-width: 280px; }
.footer-links h4 { font-size: .85rem; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: .8rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: #666; font-size: .88rem; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #F0A800; }
.footer-bottom {
    max-width: 1100px; margin: 2rem auto 0; padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.05);
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
    font-size: .82rem; color: #444;
}
.footer-bottom a { color: #666; text-decoration: none; }
.footer-bottom a:hover { color: #F0A800; }

/* Footer Social Icons */
.footer-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.fsoc-icon {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; text-decoration: none;
    transition: transform .2s, opacity .2s;
}
.footer-social a:hover .fsoc-icon { transform: translateY(-3px); opacity: .85; }
.fsoc-yt   { background: rgba(255,0,0,.15);    border: 1px solid rgba(255,0,0,.25);    color: #ff4444; }
.fsoc-ig   { background: rgba(214,83,165,.14); border: 1px solid rgba(214,83,165,.25); color: #e056b8; }
.fsoc-mail { background: rgba(240,168,0,.12);  border: 1px solid rgba(240,168,0,.25);  color: #F0A800; }

/* Partner-Seiten im Footer */
.partner-desc {
    display: block; font-size: .75rem;
    color: #444; margin-top: .05rem; font-weight: 400;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .about-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .problem-box  { padding: 2rem; }
    .featured-video-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links {
        display: none; flex-direction: column;
        position: absolute; top: 66px; left: 0; width: 100%;
        background: rgba(6,6,28,.97); padding: 1.5rem 2rem; gap: 1.2rem;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    .hero-stats { gap: 2rem; }
    .form-row   { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; }
    .goal-box { padding: 2rem; }
}
