@charset "utf-8";
/* CSS Document */

/* General Styles */
body {
    font-family: 'Montserrat', sans-serif; /* Use Montserrat for general body text */
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif; /* Use Lora for headings */
}

.navbar-brand, .nav-link, .btn {
    font-family: 'Roboto', sans-serif; /* Use Roboto for navbar and buttons */
    font-weight: 500; /* Set slightly heavier weight */
}

.navbar {
    z-index: 10;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

.nav-link.active, .dropdown-item.active {
    font-weight: bold;
    color: #cc6666 !important; /* Adjust as necessary */
}

.navbar.bg-dark {
    background-color: #343a40 !important;
}

/* Dropdown hover styles */
.navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-hover:hover > .dropdown-menu-hover {
    display: block;
}

.dropdown-hover > .dropdown-toggle:active {
    /*Without this, clicking will make it sticky*/
    pointer-events: none;
}

.dropdown-submenu:hover > .dropdown-menu-hover {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu-hover {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

/* Active dropdown link styling */
.dropdown-menu .dropdown-item.active {
    background-color: #0d4a85 !important;
    color: white !important;
}

.dropdown-menu .dropdown-item.active:hover {
    background-color: #0d4a85 !important;
    color: white !important;
}

/* Mini Hero Section */
.mini-hero {
    position: relative;
    width: 100%;
    height: 250px;
    background: url('../images/hero.png') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.mini-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.mini-hero h1, .mini-hero p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.mini-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
}

.mini-hero p {
    font-size: 1.25rem;
    margin: 0.5rem 0 0 0;
}

/* Content Section */
.content-section {
    margin-bottom: 2rem;
}

.content-section .icon-text {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.content-section .icon-text i {
    font-size: 2rem;
    color: #0d4a85;
    margin-right: 0.5rem;
}

.content-section h2 {
    font-size: 2rem;
    color: #333;
    text-transform: uppercase;
    border-bottom: 3px solid #0d4a85;
    padding-bottom: 0.5rem;
}

.content-section p, .content-section ul {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

.content-section ul {
    padding-left: 1.5rem;
}

.content-section ul li {
    margin-bottom: 0.5rem;
}

/* Add padding to the content to account for the sticky navbar */
.content-container {
    padding-top: 70px;
}

.header-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Additional styles for non-hero pages */
.header-container.no-hero {
    background-color: #0d4a85;
    min-height: auto;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-overlay h1, .hero-overlay p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-overlay h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-overlay p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.join-now-btn, .donate-now-btn {
    background-color: #cc6666;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.join-now-btn:hover, .donate-now-btn:hover {
    background-color: #a94d4d;
    color: white;
}

.scroll-down-container {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 3;
}

.scroll-down-text {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
}

.scroll-down-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    transition: color 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-down-btn:hover {
    color: #ccc;
}

.scroll-down-btn i {
    font-size: 3rem;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Social Media Icons */
.social-media-links {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0.5rem;
}

.btn-social-icon {
    font-size: 1.2rem;
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.btn-social-icon:hover {
    color: white;
}

/* Carousel */
.carousel-inner img {
    height: 400px;
    object-fit: cover;
}

.carousel-caption-under {
    padding: 1rem;
    background-color: #E9E9E9; /* Light background for readability */
    border-top: 1px solid #ddd; /* Optional: Add a border to separate from the image */
}

.carousel-caption-under h5 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000; /* Ensure text is black */
}

.carousel-caption-under p {
    font-size: 1rem;
    color: #000; /* Ensure text is black */
}

.carousel-caption-under .btn {
    background-color: #cc6666;
    border: none;
}

.carousel-caption-under .btn:hover {
    background-color: #a94d4d;
}

.list-group-item {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem;
    border: none;
}

.list-group-item img {
    width: 64px;
    height: 64px;
    margin-right: 0.75rem;
    object-fit: cover;
    border: none; /* Remove border from thumbnail images */
}

.thumbnail-text {
    display: flex;
    flex-direction: column;
}

.thumbnail-text h5 {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
    color: #000; /* Ensure text is black */
}

.thumbnail-text p {
    font-size: 0.875rem;
    margin: 0.5rem 0 0 0; /* Add margin for spacing */
    color: #666; /* Slightly lighter color for descriptions */
}

.list-group-item.active {
    background-color: #cc6666; /* Highlight color for active thumbnail */
    color: #fff; /* White text for better readability */
}

.list-group-item.active img {
    border-color: transparent; /* Ensure no border is visible for active thumbnail */
}

.list-group-item.active h5,
.list-group-item.active p {
    color: #fff; /* Ensure text remains white when active */
}

/* Style for the featured area header */
.featured-header {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center; /* Center align the header */
    color: #333;
}

/* Section Padding */
.section-padding {
    padding: .25rem 0;
}

/* Divider with Decorative Line */
.section-divider {
    border-top: 2px solid #ddd;
    width: 50%;
    margin: 2rem auto;
}

/* Chapter Happenings Background */
.chapter-happenings {
    background-color: #f7f7f7;
}

/* Icon grid styles */
.icon-grid-item {
    background-color: #f8f9fa; /* Light background for contrast */
    border-radius: 0.5rem;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.icon-grid-item:hover {
    transform: translateY(-10px); /* Slight lift on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
    background-color: #f0f0f0; /* Slightly darker background on hover */
}

.icon-grid-icon {
    font-size: 3rem;
    color: #0d4a85; /* Use a color that contrasts with the background */
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.icon-grid-link {
    color: #0d4a85;
    text-decoration: none;
}

.icon-grid-link:hover {
    text-decoration: underline;
}

/* Section Padding */
.section-padding {
    padding: 3rem 0;
}

/* Featured Header */
.featured-header {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #0d4a85;
}

/* Get Involved Section */
.get-involved {
    background-color: #f7f7f7;
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top: 5px solid #0d4a85; /* Decorative top border */
}

/* Event Card Styles */
.event-card {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.25rem;
}

.event-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 0.25rem;
}

.event-details {
    flex-grow: 1;
}

.event-details h5 {
    margin-bottom: 0;
    font-size: 1rem;
}

.event-location {
    color: #666;
    font-size: 0.875rem;
	margin-bottom: 0;
}

.event-description {
    margin-bottom: 0;
    font-size: 0.875rem;
}

.read-more {
    color: #0d4a85;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* Section Title Styles */
.section-title {
    font-size: 2rem;
    color: #0d4a85;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid #0d4a85;
    padding-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: #0d4a85;
    color: white;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer h5 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer p, .footer ul, .footer li {
    font-size: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .social-media-links {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
}

.footer .btn-social-icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer .btn-social-icon:hover {
    color: white;
}

.footer-copy {
    margin-top: 1rem;
    font-size: 0.875rem;
}

.footer .mt-3 {
    margin-top: 1rem !important;
}

.breadcrumb {
    background-color: #f8f9fa;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    padding: 0 0.5rem;
    color: #6c757d;
}

.breadcrumb-item a {
    color: #0d4a85;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}
/* CSS specific to National Leadership Section */
#national-leadership-section .profile img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  z-index: -1;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 200ms ease, transform 250ms linear;
}

#national-leadership-section .profile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 1/1;
  position: relative;
  padding: 1.5rem;
  color: #ffffff;
  backface-visibility: hidden;
  text-decoration: none;
  overflow: hidden;
}

#national-leadership-section .profile::before,
#national-leadership-section .profile::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#national-leadership-section .profile::before {
  background: linear-gradient(
    to top,
    hsl(0 0% 0% / 0.79) 0%,
    hsl(0 0% 0% / 0.787) 7.8%,
    hsl(0 0% 0% / 0.779) 14.4%,
    hsl(0 0% 0% / 0.765) 20.2%,
    hsl(0 0% 0% / 0.744) 25.3%,
    hsl(0 0% 0% / 0.717) 29.9%,
    hsl(0 0% 0% / 0.683) 34.3%,
    hsl(0 0% 0% / 0.641) 38.7%,
    hsl(0 0% 0% / 0.592) 43.3%,
    hsl(0 0% 0% / 0.534) 48.4%,
    hsl(0 0% 0% / 0.468) 54.1%,
    hsl(0 0% 0% / 0.393) 60.6%,
    hsl(0 0% 0% / 0.31) 68.3%,
    hsl(0 0% 0% / 0.216) 77.3%,
    hsl(0 0% 0% / 0.113) 87.7%,
    hsl(0 0% 0% / 0) 100%
  );
  transition: 300ms opacity linear;
}

#national-leadership-section .profile::after {
  background: linear-gradient(
    45deg,
    hsl(5 97% 63% / 0.7) 0,
    hsl(5 97% 63% / 0) 100%
  );
  opacity: 0;
  transition: 300ms opacity linear;
}

#national-leadership-section .profile > * {
  z-index: 1;
}

#national-leadership-section .profile h2,
#national-leadership-section .profile h6,
#national-leadership-section .profile p {
  transform: translateY(100%);
  transition: transform 300ms ease, opacity 300ms linear;
}

#national-leadership-section .profile h2 {
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.03ch;
}

#national-leadership-section .profile h6 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin-top: 0.5rem;
  opacity: 0;
}

#national-leadership-section .profile p {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0;
}

#national-leadership-section .profile:focus {
  outline: 0.5rem solid white;
  outline-offset: -0.5rem;
}

#national-leadership-section .profile:hover :is(h2, h6, p),
#national-leadership-section .profile:focus :is(h2, h6, p) {
  transform: none;
  opacity: 1;
}

#national-leadership-section .profile:hover::after,
#national-leadership-section .profile:focus::after,
#national-leadership-section .profile:hover::before,
#national-leadership-section .profile:focus::before {
  opacity: 0.7;
}

