/* ============================================================
   Shared styles — Chinmaya & Kathlyne — Ethereal Union
   Design tokens: see tailwind-config.js
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Work+Sans:wght@300;400;500;600&display=swap');

/* Material Symbols Outlined */
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&display=swap');

/* --- Material Symbols base --- */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

/* --- Image matting (Ethereal Union: 16px inset + surface bg) --- */
.image-matte {
    padding: 16px;
    background-color: #fff8f0; /* surface */
}

/* --- RSVP chip inputs: fallback for non-peer-checked browsers --- */
input[type="radio"].rsvp-chip:checked + label,
input[type="checkbox"].rsvp-chip:checked + label {
    background-color: #fbddc4; /* primary-fixed */
    border-color: #705a47;     /* primary */
    color: #271809;            /* on-primary-fixed */
}

/* --- Header background --- */
header {
    background-color: #FBFBFB !important;
}

/* --- Offset scroll targets below the sticky header --- */
html {
    scroll-padding-top: 200px;
}

/* --- Minimalist bottom-border inputs --- */
.minimal-input {
    border: none;
    border-bottom: 1px solid #6b5c4c; /* secondary */
    background-color: transparent;
    padding: 8px 0;
    transition: border-color 0.3s ease;
    width: 100%;
    display: block;
}
.minimal-input:focus {
    outline: none;
    border-bottom-color: #705a47; /* primary */
    box-shadow: none;
}
