body {
	margin: 0;
	font-family: 'Roboto', Arial, sans-serif;
}

.navbar {
	display: flex;
	align-items: center;
	background: #4b2e83;
	background: linear-gradient(90deg, rgba(75, 46, 131, 1) 0%, rgba(222, 198, 131, 1) 100%);
	padding: 0 16px;
	height: 90px;
	color: white;
	border-bottom: 4px solid #808080;
}

.navbar .logo {
	width: 70px;
	height: 70px;
	margin-right: 40px;
	margin-left: 10px;
}

.navbar .logo img {
	width: 70px;
	height: 70px;
}

.navbar .nav-links {
	display: flex;
	gap: 40px;
	flex-grow: 1;
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 1.2rem;
}

.navbar .nav-links a {
	font-weight: bold;
	color: #DEC683;
	font-style: italic;
	text-decoration: none;
}

.navbar .contact {
	padding: 20px;
	margin-left: auto;
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 1.2rem;
	font-weight: bold;
	color: #4b2e83;
	text-decoration: none;
	font-style: italic;
}

.navbar .nav-links a,
.navbar .contact, .navbar .logo {
	transition: transform 0.2s ease-in-out;
}

.navbar .nav-links a:hover,
.navbar .contact:hover, .navbar .logo:hover {
	transform: scale(1.05);
}

.site-footer {
  	background: #4b2e83;
	background: linear-gradient(90deg, rgba(75, 46, 131, 1) 0%, rgba(222, 198, 131, 1) 100%);
  	color: white;
  	padding: 20px 40px;
  	font-size: 0.9rem;
  	margin-top: 0px;
	border-top: 4px solid #808080;
}

.footer-container {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: space-between;
  	gap: 30px;
	font-family: 'Roboto', Arial, sans-serif;
	margin: 0px;
}

.footer-contact, .footer-social {
	flex: 1 1 200px;
}

.footer-contact a,
.footer-social a,
.footer-join a {
	display: inline-block;
	color: #d4c5f9;
	text-decoration: none;
	transition: transform 0.2s ease-in-out;
}

.footer-contact a:hover,
.footer-social a:hover,
.footer-join a:hover {
	transform: scale(1.05);
}

.footer-join {
	flex: 1 1 100%;
	text-align: center;
	margin-top: 20px;
}

.footer-join a {
	font-size: 1.5rem;
	font-weight: bold;
	color: #ccc;
	text-decoration: none;
	font-style: italic;
}


.banner-img {
  	width: 100%;
  	height: auto;
  	display: block;
	margin: 0;
}

.image-row {
	display: flex;
	width: 100%;
	height: 800px;
	margin: 0;
	padding: 0;
}

.second-img {
	width: 50%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.social-insta {
	width: 75px;
	height: 100%;
	opacity: 0.75;
}

.social-sampe {
	width: 60px;
	height: 100%;
}

.hover-container {
	position: relative;
	width: 50%;
	height: 100%;
	overflow: hidden;
}

.hover-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: filter 0.3s ease, transform 0.3s ease;
	display: block;
}

.hover-container:hover img {
	filter: blur(3px) brightness(0.7);
	transform: scale(1.02);
}

.hover-link {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.8);
	opacity: 0;
	color: white;
	background: rgba(75, 46, 131, 0.9);
	padding: 14px 24px;
	font-size: 1.2rem;
	font-weight: bold;
	border-radius: 5px;
	text-decoration: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
	font-family: 'Roboto', sans-serif;
	color: #DEC683;
}

.hover-container:hover .hover-link {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.banner-container {
	width: 100%;
	height: auto;
	max-height: 800px;
}

.banner-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.people-wrapper {
	width: 100%;
  	background: #4b2e83;
	background: linear-gradient(90deg, rgba(75, 46, 131, 1) 0%, rgba(222, 198, 131, 1) 100%);
}
	
.people-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	padding: 40px 20px;
	margin: 0 auto;
	max-width: 550px;
}

.officer-card {
	max-width: 250px;
	flex: 0 0 calc(50% -20px);
	text-align: center;
}

.officer-card img {
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.officer-card p {
	margin: 6px 0;
	color: #333;
}




