:root {
    --bs-primary: #248b8b;
    --bs-secondary: #acc939;
    --bs-tertiary: #f8faed;
    --bn-accent: var(--bs-secondary);
    --bn-secondary: var(--bs-secondary);
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Bebas Neue", sans-serif;
}

h1 {
    font-size: 3rem;
}
h2 {
    font-size: 2.25rem;
}
h3 {
    font-size: 1.75rem;
}
h4 {
    font-size: 1.5rem;
}
h5 {
    font-size: 1.25rem;
}

.btn {
    background-color: var(--bs-primary);
    border-color: var(--bs-tertiary);
    font-family: "Bebas Neue", sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    transition: all 0.2s ease;
}

.btn:hover {
    background-color: var(--bs-tertiary);
    color: var(--bs-primary);
    text-shadow: none;
    border-color: var(--bs-secondary);
}

.hero-section {
    position: relative;
    width: 100%;
    height: 30vh;
    min-height: 400px;
    overflow: hidden;
    background-image: url("../images/bg-masthead-offset-lg.jpg");
    background-size: cover;
    background-position: 0 50%;
    background-repeat: no-repeat;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5) !important;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-family: "Bebas Neue", sans-serif;
}

.bg-post {
    background-color: #212529;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5) !important;
}

@media screen and (max-width: 768px) {
    .hero-section {
        height: 30vh;
        min-height: 200px;
    }

    .hero-content {
        font-size: 2.5rem;
        padding: 0 1rem;
    }
}

/* Custom utility classes */
.text-accent {
    color: var(--bn-accent) !important;
}

.bg-accent {
    background-color: var(--bn-accent) !important;
}

.lead {
    font-family: "Bebas Neue", sans-serif;
}

/* Navigation */
.navbar-brand {
    font-weight: 400;
    font-size: 2.5rem;
    font-family: "Bebas Neue", sans-serif;
}

.navbar {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    font-style: normal;
}

/* Cards */
.card {
    background-color: var(--bs-body-secondary-bg);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3) !important;
    transition: border-color 0.2s ease;
}

.card:hover {
    border-color: var(--bs-primary) !important;
}

.card-img-top {
    max-height: 200px;
    min-height: 200px;
    object-fit: cover;
    object-position: top;
}

.cat-thumbnail {
    width: 150px;
    height: 150px;
    object-fit: cover;
    background-color: var(--bs-body-tertiary-bg);
}
.part-thumbnail {
    width: 150px;
    height: 150px;
    object-fit: contain;
    background-color: var(--bs-tertiary);
}

/* Page section heading bands */
.bg-1 {
    background-image: url("/assets/images/metal-bg/metalbg-1.webp");
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
    background-size: cover;
}

.bg-2 {
    background-image: url("/assets/images/metal-bg/metalbg-2.webp");
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
    background-size: cover;
}

.bg-3 {
    background-image: url("/assets/images/metal-bg/metalbg-3.webp");
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
    background-size: cover;
}

.bg-4 {
    background-image: url("/assets/images/metal-bg/metalbg-4.webp");
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
    background-size: cover;
}

.heading {
    border-bottom: 2px solid var(--bs-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.form-label {
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    font-size: 1.3rem;
}

/* Footer */
footer a:hover {
    color: var(--bs-secondary) !important;
    text-decoration: underline !important;
    transition: all 0.2s ease;
}

footer .social i {
    font-size: 3rem;
    color: var(--bs-primary);
}

footer .social i:hover {
    color: var(--bs-secondary);
    transition: all 0.2s ease;
}

footer h5 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    h3 {
        font-size: 1.5rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .video-hero {
        width: 100%;
    }
}

/* Focus states */
.btn:focus,
.nav-link:focus,
.navbar-brand:focus {
    box-shadow: 0 0 0 0.2rem rgba(36, 139, 139, 0.4);
}

/* Active nav link */
.navbar-nav .nav-link.active {
    color: var(--bn-accent) !important;
    font-weight: 600;
}

/* Warning background override */
.bg-warning {
    background-color: var(--bn-secondary) !important;
}

/* Contact form messages */
.message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message.show {
    display: block;
}
