* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Content Styling */
.content {
    margin-left: 220px;
	margin-bottom: 700px;
    padding: 20px;
}

/* Page Background Colors */
.home { background-color: #f5f5f5; }
.about-us { background-color: #f5f5f5; }
.services { background-color: #f5f5f5; }
.contact-us { background-color: #f5f5f5; }

.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    /*padding: 1rem;*/
	padding: 5px;
}

.banner-text h1 {
    font-size: 2em;
    margin: 0 0 0 20px;
}

.banner-text p {
    margin: 0 5px 0 20px;
    font-size: 1.2em;
}


.contact-text h1 {
    font-size: 1.2em;
}


header .logo {
    font-size: 1.5em;
}

header nav a:hover {
    background-color: #555;
}

.logo {
   	width: 150px;
	display: block; 
}

.desktop-nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav ul li {
    margin: 0 1rem;
}

.desktop-nav ul li a {
    color: white;
    text-decoration: none;
}

.desktop-nav a:hover {
    background-color: #555;
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
	flex-direction: column;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 4px 0;
}

.sidebar {
    /*width: 200px;
    background-color: #444;
    color: white;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 60px;
    padding-top: 20px;*/
	float: left;
    top: 100;
    left: 0;
    width: 180px;
	height: 100%;
	position: absolute;
    padding: 0 50px 50px 50px;
	background-image: url('bluestrip.jpg');
	background-size: cover;
	display: flex;
}

.sidebar-image {
    width: 100%;
    height: auto;
    display: block;
}

main {
    margin-left: 220px;
    padding: 1rem;
}

footer {
    text-align: center;
  padding: 3px;
 }

/*Mobile Navigation*/
.mobile-nav {
    display: none; /*Initially hidden*/
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #333;
}

.mobile-nav ul {
    list-style: none;
    padding: 1rem;
}

.mobile-nav li {
    padding: 10px 0;
}

.mobile-nav a {
    text-decoration: none;
    color: white;
    display: block;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.mobile-nav a:hover {
    background-color: #555;
}


@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex; /*show hamburger icon*/
		font-size: 2rem;
  /*      cursor: pointer;*/
    }

    .sidebar {
        display: none;
    }

	.logo {
   	width: 75px;
	max-height: 75px;
	}

    main {
        margin-left: 0;
        padding: 1rem;
    }
	
	.content {
    margin-left: 0px;
	margin-bottom: 700px;
    padding: 20px;
}
}

/* Mobile menu when open */
.mobile-nav.open {
    display: block; /* Show when open */
}

/* Image grid container */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    width: 80%;
    max-width: 1200px;
    padding: 20px;
}

/* Styling individual image containers */
.image-container {
    overflow: hidden;
    border: 2px solid #ccc;
    border-radius: 8px;
	align-content: center;
}

/* Image styling */
.image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

/* Hover effect for images */
.image-container:hover img {
    transform: scale(1.1);
}

