/* ==========================================================================
   1. IMPORTS & BASE RESETS
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
}

body {
    margin: 0;
    background-color: #000000;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'PT Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: justify;
}

/* ==========================================================================
   2. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: #ffcc00;
    font-style: italic;
    text-decoration: none;
    background-color: transparent;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: rgba(255, 204, 0, 0.7);
    text-decoration: none;
}

em {
    color: #ffcc00;
}

sup {
    position: relative;
    top: -0.5em;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

/* ==========================================================================
   3. GRID SYSTEM & LAYOUT 
   ========================================================================== */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col, [class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

@media (min-width: 992px) {     /* was 1200px (KH) */
    .col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
	.col-xl-9 { flex: 0 0 75%; max-width: 75%; }
    .col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}

/* ==========================================================================
   4. NAVBAR & HAMBURGER TOGGLE 
   ========================================================================== */
.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    background-color: #000000;
    font-family: 'Raleway', sans-serif;
}

.navbar > .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
	flex-basis:80%;
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    white-space: nowrap;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
	margin-top:0;
    margin-bottom: 0;
    list-style: none;
    justify-content: flex-end;
    text-align: right;
}

.nav-link {
    display: block;
    padding: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 600;
    font-variant: small-caps;
    font-style: italic;
	letter-spacing: 0.1rem;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.4);
}

.nav-item.active .nav-link {
    color: rgba(255, 204, 0, 1);
}

.nav-item.active .nav-link:hover {
    color: rgba(255, 204, 0, 0.7);
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    cursor: pointer;
	border-color: rgba(255,255,255,.1);
}

.navbar-toggler:focus, .navbar-toggler:hover {
    outline: 1px dotted grey;
    text-decoration: none;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background: no-repeat center center;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 204, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
    flex-basis: 20%;
    flex-grow: 1;
    align-items: center;
}

.collapse:not(.show) { 
    display: none; 
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

@media (max-width: 575.98px) {
    .navbar-toggler {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

@media (max-width: 991.98px) {
	.navbar > .container {
		padding-left:0;
		padding-right:0;
	}
    .navbar-collapse {
        flex-basis: 100% !important;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-flow: row nowrap;
        justify-content: flex-start;
    }
    .navbar-expand-lg > .container {
        flex-wrap: nowrap;
    }
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
    }
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}

/* ==========================================================================
   5. CUSTOM SITE COMPONENTS 
   ========================================================================== */
.heading-upper {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.15rem;
	margin-bottom: 0.5rem;
	color: #cc9900;
	text-shadow: -2px 2px rgba(153, 153, 153, 0.4);
}

.heading-lower {
    display: block;
    font-size: 0.75rem;
    font-style: italic;
    letter-spacing: 0.15rem;
    color: #ffcc00;
    line-height: 1.5;
    width: 73%;
}

.heading-dater {
    display: block;
    font-size: 0.75rem;
	font-style:normal;
    letter-spacing: 0.05rem;
    color: #ffcc00;
}

.headline {
    color: rgba(255, 255, 255, 1);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
}

.section-heading {
    color: #cc9900;
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.2rem;
    text-shadow: -1px 1px rgba(153, 153, 153, 0.8);
}

.faded-label {
    background-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 1);
    border-radius: 0.25rem;
    position: relative;
    z-index: 1;
    margin-left: 3rem;
    margin-right: 3rem;
    margin-top: 2rem;
    margin-bottom: -1.5rem;
    padding: 1rem;
}

.faded-paragraph {
    background-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 1);
    border-radius: 0.25rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
    padding: 1rem 1.25rem 0.25rem;
}

.post-picleft, .post-picright {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 0.25rem;
	border: 1px solid rgba(255, 204, 0, 0.05);
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem 0.25rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flow-root;
}

.post-picleft { margin-left: 2rem; }
.post-picright { margin-right: 2rem; }

.post-picleft:hover, .post-picright:hover {
    background-color: rgba(255, 255, 255, 0.20);
	transform: translateY(-5px);
}

.post-picleft img {
    float: left;
    border-radius: 0.25rem;
    margin-right: 1.25rem;
    margin-left: -3.25rem;
    margin-top: -3rem;
}

.post-picright img {
    float: right;
    border-radius: 0.25rem;
    margin-left: 1.25rem;
    margin-right: -3.25rem;
    margin-top: -3rem;
}

