#top-left-image {
  position: absolute;
  top: 35px; /* adjust this value to the height of your navigation bar */
  left: -15px;
  z-index: 1; /* lower than the nav's z-index */
}

/* Main body styles */
body {
	
    background-color: #1b1b1b; /* Dark background */
    color: #F0F0F5; 
    font-family: 'Cutive Mono', monospace;
}

/* Header styles */
header {
    background-color: #292929; /* Slightly lighter dark shade for header */
    color: #ffa31a; /* More vibrant orange used for titles to stand out */
    padding: 20px;
    text-align: center;
}

img {
    max-width: 100px; /* adjust as necessary */
    max-height: 100px; /* adjust as necessary */
}

p, h3 {
    font-size: 0.8rem; /* adjust as necessary */
    line-height: 1.2; /* adjust as necessary */
}

/* Navigation menu styles adjusted for .navbar class */
.navbar {
	font-family: 'Open Sans', sans-serif;
	width: 100%;
    left: 0;
    background: #292929;
    padding: 5px;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensures navbar stays on top of other content */
}

.navbar a {
	font-family: 'Open Sans', sans-serif;
    font-weight: 600; /* Adds a little boldness */
    color: #ffa31a; /* Vibrant orange for links */
    margin: 0 15px;
    text-decoration: none;
    font-size: 18px;
	position: relative; /* or fixed, depending on your layout */
	z-index: 10; /* any number higher than the image z-index */
}

.navbar a:hover {
    color: #ffffff; /* White color for hover state for contrast */
}

/* Ensures content doesn't hide behind the navbar */
.main-content {
	padding-bottom: 66px;
    padding-top: 20px; /* Adjust the value based on the actual height of your navbar */
	text-align: center;
}

@media (max-width: 768px) {
    .main-content {
        padding-bottom: 290px; /* Adjust the value based on the new footer height */
		padding-top: 20px; /* Adjust the value based on the actual height of your navbar */
		text-align: center;
    }

}



/* Footer styles */
footer {
	width: 100%;
	left: 0;
    background-color: #292929;
    color: #ffa31a; /* Use vibrant orange for text to tie the design together */
    text-align: center;
    padding: 0px;
    position: fixed;
    bottom: 0;
}

.footer-content {
	display: flex;
    justify-content: space-between;
    align-items: flex-start; /* align items to the top */
    padding: 8px; /* reduced from 20px */
}

.footer-left, .footer-center, .footer-right {
    flex: 1;
    padding: 4px; /* adjust as necessary */
    margin: 4px; /* adjust as necessary */
}

.footer-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* space out contact and copyright */
}

.footer-right {
    text-align: center;
    padding-right: 8px; /* adjust as necessary */
}

.footer-content p,
.footer-content h3 {
    font-size: 0.762em; /* Assuming the original size was 1em, adjust if your original size was different */
    line-height: 0.222em; /* Adjust based on the current line height */
}

footer a {
    color: #000000; /* Change this hex code to the color you desire */
    text-decoration: none; /* This removes the underline from links */
}

footer a:hover {
    color: #555555; /* Slightly lighter shade for hover effect, adjust as needed */
}


/* Button styles */
.button {
    background-color: #ffa31a; /* Accent color for buttons */
    color: #1b1b1b; /* Dark text for buttons for readability */
    padding: 10px 20px;
    border: 2px solid #ffa31a; /* Outline to make buttons more prominent */
    cursor: pointer;
    text-align: center;
    display: inline-block;
    margin: 4px 2px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button:hover {
    background-color: #1b1b1b; /* Dark background for hover state */
    color: #ffa31a; /* Vibrant orange text for hover state for a striking look */
}

/* Utility classes */
.text-light {
    color: #ffffff; /* White text for contrast */
}

.text-accent {
    color: #ffa31a; /* More use of vibrant orange for accent text to enhance visibility and design coherence */
}

/* Use media queries for responsiveness */
@media (max-width: 768px) {
	
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-left, .footer-center, .footer-right {
        text-align: center;
        padding: 5px;
    }

    img {
        max-width: 80px; /* adjust for smaller screens */
        max-height: 80px; /* adjust for smaller screens */
    }
}

.bg-dark {
    background-color: #1b1b1b; /* Dark background utility class */
}

.bg-accent {
    background-color: #ffa31a; /* Accent background utility class for sections needing emphasis */
}
