/* ══════════════════════════════
   Κοινά styles — Μάνος & Πέγκυ
══════════════════════════════ */

@font-face {
    font-family: 'Dancing Script';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/static/fonts/KD_Kithira-Regular.woff2') format('woff2'),
         url('/static/fonts/KD_Kithira-Regular.ttf') format('truetype');
}

/* ── Buttons ── */

/* Outlined: πράσινο border, hover fills */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1.5px solid #5a7a53;
    border-radius: 3px;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #5a7a53;
    cursor: pointer;
    background: transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
    background: #5a7a53;
    color: #ffffff;
}

.btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* Filled: solid πράσινο */
.btn-primary {
    background: #5a7a53;
    color: #ffffff;
    border-color: #5a7a53;
}

.btn-primary:hover {
    background: #4a6843;
    border-color: #4a6843;
    color: #ffffff;
}

/* Disabled state */
.btn:disabled,
.btn-primary:disabled {
    background: #a0b89a;
    border-color: #a0b89a;
    color: #ffffff;
    cursor: not-allowed;
}

/* Full-width variant */
.btn-block {
    width: 100%;
    display: flex;
}
