/* ============================================================
   Theme „Trust" — Variante A · Klar & Seriös
   ------------------------------------------------------------
   Skin über die bestehenden site.css-Klassen.
   Body-Klasse: .theme-trust
   Neu hinzugekommen (nicht in site.css): .trust-section / .trust-card
   und der zweispaltige .domain-header-bar (optionaler Topbar-Header).
   Schriften: Source Serif 4 (Display) + Source Sans 3 (Text).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,400;8..60,600;8..60,700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

.theme-trust {
    --tr-bg:        #F6F8F8;
    --tr-surface:   #ffffff;
    --tr-ink:       #21333A;
    --tr-ink-deep:  #0C3240;
    --tr-petrol:    #134B5F;
    --tr-green:     #1E7A5A;
    --tr-green-bg:  #EAF4EF;
    --tr-muted:     #46595F;
    --tr-faint:     #7A8C92;
    --tr-border:    #E2E8E8;
    --tr-border-2:  #DCE5E5;

    --tr-serif: 'Source Serif 4', Georgia, serif;
    --tr-sans:  'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    background: var(--tr-bg);
    color: var(--tr-ink);
    font-family: var(--tr-sans);
}

.theme-trust .domain-page,
.theme-trust.domain-page { background: var(--tr-bg); }

/* ---------- Optionaler Topbar-Header (Domain links · Badge rechts) ---------- */
.theme-trust .domain-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(1.25rem, 4vw, 3.5rem);
    height: 72px;
    background: var(--tr-surface);
    border-bottom: 1px solid var(--tr-border);
}

.theme-trust .domain-header-bar .brand {
    font-family: var(--tr-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tr-ink-deep);
}

/* ---------- Hero / Header ---------- */
.theme-trust .domain-header {
    padding: clamp(3rem, 6vw, 4.75rem) 1.25rem clamp(2rem, 4vw, 3.5rem);
    background: var(--tr-bg);
}

.theme-trust .domain-header .eyebrow {
    margin: 0 0 1.1rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tr-green);
}

.theme-trust .domain-name {
    font-family: var(--tr-serif);
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--tr-ink-deep);
    margin-bottom: 0.6rem;
}

.theme-trust .domain-title {
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    line-height: 1.5;
    color: var(--tr-muted);
    max-width: 640px;
    margin: 0 auto;
}

/* For-Sale-Badge → ruhige Pill statt Verlauf */
.theme-trust .for-sale-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--tr-green-bg);
    color: var(--tr-green);
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
}

.theme-trust .for-sale-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tr-green);
}

/* ---------- Content-Wrapper ---------- */
.theme-trust .domain-content {
    padding: 0 1.25rem;
}

.theme-trust .domain-content > * {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Verfügbarkeits-Chips ---------- */
.theme-trust .availability-section {
    gap: 0.75rem;
    margin: 0 auto 2.5rem;
}

.theme-trust .availability-item {
    background: var(--tr-surface);
    border: 1px solid var(--tr-border-2);
    border-radius: 999px;
    padding: 0.55rem 1.1rem;
    font-size: 0.95rem;
}

.theme-trust .availability-item::before {
    content: "";
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background: var(--tr-green);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M2 7.5l3.2 3L12 3.5'/%3E%3C/svg%3E") center/contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M2 7.5l3.2 3L12 3.5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.theme-trust .availability-label { color: var(--tr-faint); font-weight: 600; }
.theme-trust .availability-value { color: var(--tr-ink); font-weight: 600; }

/* ---------- Preis + Kontakt (gemeinsame Karte) ---------- */
.theme-trust .price-contact-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    background: var(--tr-surface);
    border: 1px solid var(--tr-border);
    border-radius: 16px;
    padding: clamp(1.75rem, 4vw, 2rem) clamp(2.5rem, 6vw, 4rem);
    box-shadow: 0 8px 28px rgba(12, 50, 64, 0.07);
    margin: 0 auto 3rem;
}

.theme-trust .price-section,
.theme-trust .contact-section { margin: 0; }

.theme-trust .price-label {
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tr-faint);
}

.theme-trust .price {
    font-family: var(--tr-serif);
    font-size: clamp(2.25rem, 5vw, 2.875rem);
    font-weight: 700;
    color: var(--tr-ink-deep);
}

.theme-trust .contact-button {
    margin-top: 0.875rem;
    background: var(--tr-petrol);
    color: #fff;
    border-radius: 10px;
    padding: 0.95rem 2.75rem;
    font-size: 1.0625rem;
    font-weight: 600;
}

.theme-trust .contact-button:hover { background: var(--tr-ink-deep); }

.theme-trust .response-note {
    margin-top: 0.5rem;
    font-size: 0.84rem;
    color: var(--tr-faint);
}

/* ---------- Domain-Bild ---------- */
.theme-trust .domain-image { margin: 0 auto 3.5rem; max-width: 1024px; }
.theme-trust .domain-image img {
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(12, 50, 64, 0.10);
}

