@charset "utf-8";

.container {
	width: 100%;
	margin: auto;
	padding: 1%;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

.logo-container {
	float: left;
	margin-right: 20px;
}

.logo-container img {
	height: 80px;
}

.navi {
	list-style: none;
	font-family: "Outfit", sans-serif;
	display: flex;
	justify-content: center;
	align-content: center;
	gap: 7%;
	padding-bottom: 1%;
}

.navi a:link, a:visited {
	font-size: 1.55em;
	color: #000000;
	text-decoration: none;
}

.navi a:hover, a:active {
	color: #313628;
	text-decoration: underline;
}

.btn-submit {
	font-family: "Outfit", sans-serif;
	font-size: 15px;
	padding: 1% 2%;
	border: 3px solid;
	border-radius: 100px;
	background-color: transparent;
	position: absolute;
	top: 18px;
	right: 5px;
}

.btn-submit:hover {
	color: white;
	background-color: #5D7977;
}

body {
    font-family: "Outfit", sans-serif;
    background-color: #e8f0f1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.contact-form-container {
    background-color: #f8f8f8;
    width: 90%;
    max-width: 800px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
	margin: 0 auto;
}

.contact-header {
	font-family: "DM Serif Display", serif;
    background-color: #5c776d;
    color: white;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    font-size: 24px;
}

.contact-description {
    margin: 15px 0;
    font-size: 16px;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
	padding: 3%;
}

.form-row {
    display: flex;
    gap: 15px;
	width: 100%;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-group label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
	font-family: "Outfit", sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    outline: none;
    transition: border-color 0.3s;
	font-family: "Outfit", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #5c776d;
}

textarea {
    resize: none;
    height: 80px;
}

.full-width {
    width: 100%;
}

.submit-button {
    background-color: #5c776d;
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
	font-family: "Outfit", sans-serif;
}

.submit-button:hover {
    background-color: #4a605a;
}

.map-container {
    margin-top: 20px;
}

.map-container img {
    width: 100%;
    border-radius: 10px;
}

