html, body {
	font-size: 16px;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	font-optical-sizing: auto;
	overflow-x: hidden;
	line-height: 1.5;
    letter-spacing: 0.05rem;
	scroll-behavior: smooth;
	box-sizing: border-box;
	color: #4F4F4F;
	background-color: #F5F5F5 ;
}

.btn {
	border-radius: 1.2rem;
}

.btn-primary {
	background-color: #50C878;
	text-transform: uppercase;
	--bs-btn-bg: #50C878;
    --bs-btn-border-color: #50C878;
    --bs-btn-hover-bg: #50C878;
    --bs-btn-hover-border-color: #50C878;
    --bs-btn-active-bg: #50C878;
    --bs-btn-active-border-color: #50C878;
    --bs-btn-disabled-bg: #50C878;
    --bs-btn-disabled-border-color: #50C878;
}

.btn-primary:hover {
    color: var(--bs-btn-hover-color);
    background-color: #562E4A;
    border-color: #562E4A;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
	color: #562E4A;
	font-weight: 500;
}

.navbar-toggler-icon {
    display: none;
}

/* General styling for the custom hamburger */
.custom-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 30px;
    height: 24px;
}

.custom-hamburger span {
    display: block;
    height: 2px;
    background-color: black;
    margin: 3px 0;
    border-radius: 2px;
}

/* Make the top line full width and the bottom line shorter */
.custom-hamburger span:first-child {
    width: 100%;
}

.custom-hamburger span:last-child {
    width: 60%;
}

.navbar-toggler {
	border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}



main a {
	color: #562E4A;
	text-decoration: none;
}

main a:hover {
	font-weight: bold;
}

.space {
	margin-top: 6rem;
	margin-bottom: 6rem;
}

.space-top {
	margin-top: 6rem;
}

.space-bottom {
	margin-bottom: 6rem;
}

.pad {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Didact Gothic", Arial, sans-serif;
	margin-bottom: 0.7rem;
}

#mission {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

#mission ul li {
    list-style-type: none; /* Remove default bullets */
    position: relative;
    padding-left: 1.5rem; /* Adjust space for diamond */
}

#mission ul li::before {
    content: "";
    width: 10px; /* Diamond width */
    height: 10px; /* Diamond height */
    background-color: #562E4A; /* Diamond color */
    position: absolute;
    left: 0;
    top: 50%;
    transform: rotate(45deg) translateY(-50%); /* Rotate the square to form a diamond */
}

.portrait-picture img {
	max-height: 20rem;
}

.landscape-picture img {
/*	max-height: 15rem;*/
}

.card {
	border-color: #562E4A;
	border-radius: 1rem;
	box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
	margin-bottom: 1.5rem;
}

.card-img {
	padding: 1rem 1rem 0 1rem;
}

.card-img img {
	border-radius: 1rem;
}

.card p span {
	color: #50C878;
}

.card .text-bg-primary {
	background-color: #A9A9A9!important;
}

.card-header h3, .card-footer p {
	margin: 0.5rem;
}

footer {
	color: #ffffff;
	background-color: #4F4F4F;
	padding-bottom: 0!important;
}

footer a {
	color: #ffffff;
}

footer ul {
	padding-left: 0;
}

.other-header {
	height: 15rem;
}

.other-header div {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
	height: 100%;
}

.other-header h1 {
	color: #fff;
	background-color: rgba(85, 46, 74, 0.5);
	padding: 0.5rem;
	border-radius: 1rem;
}

.other-header {
	position: relative;
}

.other-header .background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
/*	filter: blur(3px);*/
	z-index: 10;
}

.other-header .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 10;
}

.text-content {
	position: relative;
	z-index: 11;
}

.subtitle {
	font-size: 0.9rem;
	color: #A9A9A9;
}

textarea {
	resize: none;
}

/* Typewriter Text Container */
.typewriter {
    font-family: monospace; /* A typewriter-style font */
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid black; /* Cursor */
    animation: typing 4s steps(20, end), blink-caret 0.75s step-end infinite;
}

/* Typing Animation */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

/* Blinking Cursor Animation */
@keyframes blink-caret {
    0%, 100% { border-color: transparent; }
    50% { border-color: black; }
}

@media (max-width: 575px) {
    footer {
        text-align: center;
    }
    .logo-box {
    	display: flex;
    	justify-content: center;
    	margin-bottom: 2rem!important;
    }
}

@media (max-width: 768px) {
    .navbar-collapse {
    	padding: 2rem 0;
    }
}

/* Small Devices (portrait tablets and large phones, 576px and up) */
@media (min-width: 576px) {
    html, body {
        font-size: 1.1rem;
    }
}

/* Medium Devices (landscape tablets, 768px and up) */
@media (min-width: 768px) {
    html, body {
/*        font-size: 1.125rem;*/
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
    html, body {
/*        font-size: 1.2rem;*/
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    html, body {
/*        font-size: 1.25rem;*/
    }
}

/* Extra Extra Large Devices (very large desktops, 1400px and up) */
@media (min-width: 1400px) {
    html, body {
/*        font-size: 1.3rem;*/
    }
}