/* ---------- Beschreibung ---------- */
.theme-trust .domain-description {
    text-align: left;
    max-width: 760px;
    margin: 0 auto 3.5rem;
}

.theme-trust .domain-description h2,
.theme-trust .domain-description h3 {
    font-family: var(--tr-serif);
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--tr-ink-deep);
    margin-bottom: 1rem;
}

.theme-trust .domain-description p { color: var(--tr-muted); line-height: 1.75; }
.theme-trust .domain-description p:first-child { color: var(--tr-ink); }

.theme-trust .domain-description ul li {
    padding: 0.75rem 0 0.75rem 1.75rem;
    border-bottom-color: #E8EEEE;
    color: var(--tr-ink);
}

.theme-trust .domain-description ul li::before {
    content: "✓";
    color: var(--tr-green);
    top: 0.75rem;
}

/* ---------- NEU: Trust-Sektion (sicherer Kauf) ---------- */
.theme-trust .trust-section {
    max-width: 1080px;
    margin: 0 auto 3.5rem;
    background: var(--tr-ink-deep);
    border-radius: 16px;
    padding: clamp(2rem, 4vw, 2.5rem);
    color: #fff;
    text-align: left;
}

.theme-trust .trust-section h2 {
    font-family: var(--tr-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    color: #fff;
}

.theme-trust .trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.theme-trust .trust-card { display: flex; gap: 0.875rem; }

.theme-trust .trust-card .icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-trust .trust-card .icon svg { width: 18px; height: 18px; stroke: #8FD0B4; }
.theme-trust .trust-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; color: #fff; }
.theme-trust .trust-card p { font-size: 0.875rem; line-height: 1.6; color: rgba(255, 255, 255, 0.72); margin: 0; }

/* ---------- FAQ ---------- */
.theme-trust .faq-section { margin: 0 auto 3.5rem; max-width: 820px; }
.theme-trust .faq-section h2 {
    font-family: var(--tr-serif);
    font-size: clamp(1.75rem, 3.5vw, 2rem);
    font-weight: 700;
    color: var(--tr-ink-deep);
}

.theme-trust .faq-item {
    background: var(--tr-surface);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    margin-bottom: 0.75rem;
}

.theme-trust .faq-item[open] { border-color: var(--tr-petrol); }

.theme-trust .faq-question {
    padding: 1.125rem 1.375rem;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--tr-ink);
}

.theme-trust .faq-question::after { color: var(--tr-petrol); font-weight: 300; font-size: 1.375rem; }
.theme-trust .faq-answer { padding: 0 1.375rem 1.125rem; color: var(--tr-muted); }

/* ---------- Ähnliche Domains ---------- */
.theme-trust .related-domains-section { margin: 0 auto 4rem; }
.theme-trust .related-domains-section h2 {
    font-family: var(--tr-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tr-ink-deep);
}

.theme-trust .related-domain-link {
    background: var(--tr-surface);
    border: 1px solid var(--tr-border-2);
    border-radius: 8px;
    padding: 0.55rem 1.25rem;
    color: var(--tr-petrol);
    font-weight: 600;
}

.theme-trust .related-domain-link:hover {
    background: var(--tr-petrol);
    border-color: var(--tr-petrol);
    color: #fff;
}

/* ---------- Footer ---------- */
.theme-trust .domain-footer {
    margin-top: auto;
    background: var(--tr-ink-deep);
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem clamp(1.25rem, 4vw, 3.5rem);
    font-size: 0.875rem;
    text-align: left;
}

.theme-trust .domain-footer .brand {
    font-family: var(--tr-serif);
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

.theme-trust .domain-footer .footer-links { display: flex; gap: 1.5rem; }
.theme-trust .domain-footer a { color: rgba(255, 255, 255, 0.65); }
.theme-trust .domain-footer a:hover { color: #fff; text-decoration: none; }

/* ---------- Dezente Eingangs-Animationen ---------- */
@media (prefers-reduced-motion: no-preference) {
    .theme-trust .domain-header > *,
    .theme-trust .domain-content > * {
        animation: tr-rise 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    .theme-trust .domain-content > *:nth-child(2) { animation-delay: 0.05s; }
    .theme-trust .domain-content > *:nth-child(3) { animation-delay: 0.1s; }
    .theme-trust .domain-content > *:nth-child(4) { animation-delay: 0.15s; }
    .theme-trust .domain-content > *:nth-child(n+5) { animation-delay: 0.2s; }
}

@keyframes tr-rise {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .theme-trust .trust-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

@media (max-width: 768px) {
    .theme-trust .domain-header-bar { height: 60px; }
    .theme-trust .contact-button { display: inline-block; width: auto; }
    .theme-trust .domain-footer { flex-direction: column; gap: 0.75rem; text-align: center; }
    .theme-trust .price-contact-card { width: 100%; }
}
