/**
 * Global Font Styles - Premium Typography
 * Apply modern, professional fonts across all admin pages
 */

/* Fonts are enqueued via class-asset-manager.php */

/* Root font variables */
:root {
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Override WordPress admin fonts */
.wrap h1,
.wrap h2,
.wrap h3,
.serenity-header h1,
.serenity-edit-title,
.serenity-card-header-edit h2,
.modal-header h2,
.service-card h3,
.holiday-card h3,
.location-card h3 {
    font-family: var(--font-heading) !important;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Body text */
body,
.wrap,
.serenity-form-group label,
input,
select,
textarea,
button,
.description {
    font-family: var(--font-body) !important;
}

/* Display text (extra large) */
.serenity-booking-wrap h1,
.serenity-services-wrap h1,
.serenity-holidays-wrap h1 {
    font-family: var(--font-display) !important;
    font-weight: 800;
    font-size: 36px;
    letter-spacing: -0.03em;
}

/* Heading sizes with improved hierarchy */
h1, .h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

h2, .h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
}

h3, .h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

/* Card titles */
.service-card h3,
.holiday-card h3,
.location-card h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Button text */
.button,
.button-primary,
.serenity-btn-save,
.btn-edit,
.btn-delete {
    font-family: var(--font-body) !important;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Labels and form fields */
label {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.005em;
}

/* Description text */
.description,
small {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

/* Status badges */
.status-badge,
.category-badge {
    font-family: var(--font-body) !important;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Navigation menu */
#adminmenu a {
    font-family: var(--font-body) !important;
    font-weight: 500;
}

/* Modal headers */
.modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Improved readability */
p {
    line-height: 1.6;
}

/* Table headers */
th {
    font-family: var(--font-body) !important;
    font-weight: 600;
}