#national-leadership-section .profile:hover img,
#national-leadership-section .profile:focus img {
  filter: grayscale(0);
  transform: scale(1.05) rotate(1deg);
}

/* Auto-grid styling for the team section */
#national-leadership-section .auto-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(var(--auto-grid-min-size, 14rem), 1fr)
  );
  grid-gap: var(--auto-grid-gap, 2rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Smaller cards for Committee Chairs */
#committee-chairs-section .profile {
  aspect-ratio: 3/4;
  padding: 1rem;
}

#committee-chairs-section .profile h2 {
  font-size: 1.4rem;
}

#committee-chairs-section .profile h6 {
  font-size: 0.9rem;
}

#committee-chairs-section .profile p {
  font-size: 1rem;
}

#committee-chairs-section .auto-grid {
  --auto-grid-min-size: 10rem;
}

#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    width: 40px;
    height: 40px;
    background: #0d4a85;
    color: white;
    text-align: center;
    line-height: 40px;
    font-size: 24px;
    border-radius: 50%;
    transition: opacity 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

#back-to-top:hover {
    background: #0b5ed7;
}

/* CSS to update in the custom.css file for social media links */
.custom-social-media-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.custom-social-media-links a {
  color: #333;
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-social-media-links a:hover {
  color: #007bff;
}

.chapter-feature {
	display: flex;
	flex-direction: column;	
	justify-content: center;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: .75rem;
}

.icon-square {
  width: 3rem;
  height: 3rem;
  border-radius: .75rem;
}

.text-shadow-1 { text-shadow: 0 .125rem .25rem rgba(0, 0, 0, .25); }
.text-shadow-2 { text-shadow: 0 .25rem .5rem rgba(0, 0, 0, .25); }
.text-shadow-3 { text-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .25); }

