/* General Styles */
:root {
  --beige: #F7F6F2;
  --dgray: #333333;
  --white: #FFFFFF;
  --navy:  #003366;
  --bluetrans: #003366b3;
  
}

html {
    scroll-behavior: smooth;
}
body, html {
	height: 100%;
	margin: 0;
	font-family: 'Open Sans', sans-serif;
	background-color: var(--beige); /* Light beige background */
	color: var(--dgray); /* Dark gray text */
}
a {
	text-decoration: none;
	color: var(--white)
}
a:hover {
	text-decoration: underline;
}


/* Parallax Effect */
.parallax {
	height: 100vh;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

/* Background Images with Focus on Specific Sides */
.bg1 {
	background-image: url('../img/bg1.jpg');
	background-position: right center;
	position: relative;
}
.bg2 {
	background-image: url('../img/bg2.jpg');
	background-position: right center;
	position: relative;
}
.bg3 {
	background-image: url('../img/bg3.jpg');
	background-position: left center;
	position: relative;
}
.bg4 {
	background-image: url('../img/bg4.jpg');
	background-position: center;
	position: relative;
}
.bg5 {
	background-image: url('../img/bg5.jpg');
	background-position: right;
	position: relative;
}

/* div with 100% width on small screen, 50% else */
.smallscreen100 {
	position: absolute;
	width: 50%;
	left: 50%;
	transform: translate(-50%, 0%);
}
/* div with 100% width on small screen, 50% else */
.smallscreen100relative {
	position: relative;
	width: 50%;
	left: 50%;
	transform: translate(-50%, 0%);
}

/* Overlay Text on bg1 */
.overlay-text {
	top: 50%;
	transform: translate(-50%, -50%);
	color: var(--white);
	text-align: center;
	background-color: var(--bluetrans); /*rgba(0, 51, 102, 0.7);  Soft dark blue background for text box */
	padding: 40px;
	border-radius: 10px;
	max-width: 80%;
}



.overlay-text h1 {
	font-family: 'Lora', serif;
	font-size: 36px;
	margin-bottom: 20px;
}

.overlay-text p {
	font-size: 18px;
	line-height: 1.6;
}

/* Content Section */
.content {
	padding: 60px 20px;
	text-align: center;
}

.content h1 {
	font-family: 'Lora', serif;
	font-size: 32px;
	margin-bottom: 20px;
	color: var(--navy); /* Muted navy */
}

.content p {
	font-size: 18px;
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto;
	margin-bottom: 24px;
}

/* Menu Styles */
.menu {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: var(--white); /* White background for menu */
	display: flex;
	justify-content: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	z-index: 9999;
	padding: 10px 0;
}

.menu a {
	font-family: 'Lora', serif;
	color: var(--navy); /* Muted navy */
	text-align: center;
	padding: 14px 20px;
	text-decoration: none;
	font-size: 16px;
	transition: background-color 0.3s, color 0.3s;
	margin: 0 10px;
}

.menu a:hover {
	background-color: var(--navy); /* Muted navy */
	color: var(--white);
	border-radius: 5px;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
	.menu {
		display: none;
	}

	.mobile-menu-icon {
		position:fixed;
		top:0;
		z-index:2;
		display: block;
		text-align: center;
		padding: 14px;
		color: var(--navy);
		background-color: #ffffff;
		text-decoration: none;
		font-size: 24px;
		border-bottom: 2px solid var(--navy);
		width: 100%;
		height: 32px;
	}
	
	.mobile-menu-content {
		position: fixed;
		top: 62px;
		z-index: 3;
		width: 100%;
	}

	.mobile-menu-content a {
		display: block;
		color: var(--navy);
		text-align: center;
		padding: 14px;
		text-decoration: none;
		border-bottom: 1px solid rgba(0, 51, 102, 0.2);
		background-color: var(--white);
	}

	.mobile-menu-content a:hover {
		background-color: var(--navy);
		color: var(--white);
	}
	.smallscreen100 {
	position: absolute;
	width: 100%;
	}
	.smallscreen100relative {
	position: relative;
	width: 100%;
	}
}

.slider-container {
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    width: 100%; 
    transition: transform 1s ease-in-out; /* Adjust the speed of the sliding */
}

.slide {
    flex: 1 0 100%; /* Each slide takes up 100% of the container */
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    text-align: center; /* Center the text inside each slide */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px; /* Adjust height as needed */
}

.slide:nth-child(odd) {
    background-color: #f0f0f0; /* Different background for odd slides */
}

.slide:nth-child(even) {
    background-color: #e0e0e0; /* Different background for even slides */
}
svg {
	display: block;
	fill: var(--white);
}
.list-item {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
	display: flex;
    justify-content: center;
    align-items: center;
}
