/* Henson Benson Foundation Color Scheme */
:root {
    --hb-gold: #D4AF37;
    --hb-dark-gold: #B8941E;
    --hb-black: #1a1a1a;
    --hb-cream: #F5F5DC;
    --hb-gray: #4a4a4a;
    --hb-green: #0d3d2d;
    --hb-dark-green: #092b1f;
}

html {
    font-size: 16px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 18px;
    }
}

@media (min-width: 1200px) {
    html {
        font-size: 20px;
    }
}

body {
    margin-bottom: 60px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--hb-gold);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--hb-black) 0%, var(--hb-gray) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--hb-gold);
}

.hero-section .tagline {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--hb-cream);
    margin-bottom: 30px;
}

.hero-section .lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Logo Styling */
.hb-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hb-gold);
    color: var(--hb-black);
    font-size: 3rem;
    font-weight: bold;
    border: 4px solid white;
}

/* Buttons */
.btn-hb-primary {
    background-color: var(--hb-gold);
    color: var(--hb-black);
    border: none;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-hb-primary:hover {
    background-color: var(--hb-dark-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-hb-outline {
    border: 2px solid var(--hb-gold);
    color: var(--hb-gold);
    background: transparent;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-hb-outline:hover {
    background-color: var(--hb-gold);
    color: var(--hb-black);
}

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--hb-black);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--hb-gold);
}

.section-title.text-start::after {
    left: 0;
    transform: translateX(0);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--hb-gray);
    margin-bottom: 40px;
}

/* Cards */
.hb-card {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.hb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.hb-card .card-header {
    background: var(--hb-gold);
    color: var(--hb-black);
    font-weight: bold;
    font-size: 1.3rem;
    padding: 20px;
}

.hb-card .card-body {
    padding: 30px;
}

/* Mission Statement Box */
.mission-box {
    background: linear-gradient(135deg, var(--hb-black) 0%, var(--hb-gray) 100%);
    color: white;
    padding: 50px;
    border-left: 5px solid var(--hb-gold);
    margin: 40px 0;
}

.mission-box h3 {
    color: var(--hb-gold);
    margin-bottom: 20px;
}

/* Stats Section */
.stats-section {
    background: var(--hb-cream);
    padding: 50px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--hb-gold);
}

.stat-label {
    font-size: 1.2rem;
    color: var(--hb-gray);
}

/* Image Styling */
.img-feature {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
}

/* Navigation Updates */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bg-hb-green {
    background-color: var(--hb-green) !important;
}

.navbar-brand {
    font-weight: bold;
    color: var(--hb-gold) !important;
    font-size: 1.5rem;
}

.hb-logo-nav {
    border: 2px solid var(--hb-gold);
    padding: 5px 10px;
    font-weight: bold;
    color: var(--hb-gold);
    margin-right: 8px;
}

.navbar-dark .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-dark .nav-link:hover {
    color: var(--hb-gold) !important;
}

/* Footer */
.footer {
    background: var(--hb-black);
    color: white;
    padding: 15px 0;
    margin-top: 50px;
}

.footer a {
    color: var(--hb-gold);
    text-decoration: none;
}

.footer a:hover {
    color: var(--hb-dark-gold);
}

/* Testimonials */
.testimonial {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-left: 4px solid var(--hb-gold);
}

.testimonial-author {
    font-weight: bold;
    color: var(--hb-gold);
    margin-top: 15px;
}

/* Contact Info */
.contact-info {
    background: var(--hb-cream);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-info h4 {
    color: var(--hb-gold);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    color: var(--hb-gold);
    margin-right: 10px;
}

/* Utility Classes */
.text-hb-gold {
    color: var(--hb-gold);
}

.bg-hb-gold {
    background-color: var(--hb-gold);
}

.bg-hb-cream {
    background-color: var(--hb-cream);
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}