.card-cover {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.feature-icon-small {
  width: 3rem;
  height: 3rem;
}

#custom-card-section .card {
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#custom-card-section .card-header {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

#custom-card-section .custom-card-title {
    background-color: #f8f9fa; /* Light gray for contrast */
    padding: 0.25rem 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700; /* Bold */
    border-radius: 0.25rem;
}

/* Make the list items appear as buttons */
.list-group-item.clickable {
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

/* Change background and text color on hover */
.list-group-item.clickable:hover {
    background-color: #cc6666;
    color: white;
}

/* Ensure the hover effect maintains the rounded corners */
.list-group-item.clickable:hover {
    border-radius: 0.25rem;
}
.list-group-item.clickable:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.5);
}

/* Subtle card styles */
.awards-card {
    background: #f8f9fa; /* Light grey background */
    color: #343a40; /* Dark text */
    border: 1px solid #dee2e6; /* Light border */
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.awards-card:hover {
    transform: translateY(-3px); /* Slight lift on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Slightly deeper shadow */
}

.awards-card-header {
    background-color: #0d4a85; /* Dark grey header */
    color: white; /* White text */
    font-weight: 200; /* Slightly bolder */
	font-size: 1rem;
    padding: 10px 15px;
    border-bottom: 1px solid #dee2e6;
}

.awards-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: left;
}

.awards-card-text {
    font-size: 0.95rem;
    text-align: left;
    margin-bottom: 1rem;
    color: #6c757d; /* Muted text color */
}

/* Button styles */
.btn-outline-primary {
    color: #cc6666;
    border-color: #cc6666;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-outline-primary:hover {
    background-color: #cc6666;
	border-color: #cc6666;
    color: white;
}

blockquote {
    padding: 20px;
    background-color: #f8d7da; /* Light red background similar to Bootstrap's alert-danger */
    border-left: 5px solid #d9534f; /* Darker red border */
    border-radius: 0.25rem;
    margin: 20px 0;
    position: relative;
    color: #721c24; /* Dark red text color */
}

blockquote::before {
    font-weight: 900;
    position: absolute;
    top: -10px;
    left: -30px;
    color: #d9534f;
    opacity: 0.2;
}

blockquote h5 {
    margin-top: 0;
    color: #d9534f; /* Match the border color */
    font-weight: bold;
}

blockquote p {
    margin-bottom: 0;
}
#sponsor-row {
    display: flex;
    flex-wrap: wrap;
}

.sponsor-card-col {
    padding: 1rem; /* Add padding between columns */
}

.sponsor-card-row {
    padding: 1rem; /* Add padding between columns */
}

.sponsor-card {
    display: flex;
    flex-direction: column;
}

.sponsor-card .card-body {
    flex-grow: 1; /* Allow the body to take up remaining space */
}
