* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    background: #fff;
}

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

/* ── Navbar ─────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.4rem;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover { color: #16a34a; }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, #16a34a, #22c55e);
    transition: width 0.3s;
}

.nav-link:hover::after { width: 100%; }

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.nav-mobile-toggle span {
    width: 25px; height: 3px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ── Hero ────────────────────────────────────────────── */
.hero-section {
    margin-top: 70px;
    padding: 80px 0;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
    position: relative;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.08);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-circle {
    width: 96px; height: 96px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.ig-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.ig-follow-btn:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-2px);
}

/* ── Feed Section ────────────────────────────────────── */
.feed-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px; left: 50%;
    transform: translateX(-50%);
    width: 50px; height: 4px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 2px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.ig-post-wrapper {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: stretch;
}

.ig-post-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.14);
}

/* Instagram blockquote normalisieren */
.ig-post-wrapper .instagram-media {
    margin: 0 !important;
    min-width: 100% !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.behold-wrapper {
    width: 100%;
    margin: 0 auto 48px;
    min-height: 400px;
}

behold-widget {
    display: block;
    width: 100%;
}

.no-posts {
    text-align: center;
    padding: 40px;
    color: #64748b;
    font-size: 1.1rem;
}

.setup-hint {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 600px;
    margin: 0 auto 48px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.setup-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.setup-hint h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.setup-hint p {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.7;
}

.setup-steps {
    text-align: left;
    display: inline-block;
    margin-bottom: 32px;
    color: #475569;
    line-height: 2;
}

.setup-steps a {
    color: #16a34a;
    font-weight: 600;
    text-decoration: none;
}

.setup-steps a:hover { text-decoration: underline; }

.setup-steps code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #16a34a;
}

.more-link {
    text-align: center;
}

.btn-mehr {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(34,197,94,0.4);
}

.btn-mehr:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34,197,94,0.5);
}

/* ── Footer ──────────────────────────────────────────── */
.footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #f8fafc;
}

.footer-logo .logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f8fafc;
    display: block;
    margin-bottom: 12px;
}

.footer-section p,
.footer-section ul li {
    color: #a0aec0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover { color: #22c55e; }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
    font-size: 0.9rem;
}

/* ── Mobile ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px; left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        display: flex;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-links.active { transform: translateX(0); }

    .nav-link {
        font-size: 1.2rem;
        padding: 15px 30px;
        width: 80%;
        text-align: center;
        border-radius: 10px;
        background: rgba(34, 197, 94, 0.1);
        transition: all 0.3s ease;
        border: 1px solid rgba(34, 197, 94, 0.2);
    }

    .nav-link:hover {
        background: rgba(34, 197, 94, 0.9);
        color: white;
        transform: translateY(-2px);
    }

    .nav-mobile-toggle { display: flex; }

    .hero-title { font-size: 2rem; }

    .instagram-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
}
