/* Surfaces */
.hero {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    margin-bottom: 1.5rem;
}

.panel {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

@media (max-width: 800px) {
    .hero {
        padding: 1.5rem;
    }

    .panel {
        padding: 1rem;
        margin-bottom: 1rem;
    }
}

/* Typography */
.page-title {
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
}

.section-title {
    margin: 0 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

@media (max-width: 800px) {
    .page-title {
        margin: 0 0 0.75rem;
    }

    .section-title {
        margin: 0 0 0.75rem;
        padding-bottom: 0.5rem;
    }
}

.muted {
    color: #4b5563;
}

.fineprint {
    margin: 0.75rem 0 0;
    color: #4b5563;
    font-size: 0.95rem;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--accent);
    color: #fff;
    border-radius: 6px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    margin-top: 0.5rem;
}

.button.secondary {
    background: #6b7280;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.table th,
.table td {
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem;
    text-align: left;
}

/* Messages */
.messages {
    list-style: none;
    padding: 0;
}

.messages li {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.messages li.success {
    background: #dcfce7;
    color: #166534;
}

.messages li.error {
    background: #fee2e2;
    color: #991b1b;
}

/* Forms */
.booking-form {
    margin-top: 0.5rem;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2fr auto;
    gap: 0.9rem;
    align-items: end;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-weight: 600;
}

.form-field input,
.form-field textarea {
    font: inherit;
    font-weight: 400;
    padding: 0.6rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    color: #111827;
}

.form-field textarea {
    resize: vertical;
    min-height: 2.65rem;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(56, 185, 236, 0.25);
}

.form-field--notes {
    min-width: 0;
}

.form-field--submit {
    display: flex;
    align-items: end;
}

@media (max-width: 900px) {
    .booking-form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-field--submit {
        grid-column: 1 / -1;
    }
}

/* Lists */
.event-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-item {
    padding: 0.85rem 0;
    border-bottom: 1px solid #eef2f7;
}

.event-item:last-child {
    border-bottom: none;
}

.event-main {
    display: flex;
    gap: 0.75rem;
    align-items: baseline;
    flex-wrap: wrap;
}

.event-date {
    font-weight: 600;
}

.event-time {
    color: #374151;
}

.event-actions {
    margin-left: auto;
}
