/*!
 * BookingDo — Calendly-style theme overrides
 * Loads AFTER style.css / responsive.css / the inline :root color block.
 * Strategy: this codebase already routes color through --primary-color /
 * --secondary-color and typography through --font-family everywhere, so we
 * retheme almost the entire marketing site by redeclaring those variables,
 * then layer in shape/shadow/motion tweaks for the specific components
 * that make a Calendly-style page feel the way it does (pill buttons,
 * soft cards, generous radius, restrained motion).
 */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Calendly-inspired palette */
    --primary-color: #0069FF;
    --secondary-color: #7B61FF;
    --ink: #0A2540;
    --muted: #5D7290;
    --bg-alt: #F6F8FC;
    --border-soft: #E3E8EF;
    --success: #00B67A;

    /* Swap the whole site's body font. Headings get Sora via the
       selectors below, layered on top of this base. */
    --font-family: "Inter", sans-serif;

    --radius-card: 16px;
    --radius-pill: 999px;
    --shadow-soft: 0 16px 32px -14px rgba(10, 37, 64, 0.16);
}

body {
    color: var(--ink);
}

/* ---------- Hero: split layout with floating visual card ---------- */
.hero-split-section {
    background: #fff;
    padding: 72px 0 56px;
    overflow: hidden;
}

.hero-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    position: relative;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: color-mix(in srgb, var(--primary-color), transparent 90%);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    display: inline-block;
}

.hero-split-title {
    font-family: "Sora", sans-serif !important;
    font-weight: 800 !important;
    font-size: 46px;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.hero-split-desc {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 6px;
}

.hero-split-visual {
    position: relative;
}

.hero-blob {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--primary-color), transparent 88%), transparent 70%);
    top: -50px;
    right: -40px;
    z-index: 0;
}

.hero-visual-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 16px;
    max-width: 460px;
    margin-left: auto;
    overflow: hidden;
}

.hero-visual-img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.hero-floater {
    position: absolute;
    top: -16px;
    left: -24px;
    z-index: 2;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-floater-ico {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: var(--success);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

@media (max-width: 900px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .hero-split-desc {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-visual-card {
        margin: 0 auto;
    }
    .hero-floater {
        left: 8px;
    }
    .hero-split-title {
        font-size: 32px;
    }
}

/* ---------- Headings: Sora, tighter tracking, heavier weight ---------- */
h1, h2, h3, h4, h5, h6,
.banner-text h1,
.beautiful-ui-kit-title,
.work-title,
.have-project-title,
.contact-form-title,
.plan-card-frist-titel,
.testimonial-12 .testimonial-prof h4 {
    font-family: "Sora", sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em;
}

.subtitle,
.sub-title-mein,
.text-muted {
    color: var(--muted) !important;
}

/* ---------- Buttons: pill shape, calmer weight, real hover states ---------- */
.btn-primary,
.btn-secondary,
.btn-border-white,
.btn-border-dark,
.btn-border-primary,
.btn-light {
    border-radius: var(--radius-pill) !important;
    font-weight: 600;
    padding: 13px 28px;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.btn-primary,
.btn-secondary {
    box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--primary-color), transparent 45%);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-1px);
    opacity: .92;
}

.btn-border-white:hover,
.btn-border-dark:hover,
.btn-border-primary:hover {
    transform: translateY(-1px);
    background-color: rgba(255, 255, 255, 0.08) !important;
}

/* ---------- Hero: calmer gradient, matches the mockup's hero band ---------- */
.bg-gradient-color {
    background: linear-gradient(135deg, var(--ink) 0%, #0F3A6B 55%, var(--primary-color) 130%);
}

.bg-blur {
    backdrop-filter: blur(6px);
    border-radius: var(--radius-card) !important;
}

/* ---------- Cards, feature tiles, pricing, testimonials ---------- */
.rounded-2, .rounded-3 {
    border-radius: var(--radius-card) !important;
}

[class^="card-bg-color-"],
.plan-card-border,
.pricingTable,
.testimonial-12,
.serviceBox {
    border-radius: var(--radius-card) !important;
    border-color: var(--border-soft) !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

[class^="card-bg-color-"]:hover,
.plan-card-border:hover,
.pricingTable:hover,
.serviceBox:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft) !important;
    border-color: transparent !important;
}

.bg-primary-rgb {
    background-color: var(--bg-alt) !important;
}

/* ---------- Avatars / review strip ---------- */
.avatar-group .avatar-img {
    border: 2.5px solid #fff;
}

/* ---------- Forms: match the rounded, quiet input style from the booking flow ---------- */
.form-control {
    border-radius: 10px !important;
    border-color: var(--border-soft) !important;
    padding: 11px 14px;
}

.form-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color), transparent 85%) !important;
}

/* ---------- Motion: keep it restrained ---------- */
@media (prefers-reduced-motion: reduce) {
    [class^="card-bg-color-"],
    .plan-card-border,
    .pricingTable,
    .serviceBox,
    .btn-primary,
    .btn-secondary {
        transition: none !important;
    }
}
