﻿/* === Print (unchanged) === */
@media print {
    body {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
        background-color: white;
    }

    #printContents {
        transform: translateY(-50%);
        position: relative;
        top: 50%;
    }
}

/* === Palette from logo === */
:root {
    --bg: #000000; /* deep black */
    --text: #e8e8e8; /* light text */
    --muted: #a7a7a7;
    --orange-600: #ff6a00; /* deep orange (ring) */
    --orange-500: #ff8a00; /* primary orange */
    --orange-400: #ffb14a; /* lighter hover */
    --border: rgba(255,138,0,.25);
}

/* === Base === */
html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}

@media (min-width:768px) {
    html {
        font-size: 16px;
    }
}

body {
    background: var(--bg);
    color: var(--text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

/* links */
a {
    color: var(--orange-400);
}

    a:hover, a:focus {
        color: #ffd28a;
        text-decoration: none;
    }

/* content wrappers */
.main-content {
    flex: 1 1 auto;
    margin-bottom: 60px;
    background: var(--bg);
}

.footing, .footer {
    background: var(--bg);
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
    color: var(--muted);
}

/* borders & shadows */
.border-top {
    border-top: 1px solid var(--border);
}

.border-bottom {
    border-bottom: 1px solid var(--border);
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0,0,0,.35);
}

/* Navbar: black with orange links */
.navbar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.navbar-brand {
    color: var(--orange-500) !important;
}

.navbar .nav-link {
    color: var(--orange-400) !important;
    font-weight: 600;
    letter-spacing: .2px;
}

    .navbar .nav-link:hover, .navbar .nav-link:focus {
        color: #ffd28a !important;
    }

    .navbar .nav-link.active, .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        color: #fff !important;
        background: linear-gradient(90deg, var(--orange-600), var(--orange-500));
        border-color: transparent;
    }

/* Buttons in orange gradient */
.btn-primary {
    color: #000;
    background: linear-gradient(90deg, var(--orange-600), var(--orange-500));
    border-color: var(--orange-600);
}

    .btn-primary:hover {
        filter: brightness(1.06);
    }

/* Utilities */
.text-orange {
    color: var(--orange-500) !important;
}

.bg-black {
    background: var(--bg) !important;
}

/* (Legacy classes you had) */
.body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--orange-500) !important;
}