.text-black {
    color: black !important; /* Replace with your desired color */
}

/* Mobile navbar and logo adjustments */
@media (max-width: 991px) {
    /* Make logo smaller on tablets and mobile */
    .navbar-brand img {
        width: 60px !important;
        height: auto;
    }
    
    /* Reduce navbar padding on mobile */
    .navbar {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    /* Adjust container padding */
    .navbar .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 768px) {
    /* Even smaller logo for mobile phones */
    .navbar-brand img {
        width: 50px !important;
    }
    
    /* Reduce navbar height further */
    .navbar {
        min-height: 60px;
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }
    
    /* Adjust toggler button size */
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Very small screens */
    .navbar-brand img {
        width: 45px !important;
    }
    
    /* Compact navbar for small screens */
    .navbar .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Import Cormorant Garamond font */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

/* Override Bootstrap's font-family variables */
:root {
  --bs-font-sans-serif: 'Cormorant Garamond', serif;
  --bs-font-monospace: 'Cormorant Garamond', serif;
  --bs-body-font-family: 'Cormorant Garamond', serif;
}

/* Apply to all elements to ensure complete coverage */
body {
  font-family: 'Cormorant Garamond', serif !important;
}

/* Apply to headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif !important;
}

/* Apply to other specific Bootstrap components if needed */
.navbar, .btn, .card, .form-control {
  font-family: 'Cormorant Garamond', serif !important;
}

/* Change highlight/accent color to Dark Slate Gray (#2F4F4F) */

/* Links (excluding navbar links) */
a:not(.nav-link) {
    color: #2F4F4F;
}

a:not(.nav-link):hover, 
a:not(.nav-link):focus {
    color: #1a2e2e; /* Slightly darker shade for hover state */
}

/* Navigation menu - NEW STYLING */
.navbar-nav .nav-item .nav-link {
    color: inherit; /* Use default navbar color */
    transition: background-color 0.3s ease, color 0.3s ease;
    padding: 8px 12px;
    margin: 0 2px;
    border-radius: 4px;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link:focus,
.navbar-nav .nav-item .nav-link.active {
    background-color: #2F4F4F !important;
    color: white !important;
}

/* For dropdown items in navbar */
.navbar-nav .nav-item.dropdown .nav-link:hover,
.navbar-nav .nav-item.dropdown .nav-link:focus,
.navbar-nav .nav-item.dropdown .nav-link.active {
    background-color: #2F4F4F !important;
    color: white !important;
}

/* Ensure dropdown toggle arrow remains visible */
.navbar-nav .nav-item.dropdown .nav-link:hover::after,
.navbar-nav .nav-item.dropdown .nav-link:focus::after {
    border-top-color: white;
}

/* Dropdown menus */
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
    background-color: #2F4F4F !important;
    color: white !important;
}

/* Buttons */
.btn-primary {
    background-color: #2F4F4F !important;
    border-color: #2F4F4F !important;
    color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #FFE4C4 !important;
    border-color: #FFE4C4 !important;
    color:#1a2e2e !important;
}

.btn-outline-primary {
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: #2F4F4F !important;
    color: white !important;
}

/* Focus states */
:focus {
    outline-color: #2F4F4F !important;
}

/* Selection highlight */
::selection {
    background-color: #2F4F4F;
    color: white;
}

/* Bootstrap specific components */
.page-link,
.page-item.active .page-link {
    color: #2F4F4F;
    border-color: #2F4F4F;
}

.page-item.active .page-link {
    background-color: #2F4F4F;
    color: white;
}

/* Progress bars, badges, etc. */
.bg-primary {
    background-color: #2F4F4F !important;
}

.text-primary {
    color: #2F4F4F !important;
}

/* Form elements */
.form-control:focus {
    border-color: #2F4F4F;
    box-shadow: 0 0 0 0.25rem rgba(47, 79, 79, 0.25);
}

/* Increase font sizes for better readability with Cormorant Garamond */

/* Navbar text size increase */
.navbar-nav .nav-link {
    font-size: 1.1rem !important; /* Default is usually 1rem */
}

.navbar-brand {
    font-size: 1.35rem !important; /* Default is usually 1.25rem */
}

/* Heading sizes increase */
h1 {
    font-size: 2.8rem !important; /* Default is usually 2.5rem */
}

h2 {
    font-size: 2.2rem !important; /* Default is usually 2rem */
}

h3 {
    font-size: 1.9rem !important; /* Default is usually 1.75rem */
}

h4 {
    font-size: 1.6rem !important; /* Default is usually 1.5rem */
}

h5 {
    font-size: 1.35rem !important; /* Default is usually 1.25rem */
}

h6 {
    font-size: 1.15rem !important; /* Default is usually 1rem */
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .navbar-nav .nav-link {
        font-size: 1.05rem !important;
    }
    
    .navbar-brand {
        font-size: 1.25rem !important;
    }
    
    /* Slightly smaller headings on mobile to prevent overflow */
    h1 {
        font-size: 2.4rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    h3 {
        font-size: 1.7rem !important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.1rem !important;
    }
    
    h2 {
        font-size: 1.8rem !important;
    }
}
/* Button text size increase */
.btn {
    font-size: 1.1rem !important; /* Default is usually 1rem */
}

/* Specific button sizes */
.btn-lg {
    font-size: 1.3rem !important; /* Default is usually 1.25rem */
}

.btn-sm {
    font-size: 0.95rem !important; /* Default is usually 0.875rem */
}

.btn-xs {
    font-size: 0.85rem !important; /* Default is usually 0.75rem */
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .btn {
        font-size: 1.05rem !important;
    }
    
    .btn-lg {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    .btn {
        font-size: 1rem !important;
    }
    
    .btn-lg {
        font-size: 1.15rem !important;
    }
}

/* Body and general content text size increase */
body {
    font-size: 1.1rem !important; /* Default is usually 1rem */
    line-height: 1.6 !important; /* Improved readability with larger text */
}

/* Paragraph text */
p {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
}

/* Div and general content */
div {
    font-size: 1.1rem !important;
}

/* List items */
li {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
}

/* Table content */
td, th {
    font-size: 1.05rem !important;
}

/* Form labels and text */
label {
    font-size: 1.05rem !important;
}

.form-control {
    font-size: 1.05rem !important;
}

/* Card content */
.card-body {
    font-size: 1.1rem !important;
}

.card-text {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
}

/* Alert content */
.alert {
    font-size: 1.05rem !important;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    body {
        font-size: 1.05rem !important;
    }
    
    p, div, li {
        font-size: 1.05rem !important;
    }
    
    .card-body, .card-text {
        font-size: 1.05rem !important;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 1rem !important;
    }
    
    p, div, li {
        font-size: 1rem !important;
    }
    
    .card-body, .card-text {
        font-size: 1rem !important;
    }
}

section
 {
    background-color: #F5F5F5 !important;
}

#cookie-preferences
 {
    background-color: #2e6969 !important;
}


.event-list li:before {
    color: #2F4F4F !important;
}

.section-title:after {
    background: #2F4F4F !important;
}

.section-divider {
    background: linear-gradient(to right, #437b7b, #2F4F4F) !important;
}

.line {
  border-left: 2px solid #2F4F4F !important;  
}

.title:after {
    border-top: 2px solid #2F4F4F !important;
}



