/* Dicksord Fest 2026 - Newcastle - Mobile-First CSS */
/* Color Scheme:
   Primary: #613704 (Dark Brown)
   Secondary: #D46300 (Orange)
   Accent: #FDDC62 (Gold)
   White: #FFFFFF
   Dark: #545454
   Black: #000000
*/

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #613704;
    --secondary: #D46300;
    --accent: #FDDC62;
    --white: #FFFFFF;
    --dark: #545454;
    --black: #000000;
    /* Semantic states mapped to palette colours */
    --success: #FDDC62;
    --danger: #613704;
    --warning: #D46300;
    --info: #545454;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--accent);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary);
}

/* Container & Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-fluid {
    width: 100%;
    padding: 0 1rem;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
}

/* Desktop inline header links - hidden on mobile */
.header-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    margin: 0 0.5rem;
    flex-wrap: wrap;
}

.header-links a {
    color: var(--white);
    padding: 0.375rem 0.625rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.875rem;
    white-space: nowrap;
    text-decoration: none;
}

.header-links a:hover,
.header-links a.active {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Hamburger nav drawer */
.nav {
    display: none;
    width: 100%;
    margin-top: 0.5rem;
}

.nav.active {
    display: block;
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0.25rem 0.5rem;
}

.nav li {
    margin: 0.25rem 0;
}

.nav a {
    color: var(--white);
    display: block;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-weight: 500;
}

.nav a:hover,
.nav a.active {
    background: rgba(255, 255, 255, 0.2);
}

/* Nav section labels (non-clickable category headers) */
.nav-section-label {
    display: block;
    padding: 0.375rem 1rem;
    margin-top: 0.375rem;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(0, 0, 0, 0.15);
}

/* Mobile header links section inside hamburger */
.nav-mobile-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 0.25rem;
    padding-bottom: 0.25rem;
}

/* Mobile Login Button - visible without toggle */
.btn-login-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    min-width: 44px;
    min-height: 44px;
    line-height: 1.5;
    margin-left: auto;
    margin-right: 0.5rem;
}

.btn-login-mobile:hover {
    background: #FDDC62;
    color: var(--primary);
}

.btn-login-mobile.active {
    background: #FDDC62;
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Buttons - Mobile-First (min 44px × 44px) */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    line-height: 1.5;
    -webkit-tap-highlight-color: transparent;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #613704;
    color: var(--white);
}

.btn-secondary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #000000;
    color: var(--white);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary);
}

.btn-accent:hover {
    background-color: #FDDC62;
    color: var(--primary);
}

.btn-success {
    background-color: var(--success);
    color: var(--primary);
}

