/* Invitationer guide-side */

body > main.container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

main .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Buttons ───────────────────────────────────────────── */

.inv-btn-primary {
    display: inline-block;
    background: var(--primary-cyan);
    color: #ffffff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    border: none;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    cursor: pointer;
}

.inv-btn-primary:hover {
    background: var(--primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
}

.inv-btn-light {
    background: #ffffff;
    color: var(--dark-blue);
}

.inv-btn-light:hover {
    background: rgba(255, 255, 255, 0.88);
    color: var(--dark-blue);
}

/* ── Hero ──────────────────────────────────────────────── */

.inv-hero {
    background: var(--dark-blue);
    color: #ffffff;
    padding: 56px 0 40px;
}

.inv-hero h1 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 2.4rem;
    color: #ffffff;
    text-align: center;
    line-height: 1.25;
    margin: 0 0 20px;
}

.inv-hero-lead {
    max-width: 720px;
    margin: 0 auto 28px;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.65;
}

.inv-hero-cta {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.inv-btn-outline {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
    cursor: pointer;
}

.inv-btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.inv-toc {
    max-width: 720px;
    margin: 48px auto 0;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.inv-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
}

.inv-toc a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 600;
}

.inv-toc a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ── Content sections ──────────────────────────────────── */

.inv-section {
    background: #ffffff;
    padding: 64px 0;
}

.inv-section--alt {
    background: var(--bg);
}

.inv-content {
    max-width: 760px;
    margin: 0 auto;
}

.inv-content > h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.75rem;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0 0 20px;
}

.inv-content > h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin: 28px 0 10px;
}

.inv-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-dark);
    margin: 0 0 16px;
}

.inv-content p:last-child {
    margin-bottom: 0;
}

/* ── Timing table ──────────────────────────────────────── */

.inv-timing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 24px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
}

.inv-timing-table th,
.inv-timing-table td {
    text-align: left;
    padding: 12px 18px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
}

.inv-timing-table tbody tr:last-child td {
    border-bottom: none;
}

.inv-timing-table th {
    background: var(--bg);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
}

.inv-timing-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.inv-timing-table td:last-child {
    color: var(--text-muted);
}

/* ── Checklist ─────────────────────────────────────────── */

.inv-checklist {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.inv-checklist li {
    padding: 10px 0 10px 34px;
    position: relative;
    line-height: 1.6;
    font-size: 0.98rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
}

.inv-checklist li:last-child {
    border-bottom: none;
}

.inv-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    width: 22px;
    height: 22px;
    background: var(--primary-cyan);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.inv-checklist li strong {
    color: var(--text-dark);
}

/* ── Template cards ────────────────────────────────────── */

.inv-templates-grid {
    max-width: 1000px;
    margin: 32px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.inv-template-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.inv-template-card h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin: 0 0 14px;
}

.inv-template-text {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 0.93rem;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg);
    padding: 18px 20px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-cyan);
    margin: 0;
    white-space: pre-line;
    font-style: normal;
}

/* ── FAQ ───────────────────────────────────────────────── */

.inv-faq-list {
    margin-top: 8px;
}

.inv-faq-item {
    padding: 22px 0;
    border-bottom: 1px solid var(--border-light);
}

.inv-faq-item:first-child {
    border-top: 1px solid var(--border-light);
}

.inv-faq-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px;
}

.inv-faq-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ── Bottom CTA ────────────────────────────────────────── */

.inv-cta {
    background: var(--dark-blue);
    padding: 72px 0;
    text-align: center;
    color: #ffffff;
}

.inv-cta h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.9rem;
    color: #ffffff;
    margin: 0 0 10px;
}

.inv-cta p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    margin: 0 0 22px;
}

/* ── Mobile ────────────────────────────────────────────── */

@media (max-width: 768px) {
    .inv-hero {
        padding: 40px 0 32px;
    }

    .inv-hero h1 {
        font-size: 1.6rem;
    }

    .inv-hero-lead {
        font-size: 0.95rem;
    }

    .inv-toc {
        margin-top: 32px;
        padding-top: 20px;
    }

    .inv-toc ul {
        gap: 8px 16px;
    }

    .inv-toc a {
        font-size: 0.82rem;
    }

    .inv-section {
        padding: 40px 0;
    }

    .inv-content > h2 {
        font-size: 1.35rem;
    }

    .inv-content > h3 {
        font-size: 1.05rem;
    }

    .inv-timing-table th,
    .inv-timing-table td {
        padding: 10px 12px;
        font-size: 0.88rem;
    }

    .inv-templates-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .inv-template-text {
        font-size: 0.9rem;
        padding: 16px;
    }

    .inv-cta {
        padding: 48px 0;
    }

    .inv-cta h2 {
        font-size: 1.5rem;
    }
}
