/* ==========================================================================
   Dubbelbluf — components.css
   Buttons, badges, pills, labels, pull quotes.
   ========================================================================== */

/* Primary Button — solid terracotta, white text, NOT uppercase */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-8);
    padding: var(--s-12) var(--s-32);
    background: var(--c-accent);
    color: var(--c-white);
    font-family: var(--f-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.btn-primary:hover {
    background: var(--c-accent-hover);
    color: var(--c-white);
    transform: translateY(-1px);
}

/* Secondary Button — transparent with border */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-8);
    padding: var(--s-12) var(--s-32);
    background: transparent;
    color: var(--c-text);
    font-family: var(--f-body);
    font-size: 0.9375rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.btn-secondary:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
}

/* Text Link Button */
.btn-text {
    display: inline-flex;
    align-items: center;
    gap: var(--s-4);
    color: var(--c-accent);
    font-size: 0.875rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--dur) var(--ease);
}

.btn-text:hover {
    color: var(--c-accent-hover);
}

/* Badge / Pill */
.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--s-4) var(--s-12);
    background: var(--c-surface);
    color: var(--c-text-dim);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--r-pill);
}

.badge--accent {
    background: var(--c-accent);
    color: var(--c-white);
}

.badge--surface {
    background: var(--c-surface2);
    color: var(--c-text);
}

/* Pill row */
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-8);
    margin-top: var(--s-16);
}

/* Pull quote */
.pull-quote {
    font-family: var(--f-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--c-white);
    border-left: 3px solid var(--c-accent);
    padding-left: var(--s-24);
    margin: var(--s-48) 0;
}

.pull-quote__attribution {
    display: block;
    font-family: var(--f-body);
    font-size: 0.875rem;
    font-style: normal;
    color: var(--c-text-dim);
    margin-top: var(--s-12);
}

/* Star rating */
.stars {
    display: inline-flex;
    gap: 2px;
    color: var(--c-accent);
}

.stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.stars--dim svg {
    fill: var(--c-border);
}

/* Avatar circle */
.avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--c-accent);
    color: var(--c-white);
    font-family: var(--f-body);
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* Promo box */
.promo-box {
    background: var(--c-surface);
    border-radius: var(--r-md);
    padding: var(--s-24);
    margin-top: var(--s-24);
}

.promo-box__title {
    font-family: var(--f-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--c-white);
    margin-bottom: var(--s-8);
}

.promo-box__text {
    color: var(--c-text);
    font-size: 0.9375rem;
    margin-bottom: var(--s-4);
}

.promo-box__note {
    font-size: 0.8125rem;
    color: var(--c-text-dim);
}

/* Inline notice / alert */
.notice {
    display: flex;
    align-items: flex-start;
    gap: var(--s-12);
    background: var(--c-surface);
    border-left: 3px solid var(--c-accent);
    border-radius: var(--r-sm);
    padding: var(--s-16) var(--s-24);
    margin-bottom: var(--s-32);
    font-size: 0.9375rem;
    color: var(--c-text);
}

.notice__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--c-accent);
    margin-top: 2px;
}

/* Anchor link (small text with arrow) */
.anchor-link {
    display: inline-flex;
    align-items: center;
    gap: var(--s-4);
    font-size: 0.8125rem;
    color: var(--c-text-dim);
    transition: color var(--dur) var(--ease);
}

.anchor-link:hover {
    color: var(--c-accent);
}

.anchor-link svg {
    width: 14px;
    height: 14px;
}

/* Icon inline */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* 18+ notice pill */
.age-notice {
    display: inline-flex;
    align-items: center;
    gap: var(--s-8);
    padding: var(--s-8) var(--s-16);
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-pill);
    font-size: 0.8125rem;
    color: var(--c-text-dim);
    margin-top: var(--s-16);
}

/* Checkmark icon (thank-you page) */
.checkmark-icon {
    display: flex;
    justify-content: center;
    margin-bottom: var(--s-24);
}

.checkmark-icon svg {
    width: 64px;
    height: 64px;
    color: var(--c-accent);
}

/* Hours table */
.hours-table {
    width: 100%;
}

.hours-table tr {
    border-bottom: 1px solid var(--c-border);
}

.hours-table td {
    padding: var(--s-8) 0;
    font-size: 0.9375rem;
}

.hours-table td:last-child {
    text-align: right;
    color: var(--c-white);
}

/* Google Maps embed */
.map-embed {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: var(--r-md);
    margin-top: var(--s-32);
}

/* Legal links row */
.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-16);
    justify-content: center;
    margin-top: var(--s-32);
    font-size: 0.8125rem;
}

.legal-links a {
    color: var(--c-text-dim);
}

.legal-links a:hover {
    color: var(--c-accent);
}

/* reCAPTCHA attribution */
.recaptcha-notice {
    font-size: 0.75rem;
    color: var(--c-text-dim);
    margin-top: var(--s-12);
}

.recaptcha-notice a {
    color: var(--c-text-dim);
    text-decoration: underline;
}
