/* brittadreger.de – Farben abgestimmt auf Markenlogo (Cyan, Limette, warmes Weiß) */

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hex-bg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='98'%3E%3Cpath d='M28 0 L56 16 L56 48 L28 64 L0 48 L0 16 Z' fill='none' stroke='%23243038' stroke-width='0.6' opacity='0.04'/%3E%3Cpath d='M28 49 L56 65 L56 97 L28 113 L0 97 L0 65 Z' fill='none' stroke='%2317B8CC' stroke-width='0.6' opacity='0.06'/%3E%3C/svg%3E");
    background-size: 56px 98px;
}

.hex-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 1.25rem 0;
    opacity: 0.4;
}

.nav-link {
    position: relative;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #17B8CC;
    transition: width 280ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.ham-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background-color: #243038;
    transition: transform 300ms ease, opacity 300ms ease;
    transform-origin: center;
}

.ham-open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham-open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham-open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-headline {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-headline {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.card-offer {
    transition: transform 250ms ease, box-shadow 250ms ease;
}

.card-offer:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(36, 48, 56, 0.1);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #17B8CC;
    color: #fff;
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    transition: background-color 200ms ease;
    text-decoration: none;
}

.btn-primary:hover { background-color: #0A6F7E; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid rgba(36, 48, 56, 0.2);
    color: #243038;
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: border-color 200ms ease, color 200ms ease;
    text-decoration: none;
}

.btn-ghost:hover {
    border-color: #17B8CC;
    color: #0A6F7E;
}

.tool-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(36, 48, 56, 0.45);
    font-weight: 500;
    display: block;
    margin-bottom: 0.75rem;
}

.tool-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(36, 48, 56, 0.15);
    padding: 0.5rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #243038;
    outline: none;
    resize: vertical;
    transition: border-color 200ms ease;
    line-height: 1.6;
}

.tool-input:focus {
    border-bottom-color: #17B8CC;
}

.tool-input::placeholder {
    color: rgba(36, 48, 56, 0.3);
}

.portrait-wrap {
    position: relative;
    display: inline-block;
}

.portrait-wrap::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(23, 184, 204, 0.35);
    z-index: 0;
    pointer-events: none;
}

.portrait-wrap img,
.portrait-wrap .portrait-placeholder {
    position: relative;
    z-index: 1;
}

.cal-wrapper {
    min-height: 520px;
    border: 1px solid rgba(36, 48, 56, 0.1);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paket-selector.border-sage,
.cal-selector.border-sage {
    border-color: rgba(23, 184, 204, 0.55);
}

.legacy-html p {
    margin-bottom: 0.75em;
}

.legacy-html p:last-child {
    margin-bottom: 0;
}

.legacy-html ul {
    margin: 0.5em 0 1em 1.25em;
    padding: 0;
    list-style: disc;
}

.legacy-html ul ul {
    margin-top: 0.35em;
    list-style: circle;
}

.legacy-html li {
    margin-bottom: 0.35em;
}

.legacy-html a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legacy-html a:hover {
    color: rgb(23, 184, 204);
}

.legacy-html strong {
    font-weight: 600;
}

/* Tile-Modal: Leitfarbe (--bd-accent per JS), dezent */
.bd-tile-modal-root {
    --bd-accent: #17b8cc;
}

.bd-tile-modal-panel {
    box-shadow:
        0 25px 50px -12px rgba(36, 48, 56, 0.14),
        0 0 0 1px rgba(36, 48, 56, 0.06),
        inset 0 3px 0 0 color-mix(in srgb, var(--bd-accent) 30%, transparent);
}

.bd-tile-modal-head {
    background-color: color-mix(in srgb, var(--bd-accent) 7%, #fbfaf6);
    border-bottom-color: color-mix(in srgb, var(--bd-accent) 16%, rgba(36, 48, 56, 0.12)) !important;
}
