﻿: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: row;
    align-items: center;
    justify-content: center; /* Centers vertically */
    padding: 12px 16px;
    z-index: 1000;
    border-bottom: 2px solid #000;
	gap: 20px;
}

.bl-logo {
    height: 150px;
    width: auto;
    margin-bottom: 0px; /* Adds space between logo and title */
}

.bl-title-svg {
    width: 400px;
    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;
    }
}


/* --- Media Section --- */
.bl-media {
    margin-top: 20px;
}
.bl-media h2 {
    margin: 16px 0 10px 0;
}
.bl-help {
    color: #666;
    margin-bottom: 12px;
}
.media-grid {
    display: inline-grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}
/* First wide image, spans 2 columns starting at column 1 */
.wide-left {
    grid-column: 1 / span 2;
}

/* Second wide image, starts at column 4 so column 3 stays empty */
.wide-right {
    grid-column: 4 / span 2;
}
.media-item {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.media-item img, .media-item video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
/* Responsive 16:9 embed wrapper */
.embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 8px;
    overflow: hidden;
}
.embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* MOBILE FIX — Make all images same size */
@media (max-width: 700px) {

  /* Force 1 column so images are full width */
  .media-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Reset wide images so they don't create gaps */
  .wide-left,
  .wide-right {
    grid-column: auto !important;
  }

  /* Make all images uniform size */
  .media-item img {
    width: 100%;
    height: 250px;     /* You can choose 200–300px */
    object-fit: cover; /* Keeps them looking clean */
    border-radius: 8px;
  }
}

