/* IBM Plex Mono @font-face declarations */
@font-face {
    font-family: 'IBM Plex Mono';
    src: url('/static/fonts/IBMPlexMono-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Mono';
    src: url('/static/fonts/IBMPlexMono-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Mono';
    src: url('/static/fonts/IBMPlexMono-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Mono';
    src: url('/static/fonts/IBMPlexMono-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Mono';
    src: url('/static/fonts/IBMPlexMono-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Mono';
    src: url('/static/fonts/IBMPlexMono-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Custom button classes */
.btn-primary {
    background-color: #f0c300;
    color: #000;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-primary:hover {
    opacity: 0.8;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid #fff;
    cursor: pointer;
    transition: opacity 0.2s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-secondary:hover {
    opacity: 0.8;
}

/* Card component */
.card {
    background-color: #171717; /* neutral-900 */
    border: 1px solid #404040; /* neutral-700 */
    padding: 1.5rem;
    border-radius: 0.375rem;
}

/* Status badge colors */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0.25rem;
}

.badge-booked {
    background-color: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.badge-attended {
    background-color: rgba(240, 195, 0, 0.2);
    color: #f0c300;
    border: 1px solid rgba(240, 195, 0, 0.4);
}

.badge-completed {
    background-color: rgba(34, 197, 94, 0.2);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.badge-refunded {
    background-color: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.badge-expired {
    background-color: rgba(115, 115, 115, 0.2);
    color: #a3a3a3;
    border: 1px solid rgba(115, 115, 115, 0.4);
}

/* Form input styling */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
select,
textarea {
    background-color: #171717;
    border: 1px solid #404040;
    color: #fff;
    padding: 0.75rem;
    font-family: 'IBM Plex Mono', monospace;
    width: 100%;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #f0c300;
    box-shadow: 0 0 0 1px #f0c300;
}

/* Heading font — sans-serif to match padimai.net */
h1, h2, h3, h4, h5, h6,
.font-heading {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

/* Nav link styling */
.nav-link {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: opacity 0.2s ease;
}

.nav-link:hover {
    opacity: 0.6;
}