.btn-danger {
    background-color: var(--danger);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-lg {
    padding: 1.25rem 2rem;
    font-size: 1.25rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Forms - Mobile-First */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 0.875rem;
    font-size: 16px; /* Prevent zoom on iOS */
    border: 2px solid #FDDC62;
    border-radius: 8px;
    background-color: var(--white);
    color: var(--dark);
    transition: border-color 0.3s ease;
    min-height: 44px;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(212, 99, 0, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23545454' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    padding-right: 2.5rem;
}

/* Checkboxes & Radio Buttons */
.form-check {
    display: block;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.form-check-input {
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.form-check-label {
    display: inline-block;
    cursor: pointer;
    user-select: none;
    line-height: 1.75;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.card-header h1,
.card-header h2,
.card-header h3,
.card-header h4,
.card-header h5,
.card-header h6,
.card-header .card-title {
    color: var(--white);
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    background-color: #FFFFFF;
    padding: 1rem;
    border-top: 1px solid #FDDC62;
}

.card-title {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Sections */
.section {
    padding: 2rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5rem;
}

.col {
    flex: 1;
    padding: 0 0.5rem;
    margin-bottom: 1rem;
}

/* Activity/Meal/Event Items */
.item {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.item-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--dark);
}

.item-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.item-description {
    margin-bottom: 1rem;
    color: var(--dark);
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.item-capacity {
    font-weight: 600;
    color: var(--primary);
}

.item-capacity.full {
    color: var(--danger);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    line-height: 1.5;
}

.badge-primary {
    background-color: var(--primary);
    color: var(--white);
}

.badge-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.badge-accent {
    background-color: var(--accent);
    color: var(--primary);
}

.badge-success {
    background-color: var(--success);
    color: var(--primary);
}

.badge-danger {
    background-color: var(--danger);
    color: var(--white);
}

.badge-warning {
    background-color: var(--warning);
    color: var(--white);
}

.badge-info {
    background-color: var(--info);
    color: var(--white);
}

/* Modal - Mobile-First (Full Screen) */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    margin: auto;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    animation: slideIn 0.3s ease;
    padding: 2rem;
}

.modal-content:has(.modal-header) {
    padding: 0;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #FDDC62;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Poll Styles */
.poll {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.poll-question {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.poll-options {
    margin-bottom: 1rem;
}

.poll-option {
    margin-bottom: 1rem;
}

.poll-option-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.poll-bar {
    width: 100%;
    height: 44px;
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.poll-bar-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    transition: width 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    color: var(--white);
    font-weight: 600;
}

.poll-bar-text {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-weight: 600;
    color: var(--dark);
    z-index: 1;
}

.poll-leading {
    border: 3px solid var(--accent);
}

.poll-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--dark);
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* Dashboard */
.dashboard-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.dashboard-stat {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.dashboard-stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.dashboard-stat-label {
    font-size: 1rem;
    color: var(--dark);
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #FDDC62;
    color: #613704;
    border: 1px solid #D46300;
}

.alert-danger {
    background-color: #613704;
    color: #FFFFFF;
    border: 1px solid #000000;
}

.alert-warning {
    background-color: #D46300;
    color: #FFFFFF;
    border: 1px solid #613704;
}

.alert-info {
    background-color: #545454;
    color: #FFFFFF;
    border: 1px solid #000000;
}

/* Loading Spinner */
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: var(--secondary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.text-dark { color: var(--dark); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }

.capacity-green { color: #28a745; font-weight: 600; }
.capacity-amber { color: #ffc107; font-weight: 600; }
.capacity-red   { color: #dc3545; font-weight: 600; }

.btn-interest { cursor: pointer; border: 1px solid #dee2e6; border-radius: 4px; background: #f8f9fa; transition: background 0.15s, border-color 0.15s; }
.btn-interest.btn-success { background: #28a745; color: #fff; border-color: #28a745; }
.btn-interest.btn-warning { background: #ffc107; color: #212529; border-color: #ffc107; }
.btn-interest.btn-danger  { background: #dc3545; color: #fff; border-color: #dc3545; }
.btn-interest.btn-outline-secondary { background: #f8f9fa; color: #6c757d; border-color: #dee2e6; }
.btn-interest:hover { opacity: 0.85; }

.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-accent { background-color: var(--accent); }
.bg-light { background-color: var(--accent); }
.bg-white { background-color: var(--white); }
.bg-success { background-color: #28a745; color: #fff; }
.bg-warning { background-color: #ffc107; color: #212529; }
.bg-danger  { background-color: #dc3545; color: #fff; }
.bg-info    { background-color: #17a2b8; color: #fff; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }

/* Dashboard Collapsible Sections */
.dashboard-section {
    margin-bottom: 1.5rem;
    border: 1px solid #FDDC62;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.dashboard-section-header {
    background: #613704 !important;
    color: #FDDC62 !important;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
    user-select: none;
    border: none;
    min-height: 60px;
    max-height: 60px;
    box-sizing: border-box;
}

.dashboard-section-header:hover {
    background: #7d4a05 !important;
}

.dashboard-section-header h3,
.dashboard-section-header h2 {
    margin: 0;
    display: inline-flex;
    align-items: center;
    color: #FDDC62 !important;
    font-size: 1.1rem;
}

.dashboard-section-header .toggle-icon {
    margin-right: 0.75rem;
    font-size: 0.875rem;
    transition: transform 0.2s;
    color: #FDDC62;
}

.dashboard-section-header .section-action {
    margin-left: auto;
}

.dashboard-section-content {
    background: #FFFFFF;
    color: #545454;
    padding: 1.5rem;
}

.dashboard-booking-card {
    background: #FFFFFF;
    border: 1px solid #FDDC62;
    border-radius: 0.25rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.dashboard-booking-card p {
    margin-bottom: 0.5rem;
}

.dashboard-booking-card p:last-child {
    margin-bottom: 0;
}

/* Poll Category Groups */
.poll-category-group {
    margin-bottom: 1.5rem;
}

/* Tablet Styles (768px+) */
@media (min-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero h1 { font-size: 3rem; }

    /* Show desktop header links */
    .header-links {
        display: flex;
    }

    /* Keep hamburger visible (for categorized sections) */
    .nav-toggle {
        display: block;
    }

    /* Hide mobile login button on desktop */
    .btn-login-mobile {
        display: none;
    }

    /* Desktop nav: absolute dropdown from hamburger button */
    .header-content {
        position: relative;
        flex-wrap: nowrap;
    }

    .nav {
        position: absolute;
        top: calc(100% + 0.5rem);
        right: 0;
        width: 240px;
        margin-top: 0;
        max-height: 80vh;
        overflow-y: auto;
        border-radius: 8px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
        z-index: 1100;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    }

    /* Hide the mobile-only header links in desktop dropdown */
    .nav-mobile-header {
        display: none;
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .row {
        margin: 0 -1rem;
    }
    
    .col {
        padding: 0 1rem;
    }
}

/* Desktop Styles (1024px+) */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .modal-content {
        max-width: 800px;
    }
}

/* Print Styles */
@media print {
    .header,
    .nav,
    .footer,
    .btn,
    .modal {
        display: none !important;
    }
}

/* Section headers with consistent height */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color, #1a6aa8) 0%, #1e5a8e 100%);
    color: white;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.section-header h1,
.section-header h2 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.4;
    flex: 1;
}

.section-header .btn,
.section-header button,
.section-header a {
    margin-left: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Expander sections (e.g. closed polls) */
.expander-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color, #1a6aa8) 0%, #1e5a8e 100%);
    color: white;
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 0;
    min-height: 60px;
    transition: all 0.3s ease;
    user-select: none;
}

.expander-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.expander-header h2,
.expander-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: white;
}

.expander-icon {
    font-size: 1.2rem;
}

.expander-content {
    display: none;
    padding: 1.5rem 0;
}

.expander-content.active {
    display: block;
}
