@charset "UTF-8";
/* CSS Document */
body {
    margin: 0;
    padding: 0;
    color: #666666;
    line-height: 2;
    background-color: white;
    margin-left: 0%;
    margin-right: 0%;
    font-family: "Montserrat", sans-serif;

}

.navbar {
    display: flex;
    justify-content:space-between;
    align-items: center;
    padding: 40px 80px 40px 40px;
    background-color: #FFFFFF;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 96%;
}

.logo img {
    width: 350px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    color: #666666;
    text-decoration: none;
    font-size: 16px;
}

.nav-links a:hover {
    text-decoration: underline; 
    color: black; 
}
.menu-icon {
    display: none;
    font-size: 28px;
    color: black;
    cursor: pointer;
}
/* Intro Styles */
.intro {
    background-color: #efedee;
    text-align: center;
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 40px;
    padding-bottom: 40px;
}
.intro img {
    display: block;
}
.intro h1 {
    font-size: 1em;
    margin-bottom: 0px;
    font-weight: bold;
    color: #666666;
}
.intro h2 {
    font-size: 2em;
    margin-top: 0px;
}
.intro p {
    margin-top: 20px;
    font-size: 1em;
    line-height: 2;
    text-align: left;
}

/* Image Styles */
	.hero {
    display: block;
    margin: 200px auto 0;
	width: 200px;
	height: 200px;

}
.divider {
    display: block;
    margin: 0 auto;
	width: 200px;
	height: 80px;

}

/* Footer Styles */
footer {
    background-color: #666666;
    color: white;
    text-align: left;
    padding: 10px 40px;
    line-height: 1.5;
}

@media (max-width: 768px) {
	.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    background-color: #FFFFFF;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	display: flex;
	width: 90%;
}
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        background-color: #666666;

        top: 94px; /* Adjust based on navbar height */
        right: 0;
        width: 100%;
    }

    .nav-links li {
        text-align: left;
		margin:40px 40px 40px 40px;

    }

	.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
		
}
	.nav-links a:hover {
    text-decoration:underline; 
    color: #ffffff; 
}
    .menu-icon {
        display: block;
    }

    .nav-active {
        display: flex;
    }
	.logo img {
    width: 240px;
}
	    .intro {
        padding-left: 40px;
        padding-right: 40px;
    }
}