﻿:root {
    --header-h: 210px;
    --nav-w: 170px;
    --bg: #f7f7f7;
    --text: #333;
    --brand: #111;
    --nav: #1f1f1f;
    --nav-hover: #3b3b3b;
    --accent: #d4af37;
}

/* Base */
* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--bg);
}

/* Header */
.bl-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: var(--brand);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centers vertically */
    padding: 12px 16px;
    z-index: 1000;
    border-bottom: 2px solid #000;
}

.bl-logo {
    height: 60px;
    width: auto;
    margin-bottom: 10px; /* Adds space between logo and title */
}

.bl-title-svg {
    width: 500px;
    height: 200px;
}

.bl-title {
    font-size: 100px;
    font-weight: 900;
	font-family: Georgia, serif;
    fill: red;
    text-shadow: 3px 3px 0 #000, -3px 3px 0 #000, 3px -3px 0 #000, -3px -3px 0 #000;
    letter-spacing: 2px;
    margin-top: 20px; /* Pushes title down */
    line-height: 1; /* Keeps vertical spacing tight */
}

/* Navigation */
.bl-sidenav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    bottom: 0;
    width: var(--nav-w);
    background: var(--nav);
    overflow-y: auto;
    border-right: 1px solid #2a2a2a;
    z-index: 900;
}

.bl-sidenav ul {
	list-style: none;
	margin: 0;
	padding: 8px 0;
}

.bl-sidenav a {
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 12px 16px;
	border-left: 4px solid transparent;
}

.bl-sidenav a:hover {
	background: var(--nav-hover);
}

.bl-sidenav a.active {
	background: var(--nav-hover);
	border-left-color: var(--accent);
}

/* Main content */
.bl-main {
    margin-top: var(--header-h);
    margin-left: var(--nav-w);
    padding: 20px;
    min-height: calc(100vh - var(--header-h));
    background: var(--bg);
}

h1, h2 {
    margin: 0 0 12px 0;
}

.bl-events {
    padding-left: 20px;
}

/* Toggle button (mobile) */
.bl-toggle {
    display: none;
    position: absolute;
    left: 20px;
    top: 20px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
}

/* Mobile responsive */
@media (max-width: 900px) {
    .bl-toggle {
        display: block;
    }

    .bl-sidenav {
        transform: translateX(-100%);
        transition: transform .25s ease;
        width: 80%;
        max-width: 320px;
    }

    body.nav-open .bl-sidenav {
        transform: translateX(0);
    }

    .bl-main {
        margin-left: 0;
    }
}
