@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', serif;
}

body {
    min-height: 100vh;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 2em;
    color: white;
    user-select: none;
}

.navigation a{
    position: relative;
    font-size: 1.1em;
    color:white;
    font-weight: 600;
    text-decoration: none;
    margin-left: 20px;
    padding: 6px 15px;
    transition: 0.5s;
}

.navigation a:hover, .navigation a.active{
    color: #333;
}

.navigation a span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 30px;
    z-index: -1;
    transform: scale(0);
    opacity: 0;
    transition: .5s;
}

.navigation a:hover span, .navigation a.active span {
    transform: scale(1);
    width: 100%;
    opacity: 1;
}

.parallax {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url(assets/bg4.jpg) no-repeat center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#main_text {
    position: absolute;
    font-size: 5em;
    color: #03045e;
    text-shadow: 1px 1px 1px #f9f9f9f9;
}

.after_parallax {
    position: relative;
    background: #03045e;
    padding: 30px 100px;
}

.parallax img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;

}

.parallax img#trees {
    transform: translateX(-282px);
    transform: translateY(-82px);
}

.after_parallax h2{
    font-size: 3em;
    color: rgb(109, 170, 255);
    margin: 10px
}

.after_parallax p{
    font-size: 1em;
    color: rgb(38, 177, 241);
    font-weight: 300;
    text-align: justify;
}

.contact-form {
    position: relative;
    background: #03045e;
    padding: 30px 100px;}

.contact-form h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: rgb(109, 170, 255); /* Set the text color for the form title */
}

.contact-form label {
    font-weight: bold;
    margin-bottom: 5px;
    color: rgb(109, 170, 255); /* Set the text color for labels */
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    font-size: 1em;
}

.contact-form button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.contact-form button:hover {
    background-color: #0056b3;
}

/* Additional styling for form fields and button hover state as needed */
