/* Igor Landingpage CSS */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5B4BFF;
    --primary-dark: #4737E8;
    --secondary-color: #1E2235;
    --accent-color: #F4B942;
    --text-color: #1E2235;
    --text-light: #6B7280;
    --bg-light: #F7F8FC;
    --bg-white: #FFFFFF;
    --border-color: #E7EAF3;
    --shadow: 0 8px 30px rgba(0,0,0,.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #5B4BFF, #7B68FF);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--secondary-color);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: radial-gradient(circle at top right, rgba(244,185,66,.15), transparent 30%), linear-gradient(135deg, #1E2235, #2B3150);
    color: white;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-logo-large {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    background: white;
}

.hero-social-proof {
    margin-bottom: 30px;
}

.social-proof-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.95;
}

.social-proof-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Trust Leiste */
.trust-bar {
    padding: 40px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.trust-chips {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-chip {
    background: var(--bg-white);
    padding: 12px 20px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.trust-chip:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

/* Warum Igor Section */
.why-igor {
    padding: 60px 0;
    background: var(--bg-white);
    text-align: center;
}

.why-igor .section-subtitle {
    max-width: 800px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(91,75,255,.1);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(91,75,255,.35);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Screenshots Section */
.screenshots {
    padding: 80px 0;
    background: var(--bg-white);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.screenshot-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.screenshot-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.screenshot-card h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.screenshot-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.screenshot-container {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.screenshot-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.placeholder-screenshot {
    border: 2px dashed #cbd5e1;
    background: #f8fafc;
}

.placeholder-screenshot.show-hint {
    padding: 30px 15px;
}

.screenshot-upload-hint {
    text-align: center;
    color: #64748b;
    padding: 20px;
}

.upload-hint-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.screenshot-upload-hint p {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    color: #475569;
}

.screenshot-upload-hint p.upload-hint-sub {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.4;
    margin-top: 10px;
}

.screenshot-placeholder {
    background: var(--bg-light);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 60px;
    text-align: center;
}

.placeholder-content {
    color: var(--text-light);
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.placeholder-content p {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.placeholder-content small {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* News Section */
.news {
    padding: 80px 0;
    background: var(--bg-light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    width: 100%;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    overflow: hidden;
}

.news-image img {
    max-width: 100%;
    max-height: 320px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content h3 {
    font-size: 1.35rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content p, .news-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.news-text p {
    margin-bottom: 12px;
}

.news-text p:last-child {
    margin-bottom: 0;
}

.news-text ul, .news-text ol {
    margin-top: 8px;
    margin-bottom: 12px;
    padding-left: 20px;
}

.news-text li {
    margin-bottom: 6px;
}

.news-card-empty {
    grid-column: 1 / -1;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.news-empty-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.news-card-empty h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.news-card-empty p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: radial-gradient(circle at top left, rgba(91,75,255,.15), transparent 30%), linear-gradient(135deg, #1E2235, #2B3150);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.footer-donate-link {
    color: #f87171 !important; /* Helles rot im dunklen Footer */
    font-weight: 600;
}

.footer-donate-link:hover {
    color: #ef4444 !important;
    opacity: 1 !important;
}

/* Support Banner */
.support-banner {
    background: #fff5f5;
    border-top: 1px solid #fee2e2;
    border-bottom: 1px solid #fee2e2;
    padding: 35px 0;
}

.support-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.support-banner-content .heart-icon {
    font-size: 2.5rem;
    color: #ef4444;
    animation: heartBeat 2s infinite;
}

.support-banner-content .support-text {
    flex: 1;
}

.support-banner-content .support-text h3 {
    font-size: 1.35rem;
    color: #1e293b;
    margin-bottom: 6px;
    font-weight: 700;
}

.support-banner-content .support-text p {
    font-size: 1rem;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

.support-banner-content .support-btn-cta {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.1), 0 2px 4px -1px rgba(239, 68, 68, 0.06);
}

.support-banner-content .support-btn-cta:hover {
    background: #dc2626;
    border-color: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.2), 0 4px 6px -2px rgba(239, 68, 68, 0.1);
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

@media (max-width: 768px) {
    .support-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Telegram Menu Showcase */
.menu-showcase {
    padding: 80px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.telegram-chat-mockup {
    max-width: 600px;
    margin: 40px auto 0;
    background: #eef2f5;
    background-image: radial-gradient(#d3dbdf 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.telegram-message {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.telegram-message.user-msg {
    justify-content: flex-end;
}

.telegram-message.user-msg .telegram-bubble {
    background: #e2f7cb;
    border-radius: 15px 15px 0 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.telegram-message.user-msg .telegram-sender {
    color: #10b981;
}

.mockup-divider {
    margin: 25px 0;
    border: none;
    border-top: 1px dashed #cbd5e1;
}

.telegram-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.telegram-bubble {
    background: var(--bg-white);
    padding: 15px;
    border-radius: 0 15px 15px 15px;
    max-width: 85%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.telegram-sender {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bot-badge {
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 5px;
    font-weight: 600;
}

.telegram-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #2b2f3a;
    margin-bottom: 15px;
}

.telegram-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.telegram-btn-row {
    display: flex;
    gap: 8px;
}

.telegram-inline-btn {
    flex: 1;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.telegram-inline-btn:hover {
    background: #cbd5e1;
    color: #1e293b;
}

.telegram-inline-btn.premium-btn {
    border-color: rgba(244,185,66,0.3);
    background: rgba(244,185,66,0.05);
    color: #b45309;
}

.telegram-inline-btn.premium-btn:hover {
    background: rgba(244,185,66,0.15);
}

.telegram-inline-btn.support-btn {
    border-color: rgba(239,68,68,0.3);
    background: rgba(239,68,68,0.05);
    color: #b91c1c;
}

.telegram-inline-btn.support-btn:hover {
    background: rgba(239,68,68,0.15);
}

/* SEO Text Section */
.seo-text-section {
    padding: 80px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.seo-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.seo-text-col h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.seo-text-col p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.seo-text-col strong {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-logo-large {
        width: 150px;
        height: 150px;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .seo-text-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .telegram-chat-mockup {
        padding: 15px;
    }

    .telegram-bubble {
        max-width: 90%;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-card {
        padding: 20px;
    }
}
