@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root{
    --orange-900:#7c2d12;
    --orange-800:#9a3412;
    --orange-700:#c2410c;
    --orange-600:#ea580c;
    --orange-500:#f97316;
    --orange-400:#fb923c;
    --orange-300:#fdba74;
    --orange-200:#fed7aa;
    --orange-100:#ffedd5;
    --cream:#fffaf5;
    --ink:#1f2937;
    --muted:#6b7280;
    --line:#f0dfd2;
    --shadow:0 18px 45px rgba(124,45,18,.12);
}

*{box-sizing:border-box}
body{
    font-family:"Inter",sans-serif;
    background:
        radial-gradient(circle at 8% 5%,rgba(251,146,60,.18),transparent 28%),
        radial-gradient(circle at 92% 0,rgba(249,115,22,.14),transparent 32%),
        var(--cream);
    color:var(--ink);
}
a{text-decoration:none}
.btn-orange{
    color:#fff;
    border:0;
    background:linear-gradient(135deg,var(--orange-500),var(--orange-700));
    box-shadow:0 10px 24px rgba(234,88,12,.22);
}
.btn-orange:hover{color:#fff;transform:translateY(-1px)}
.text-orange{color:var(--orange-600)!important}
.bg-orange-soft{background:var(--orange-100)!important}
.navbar-glass{
    background:rgba(255,255,255,.92);
    border-bottom:1px solid rgba(249,115,22,.12);
    backdrop-filter:blur(14px);
}
.brand-mark{
    width:46px;height:46px;border-radius:14px;
    display:grid;place-items:center;color:white;
    background:linear-gradient(135deg,var(--orange-400),var(--orange-700));
    box-shadow:0 10px 22px rgba(234,88,12,.25);
}
.hero{
    border-radius:0 0 34px 34px;
    min-height:430px;
    padding:80px 0;
    color:#fff;
    background:
        linear-gradient(110deg,rgba(124,45,18,.92),rgba(249,115,22,.72)),
        url('../images/hero-placeholder.svg') center/cover no-repeat;
}
.hero-badge{
    display:inline-flex;align-items:center;gap:.5rem;
    border:1px solid rgba(255,255,255,.3);
    background:rgba(255,255,255,.14);
    padding:.55rem .85rem;border-radius:999px;
}
.event-card{
    border:1px solid var(--line);
    border-radius:22px;
    overflow:hidden;
    background:#fff;
    box-shadow:var(--shadow);
    transition:.22s ease;
}
.event-card:hover{transform:translateY(-5px)}
.event-card img{width:100%;height:190px;object-fit:cover}
.event-card .logo-float{
    width:58px;height:58px;object-fit:cover;border-radius:16px;
    border:4px solid #fff;margin-top:-29px;background:#fff;
}
.category-pill{
    display:inline-block;
    border:1px solid var(--orange-300);
    color:var(--orange-700);
    background:#fff7ed;
    border-radius:999px;
    padding:.28rem .55rem;
    font-size:.75rem;font-weight:700;
}
.admin-shell{min-height:100vh;background:#f8fafc}
.sidebar{
    position:fixed;inset:0 auto 0 0;width:260px;
    padding:20px;background:#1f2937;color:#fff;z-index:1040;
}
.sidebar .nav-link{color:#d1d5db;border-radius:12px;padding:.78rem .9rem}
.sidebar .nav-link:hover,.sidebar .nav-link.active{
    color:#fff;background:linear-gradient(135deg,var(--orange-500),var(--orange-700));
}
.admin-main{margin-left:260px;min-height:100vh}
.admin-topbar{
    position:sticky;top:0;z-index:1030;
    background:rgba(255,255,255,.93);
    border-bottom:1px solid #e5e7eb;
    backdrop-filter:blur(12px);
}
.metric-card{
    border:0;border-radius:20px;background:#fff;
    box-shadow:0 12px 32px rgba(15,23,42,.07);
}
.metric-icon{
    width:48px;height:48px;border-radius:14px;
    display:grid;place-items:center;font-size:1.25rem;
    color:var(--orange-700);background:var(--orange-100);
}
.panel{
    background:#fff;border:1px solid #e9edf2;
    border-radius:22px;box-shadow:0 12px 30px rgba(15,23,42,.05);
}
.table thead th{font-size:.78rem;text-transform:uppercase;letter-spacing:.04em;color:#6b7280}
.preview-image{
    width:100%;height:150px;object-fit:cover;border-radius:14px;border:1px solid #e5e7eb;
}
@media(max-width:991.98px){
    .sidebar{transform:translateX(-100%);transition:.2s}
    .sidebar.show{transform:translateX(0)}
    .admin-main{margin-left:0}
    .hero{min-height:380px;padding:60px 0}
}
/* ================================
   Registration Closed
==================================*/

.registration-closed-page{
    min-height:70vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:60px 20px;
}

.registration-closed-card{
    width:100%;
    max-width:1100px;
    margin:auto;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
    padding:50px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    border:1px solid #eee;
}

.registration-closed-image{
    text-align:center;
}

.registration-closed-image img{
    width:100%;
    max-width:450px;
    height:auto;
}

.registration-closed-content h1{
    font-size:3rem;
    font-weight:800;
    margin-bottom:15px;
    color:#222;
}

.registration-closed-label{
    display:inline-block;
    font-size:.8rem;
    font-weight:700;
    color:#f26b2d;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:12px;
}

.registration-closed-content p{
    font-size:1.05rem;
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.registration-closed-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.registration-closed-actions .btn{
    min-width:180px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    font-weight:700;
}

@media(max-width:991px){

.registration-closed-card{
    grid-template-columns:1fr;
    text-align:center;
    gap:25px;
    padding:35px;
}

.registration-closed-content h1{
    font-size:2.2rem;
}

.registration-closed-actions{
    justify-content:center;
}

.registration-closed-actions .btn{
    width:100%;
}

}
        .site-logo {
            width: auto;
            height: 58px;
            object-fit: contain;
        }
