@charset "UTF-8";
/* CSS Document */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}
body{
	font-family: Arial, sans-serif;
    background-color: #f4f4f4;
	color: #333;
}
.logo {
    height: 80px;
	margin-left: 20px; /*Optional: Adds some spacing on the left side */
}
/*Header Style*/
header {
	background-color: #006400;
	color: white;
	text-align: center;
	padding: 1em 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.navbar{
	flex-grow: 1;
	display: flex;
	justify-content: center;
	/*background-color: #006400;*/
	/*margin-right: 20px; Optional: Adds some spacing on the right of the navbar. */ 
}

/* Navigation Bar Unordered List*/
.navbar ul{
	list-style-type: none; /*Remove Bullet Points*/
	margin: 0; /*Remove Margins*/
	padding: 0; /*Remove Padding*/
	/*overflow: hidden;*/
	display: flex;
	/*justify-content: flex-end; Aligns the list to the right*/
}

/*Navigation Bar List Items Spacing*/
.navbar li{
	/*display: inline; */
	margin: 0 15px; 
}

.navbar a{
	color: white;
	text-decoration: none;
	padding: 15px 20px;
	display: inline-block;
}

.navbar a:hover{
	background-color: #228822;
}
.phone-number {
	margin-left: auto;
	margin-right: 20px;
}
.phone-number p {
	margin: 0;
	font-size: 16px;
}

main {
	padding: 0;
	margin: 0; /*Rmove margins to avoid space on the sides*/
}

#showcase {
    position: relative;
    color: white;
    height: 400px;
    /*text-align: center;*/
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
	margin: 0; /*Remove any default margins*/
	padding: 0; /*Remove any default padding*/
	width: 100vw; /*Makes the section fill the full viewport width*/
}

#showcase video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
}

#showcase .content {
    position: relative;
    z-index: 1;
	text-align: center;
}

#showcase h1 {
    font-size: 55px;
    margin: 0;
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
#services {
    width: 100%;
    padding: 40px 0;
}

#services .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header {
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 15px;
    width: 100%;
}

.service-tile {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.service-tile h3 {
    color: #4CAF50;
    margin-bottom: 15px;
}

.service-tile p {
    color: #666;
}

footer {
    background: #006400;
    color: white;
    padding: 20px 0;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	flex-direction: column;
}
.footer-images {
	display: flex;
	margin-bottom: 20px;
}
.footer-images img {
	height: 100px;
}

.contact-info {
	text-align: left;
	flex-grow: 1;
}
/*
.contact-info p {
	margin: 5px 0;
}
*/

.contact-info p:not(:last-child) {
	margin-bottom: 10px; /*Adds spacing between contact details */
}

hr {
	border: 0;
	height: 1px;
	background-color: #FFF;
	margin: 20px 0; /* Adjusts spacing around the separator*/
	width: 100%;
}

.footer-content p {
	margin: 5px 0;
	text-align: left;
}

.footer-content p2 {
	margin: 5px 0;
	text-align: center;
}