/* Custom styles for the Inter font and base styling */
body {
    font-family: 'PT Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f8;
    /* Lighter blue-gray background */
    color: #333;
    /* Dark gray text */
}

@font-face {
    font-family: 'Times';
    src: url(../fonts/Quivira.otf);
}

h1,
h2,
h3 {
    font-family: 'Times';
}


nav {
    font-weight: bold;
}

p {
    font-family: "Roboto", Sans-serif;
    font-size: 17px;
}

.container {
    max-width: 1000px;
    /* Slightly narrower container for better readability */
    margin: 0 auto;
    padding: 1rem;
}

/* Video header specific styling */
.video-header {
    position: relative;
    height: 95vh;
    /* Adjust height as needed */
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.video-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 68, 55, 0.5);
    /* Dark overlay for text readability */
    z-index: 1;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3A4437;
    /* Dark background for video area */
    background-image: url('https://placehold.co/1920x1080/0f172a/ffffff?text=Video+Placeholder');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    /* Slightly dim the background */
}

/* Dropdown specific styles */
.dropdown-menu {
    display: none;
    /* Hidden by default */
    position: absolute;
    background-color: #7a001d;
    /* Darker red for dropdown */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10;
    /*border-radius: 0.5rem;*/
    padding: 0.5rem 0;
}

.dropdown-menu.show {
    /* Show on click */
    display: block;
}

.dropdown-menu a {
    color: white;
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-menu a:hover {
    background-color: #ad0029;
    /* Primary red on hover */
    /*border-radius: 0.25rem;*/
}

/* Removed .dropdown:hover .dropdown-menu rule */


/* Accordion section styling */
.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    /* Light gray border */
    /*border-radius: 0.75rem;*/
    /* rounded-xl */
    overflow: hidden;
    /* Hide overflow when content is collapsed */
}

.accordion-header {
    color: #ad0029;
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 100;
    font-size: 1rem;
    /* text-xl */
    /*border-radius: 0.75rem 0.75rem 0 0;*/
    /* rounded-xl top corners */
}

.accordion-header.collapsed {
    background-color: #ad0029;
    color: white;
}

.accordion-content {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    /* Smooth transition */
}

.accordion-content.active {
    max-height: 600px;
    /* Adjust based on expected max content height */
    padding: 1rem 1.5rem;
}

.accordion-icon {
    transition: transform 0.3s ease-out;
}

.accordion-icon.rotate {
    transform: rotate(180deg);
}

/* Parallax section styling for the call to action */
.parallax-section {
    background-image: url('../img/home-para.png');
    /* Placeholder image with new color */
    background-size: cover;
    background-attachment: fixed;
    /* This creates the parallax effect */
    background-position: center;
    position: relative;
    padding: 6rem 2rem;
    /* More padding for visual impact */
    margin-top: 2rem;
    /* Add some margin above */
    /*border-radius: 0.75rem;*/
    /* rounded-xl */
    overflow: hidden;
    /* Important for the overlay to not spill */
}

/* Custom testimonial image styling */
.testimonial-img {
    width: 80px;
    /* Fixed width for circular image */
    height: 80px;
    /* Fixed height for circular image */
    border-radius: 50%;
    /* Makes the image circular */
    object-fit: cover;
    /* Ensures image covers the area without distortion */
    border: 3px solid #ad0029;
    /* Border with advocate red */
}

.special-li {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #025ea2;
}

hr {
    border: 1px solid rgb(206, 206, 206);
    max-width: 800px;
    margin: 5px;
}

.special-h3 {
    margin-top: 100px;
    margin-bottom: 20px;
}

.sub-h3 {
    margin-bottom: 20px;
}

.generic li {
    list-style-type: disc;
    margin-left: 50px;
    /* Sets individual list item bullets to circles if applied directly */
}

.generic li li {
    list-style-type: circle;
}

.round-image {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.round-image div {
    width: 33%;
}

.round-image div p {
    text-align: center;
    margin: 30px 0;
}

.round-image div img {
    border-radius: 300px;
    margin: 0 auto;
}