.post-picleft a, .post-picright a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-style: normal;
    display: block;
}

.post-picleft a:hover, .post-picright a:hover {
    color: rgba(255, 255, 255, 1);
}

.continulink {
    color: rgba(255, 204, 0, 1);
    font-style: italic;
    letter-spacing: 0.1rem;
}

.footer {
    background-color: #000000;
    color: #ffcc00;
}

/* ==========================================================================
   6. UTILITIES
   ========================================================================== */
img {
    vertical-align: middle;
    border-style: none;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded { border-radius: 0.25rem !important; }

.align-center { align-items: center !important; }
.text-center { text-align: center !important; }

.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1.0rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3.0rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1.0rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3.0rem !important; }
.mb-6 { margin-bottom: 3.5rem !important; }
.ml-auto { margin-left: auto !important; }
.mx-auto { margin-right: auto !important; margin-left: auto !important; }

.p-0 {
    padding: 0 !important;
}

.p-5 {
    padding: 3rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

@media (min-width: 992px) {
    .py-lg-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
}

.small, small {
    font-size: 80%;
    font-weight: 400;
}

.img-left, .img-right {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

@media (min-width: 992px) {     /* was 768px (KH) */
    .img-left {
        float: left;
        padding-right: 1.5rem;
        padding-bottom: 1rem;
    }
    .img-right {
        float: right;
        padding-left: 1.5rem;
        padding-bottom: 1rem;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .text-md-left { text-align: left !important; }
    .text-md-right { text-align: right !important; }
    .mb-md-0 { margin-bottom: 0 !important; }
    .mb-md-3 { margin-bottom: 1rem !important; }
    .ml-md-2 { margin-left: 16.666666% !important; }
    .mr-md-2 { margin-right: 16.666666% !important; }
    .push-right { margin-right: 1rem; }
    .push-left { margin-left: 1rem; }
}

/* ==========================================================================
   7. HERO BANNER (Mobile First)
   ========================================================================== */
.hero-banner {
    position: relative;
    display: block;
    border-radius: 0.25rem;
    overflow: hidden;
    margin-top: 2rem;
    margin-bottom: 3.0rem;
    text-decoration: none !important;
}

.hero-banner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
	transition: transform 0.6s ease;
}

.hero-banner:hover img {
    transform: scale(1.03);
}

.hero-label {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 1.25rem;
    border-radius: 0.25rem;
	width: max-content;
	max-width: 90%;
    transition: background-color 0.3s ease;
}

.hero-banner:hover .hero-label {
	background-color: rgba(0, 0, 0, 0.65);
}

.hero-label .headline {
    display: block;
    color: #f1c101;
    font-size: 1.25rem;
	text-shadow: 1px 1px #000000;
}

.hero-label p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
	letter-spacing: 0.05rem;
}

.bottom-left {
    bottom: 1rem;
    left: 1rem;
}

.bottom-right {
    bottom: 1rem;
    right: 1rem;
}

.pad-md-2 { 
	padding: 0.75rem;
}

@media (min-width: 992px) {     /* was 768px (KH) */
    .hero-banner img {
        height: 400px;
    }
    .sub-hero img {
        height: 250px;
    }
}

/* ==========================================================================
   8. CUSTOM BUTTONS
   ========================================================================== */
.btn-gold {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
	font-style: normal;
    letter-spacing: 0.1rem;
    background-color: #cc9900;
    color: #000000;
    text-shadow: -1px -1px rgba(255, 255, 255, 0.40);
    padding: 1.0rem 1.5rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.1s;
}

.btn-gold:hover {
    background-color: #ddaa00;
    color: #121212;
    text-shadow: -1px -1px rgba(255, 255, 255, 0.50);
	transform: translateY(-2px) scale(1.03);
}

/* ==========================================================================
   9. LIGHTBOX
   ========================================================================== */
.clickable-img {
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clickable-img:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.2);
}

.modal-lightbox {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.9); 
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content-lightbox {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 0.25rem;
    animation: zoomIn 0.3s ease;
}

#caption-lightbox {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ffcc00;
    padding: 15px 0;
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {transform:scale(0.9); opacity:0;}
    to {transform:scale(1); opacity:1;}
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover, .close-lightbox:focus {
    color: #ffcc00;
    text-decoration: none;
    cursor: pointer;
}
