:root {
    --kourtee-primary: #2E7D32;
    --kourtee-primary-hover: #15803D;
    --kourtee-accent: #4CAF50;
    --kourtee-bg: #F5F7F6;
    --kourtee-surface: #FFFFFF;
    --kourtee-text: #1F2933;
    --kourtee-muted: #6B7280;
    --kourtee-border: #E5E7EB;
    --kourtee-available: #22C55E;
    --kourtee-few: #F59E0B;
    --kourtee-booked: #EF4444;

    --kourtee-container: 1200px;
    --kourtee-radius: 18px;
    --kourtee-radius-sm: 12px;
    --kourtee-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
    --kourtee-transition: 0.2s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--kourtee-text);
    background: var(--kourtee-bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    color: var(--kourtee-text);
}

p {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

ul {
    padding-left: 1.2rem;
}

.section {
    padding: 72px 0;
}

.section-alt {
    background: #eef4ef;
}

.container {
    width: min(100% - 32px, var(--kourtee-container));
    margin-inline: auto;
}

.card,
.content-card {
    background: var(--kourtee-surface);
    border: 1px solid var(--kourtee-border);
    border-radius: var(--kourtee-radius);
    box-shadow: var(--kourtee-shadow);
}

.content-card {
    padding: 32px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--kourtee-primary);
}

.muted {
    color: var(--kourtee-muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
    transition: all var(--kourtee-transition);
    cursor: pointer;
}

.btn:hover,
.btn:focus {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--kourtee-primary);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--kourtee-primary-hover);
}

.btn-secondary {
    background: #fff;
    color: var(--kourtee-text);
    border-color: rgba(31, 41, 51, 0.12);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #fafafa;
    border-color: rgba(31, 41, 51, 0.22);
}

.btn-disabled {
	background: var(--kourtee-muted);
    color: #fff;
    border: none;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-disabled:hover,
.btn-disabled:focus {
    background: #9ca3af;
    color: #fff;
    transform: none;
}

.btn-block {
    width: 100%;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}

.status-available {
    background: rgba(34, 197, 94, 0.12);
    color: var(--kourtee-available);
}

.status-few {
    background: rgba(245, 158, 11, 0.12);
    color: var(--kourtee-few);
}

.status-booked {
    background: rgba(239, 68, 68, 0.12);
    color: var(--kourtee-booked);
}