body {
    background-color: #f5f5f5;
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
}


header {
    background-color: #004466;
    color: #fff;
    padding-top: 10px;
    text-align: center;
}

header nav a {
    color: white;
    padding: 0 15px;
    text-decoration: none;
    font-weight: bold;
}


header nav a:hover {
    text-decoration: underline;
}


.header-img {
    height: 400px;
	width: 100%;
	object-fit: cover;
}


main {
    padding: 20px;
    margin: auto;
    max-width: 1200px;
}


h1 {
    color: #004466;
}


/* Flexbox Gallery */
.flex-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}


.flex-item {
    flex: 1 1 calc(33.33% - 10px);
    box-sizing: border-box;

}


.flex-item img {
    width: 100%;
    display: block;
	border-radius: 8px;
}


ul {
	list-style-type: disc;
	padding-left: 20px;
}

/* Tablets */
@media (max-width: 900px) {
	.flex-item { flex: 1 1 calc(50% - 10px); }
	.header-img { max-height: 200px; }
	header nav a { font-size: 15px; margin: 5px 10px; }
}

/* Mobile phones */

@media (max-width: 600px) {
    .flex-item { flex: 1 1 100%; }
	header nav { display: flex; flex-direction: column; align-items: center; }
	header nav a { margin: 5px 0; }
	.header-img { max-height: 150px; }
	main { padding: 15px; }
}

.dropdown-text {
    display: none;
    background: rgba(0, 68, 102, 0.9);
    color: white;
    padding: 10px;
}


.flex-item:hover .dropdown-text {
    display: block;
}



/* --- FOOTER STYLING --- */
.site-footer {
	background-color: #2c3e50; /* Dark background color */
	color: #ecf0f1; /* Light text color */
	padding: 40px 20px 10px; /* Top, side, and bottom padding */
	font-family: Arial, sans-serif;
}
.footer-container {
	display: flex;
	justify-content: space-around; /* Distributes space between columns */
	flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
	max-width: 1200px; /* Max width for central alignment */
	margin: 0 auto;
	padding-bottom: 20px;
	border-bottom: 1px solid #34495e; /* Separator line */
}
.footer-column {
	flex-basis: 30%; /* Gives each column roughly a third of the space */
	margin-bottom: 20px;
	min-width: 250px; /* Minimum size before wrapping */
}
.footer-column h4 {
	color: #f1c40f; /* Accent color for headings */
	font-size: 1.2em;
	margin-bottom: 15px;
	border-bottom: 2px solid #34495e;
	padding-bottom: 5px;
}
.footer-column p {
	margin: 5px 0;
	
	line-height: 1.5;
}
.footer-column i {
	margin-right: 8px; /* Space between icon and text */
	color: #bdc3c7; /* Subtle icon color */
}
/* Email Link Style */
.footer-column a {
	color: #3498db; /* Link color */
	text-decoration: none;
	transition: color 0.3s ease;
}
.footer-column a:hover {
	color: #e74c3c; /* Hover effect */
}
/* Bottom Copyright Bar */
.footer-bottom {
	text-align: center;
	padding-top: 10px;

}
.footer-bottom p {
	font-size: 0.9em;
	color: #95a5a6; /* Lighter color for copyright text */
	margin: 0;
}
   
  /* social media buttons */
.social-buttons {
	display: flex;
	gap: 10px;
	justify-content: center;
	padding: 20px;
	background:#004466;
}

.social-btn {
	display: inline-flex;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: white;
	text-decoration: none;
	font-size: 18px;
	align-items: center;
	
	justify-content: center;
	transition: background-color 0.3s ease, opacity 0.3s ease;
}
       
/* Brand Colors */
.facebook { background-color: #3b5998; }
.twitter { background-color: #1da1f2; }
.instagram { background-color: #e4405f; }
.linkedin { background-color: #0077b5; }
       
/* Hover Effects */
.social-btn:hover {
	opacity: 0.8;
}


