:root {
    --bs-primary: #248b8b;
    --bs-secondary: #acc939;
    --bs-tertiary: #f8faed;
}

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

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

.btn {
    background-color: var(--bs-primary);
    border-color: var(--bs-teriary);
    font-family: "Bebas Neue", sans-serif;
}

.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: 40vh;
    min-height: 400px;
    overflow: hidden;
    background-image: url("../images/bg-masthead-offset-lg.jpg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.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;
}

@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;
}

/* Navigation enhancements */
.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;
}

/* Enhanced card shadows */
.card {
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

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

.cat-thumbnail {
    width: 150px;
    height: 150px;
    object-fit: contain;
    background-color: white;
}

/* Button enhancements */
.btn {
    font-weight: 600;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

/* Hero sections styling */
.hero-section {
    padding: 3rem 0;
}

.hero-section h1 {
    font-weight: 700;
}

.hero-section .lead {
    font-weight: 400;
}

.heading {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #ffffff08;
}

/* Content sections */
.content-section {
    padding: 2rem 0;
}

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

/* Social buttons */
footer .social i {
    font-size: 3rem;
    color: var(--bs-primary);
}
footer .social i:hover {
    color: var(--bs-secondary);
    transition: all 0.1s ease;
}

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

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.1rem;
    }

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

/* Enhanced focus states for accessibility */
.btn:focus,
.nav-link:focus,
.navbar-brand:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 120, 0, 0.25);
}

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

/* Ensure proper contrast for warning background */
.bg-warning {
    background-color: var(--bn-secondary) !important;
}

/* Enhanced container max-width for better readability */
/*@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}*/
