body{
	background-color: white;
	font-family: nb_international_pro, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: transparent;
	padding: 30px 0;
	z-index: 10;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 30px;
}

.logo img {
	height: 100px;
	margin-left: 10px;
}

nav {
	margin-top: 20px;
	text-align: right;
	margin-right: 300px;
}

nav a{
	display: inline-block;
	color: black;
	padding: 10px 20px;
	text-decoration: none;
	margin: 5px;
	background-color: transparent;
	transition: font-size 0.2s;
	font-weight: bold;
}

nav a:hover {
	font-size: 18px;
	transition: font-size 0.2s;
}

.about-main {
	position: relative;
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-repeat: no-repeat;
	background: url(IMG_2768.jpg) no-repeat center center / cover;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	text-align: center;
	font-size: 48px;
	text-shadow: 2px 2px 0px #111111;
}

.who-we-are {
	position: relative;
	width: flex;
	min-height: 500px;
	background-size: cover;
	background-color: white;
	padding: 50px 0;
	margin-bottom: 20px;
}

.who-we-are h1 {
	font-size: 48px;
	text-align: center;
}

.who-we-are p {
	font-size: 18px;
	padding: 0 150px;
	text-align: center;
}

.what-we-do {
	background-color: #d22b2b;
	padding: 100px 20px;
}

.services-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background-color: #d22b2b;
}

.service-item {
    position: relative;
    width: 300px;
    height: 250px;
    overflow: hidden;
    margin: 5px;
    flex: 1 1 200px;
    background-size: cover;
    background-position: center;
}

.what-we-do-text h1{
	text-align: center;
	font-size: 50px;
	font-weight: bold;
}

#commercialPainting {
    background-image: url('IMG_0791.jpg');
}

#fauxFinishes {
    background-image: url();
}

#highPerformancePainting {
    background-image: url('IMG_4287.jpg');
}

#maintenanceCoatings {
	background-image: url('IMG_1004.jpg');
}

#waterproofing {
    background-image: url('IMG_0493.jpg');
}

.what-we-do-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.what-we-do-overlay h3 {
    margin: 0;
    font-size: 18px;
    margin-bottom: 10px;
}

footer {
	background-color: white;
	padding: 30px;
	text-align: center;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 30px;
}

.footer-logo img {
	height: 80px;
	margin-left: 10px;
}

.footer-nav {
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-nav a {
	display: inline-block;
	color: black;
	padding: 10px 20px;
	text-decoration: none;
	margin: 5px;
	background-color: transparent;
	border: transparent;
	transition: font-size 0.2s;
	font-weight: bold;
}

.footer-nav a:hover {
	font-size: 18px;
	transition: font-size 0.2s;
}



.info p {
	text-align: right;
	font-weight: bold;
}

footer p {
	text-align: center;
}

/* Support for mobile devices, avoids the frustrating cut-off screen issue */
@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo img {
        margin: 0 auto;
        height: 60px;
    }

    nav {
        text-align: left;
        margin-top: 10px;
        width: 100%;
    }

    nav a {
        display: block;
        width: 100%;
        text-align: left;
        padding: 10px 0;
        margin: 0;
    }
	
	.who-we-are {
		padding: 20px 10px;
		margin-bottom: 40px;
	}
	
	.who-we-are p {
		padding: 0 20px;
	}
	
	.what-we-do {
		padding: 50px 10px;
	}
	
	.what-we-do-text h1 {
		margin-top: 30px;
	}

    .footer-top {
        flex-direction: column;
    }

    .footer-nav {
        flex-direction: column;
    }

    .info p {
        text-align: center;
    }

}