/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open Sans:wght@300;400;500;700&display=swap');

/* Base Styles */
body {
    font-family: 'Open Sans', sans-serif;
}

/* Custom Bootstrap Variables */
:root {
    --bs-primary: #140667; /* Custom primary color */    
}

/* Customize Bootstrap Components */
.navbar {
    background-color: var(--bs-primary);
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:hover {
    background-color: #16243a; /* Darker shade for hover effect */
    border-color: #16243a;
}

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

.card-header {
    background-color: #f8f9fa; /* Light background for card headers */
}

.card-footer {
    background-color: #f8f9fa; /* Light background for card footers */
}

.text-primary {
    color: var(--bs-primary) !important;
}

/* Additional Customizations */
h1, h2, h3, h4, h5, h6 {
    color: var(--bs-primary);
}

a {
    color: var(--bs-primary);
}

a:hover {
    color: #16243a; /* Darker shade for links on hover */
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgb(231 223 228) !important;
}

.col-md-3 {
    font-size: 0.8em !important;
}

iframe.embed-responsive-item {
    width: 100% !important;
    height: 400px !important;
}

li {
    line-height: 1.8em;
    font-size: .9em;
}