
body {
    background-color: #f5f5f5;
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
	
    
}



header {
    background-color: #004466;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}
header nav a {
    color: white;
    padding: 0 15px;
      font-weight: bold;
	  text-decoration: none;
  
}

header nav ul {
    list-style: none;
    padding: 0;
	margin: 0;
}






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 */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}


.gallery-item {
    flex: 1 1 calc(33.33% - 10px);
    box-sizing: border-box;
}


.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

ul {
	list-style-type: disc;
	padding-left: 20px;
}
.gallery-item img:hover {
    transform: scale(1.05);
}



.dropdown-text {
    display: none;
    background: rgba(0, 68, 102, 0.9);
    color: white;
    padding: 10px;
}


.gallery-item:hover .dropdown-text {
    display: block;
}



@media (max-width: 900px) {
    .gallery-item { flex: 1 1 calc(50% - 100px); }
    .header-img { max-height: 200px; }
    header nav a { font-size: 15px; margin: 5px 10px; }
}



@media (max-width: 600px) {
    .gallery-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; }
}	





footer {
    background-color: #004466;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
.social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}


h1, h2, nav {
    font-family: 'Montserrat', sans-serif;
}

.gallery-item img {
    transition: transform 0.3s ease;
    width: 100%;
    display: block;
}
.gallery-item img:hover {
    transform: scale(1.05); 
    cursor: pointer;
}
details {
    background: #eee;
    padding: 10px;
    margin-top: 5px;
}

.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; 
	margin: 0;
}
   
  
.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;
}
       
.facebook { background-color: #3b5998; }
.twitter { background-color: #1da1f2; }
.instagram { background-color: #e4405f; }
.linkedin { background-color: #0077b5; }


.social-btn:hover {
	opacity: 0.8;
}
