@font-face {
  font-family: 'Baskerville Semibold';
  src: url('/static/fonts/Baskerville-Semibold.ttf') format('ttf');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Bold Italic';
  src: url('/static/fonts/Gotham-BoldItalic.ttf') format('ttf');
  font-weight: bold;
  font-style: italic;
}

/* Apply the font globally */
body, html {
  font-family: 'Baskerville Semibold', 'Gotham Bold Italic', serif;
  /* font-size: 1rem !important; */
}

:root {
    /* Light Theme Colors */
    --primary-navy: #1A3A5F;
    --muted-red: #7C2629;
    --oak-brown: #8B5A2B;
    --gunmetal-gray: #484848;
    --bg-off-white: #F5F5F0;
    --text-dark-charcoal: #222222;
    --border-light-gunmetal: #ADADAD;
}

body {
    background-color: var(--bg-off-white);
    color: var(--text-dark-charcoal);
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}

.navbar-custom {
    background-color: var(--primary-navy) !important;
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: #fff !important;
}

.navbar-custom .nav-link:hover {
    color: var(--muted-red) !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--gunmetal-gray) 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="90" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.section-header {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--border-light-gunmetal);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--muted-red);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--muted-red), var(--oak-brown));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.btn-primary-custom {
    background-color: var(--muted-red);
    border-color: var(--muted-red);
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #661e21;
    border-color: #661e21;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 38, 41, 0.3);
}

.btn-outline-custom {
    border-color: var(--oak-brown);
    color: var(--oak-brown);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--oak-brown);
    border-color: var(--oak-brown);
    color: #fff;
}

.stats-section {
    background-color: #fff;
    border-top: 3px solid var(--muted-red);
    border-bottom: 3px solid var(--muted-red);
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    display: block;
}

.stat-label {
    color: var(--gunmetal-gray);
    font-weight: 500;
    margin-top: 0.5rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--oak-brown) 0%, var(--muted-red) 100%);
    color: #fff;
    padding: 60px 0;
}

.footer-custom {
    background-color: var(--gunmetal-gray);
    color: #fff;
    padding: 40px 0 20px;
}

.quick-access-card {
    background: #fff;
    border-left: 4px solid var(--oak-brown);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.quick-access-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left-color: var(--muted-red);
}

.quick-access-icon {
    color: var(--primary-navy);
    font-size: 1.25rem;
    margin-right: 1rem;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
}