/* CSS Document */

body {
	margin: 0;
	background: white;
	--content-width: 90vw;
	--content-max-width: 1000px;
	--icon-width: 15vw;
	--icon-max-width: 150px;
}

.open-sans-normal {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}


div.home_img {
	display: flex;
	flex-direction: column;
	align-items: center;
    justify-content: space-between;
	width: 100vw;
	height: 25vw;
	background-image: url("images/homepage/home.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 1vw 0 1vw 0;
}

div.home_text {
	max-width: var(--content-max-width);
	width: var(--content-width);
	font-size: 3.5rem;
	font-weight: bold;
	color: white;
}

div.logo_container {
	display: flex;
	flex-direction: row;
	align-items: center;
    justify-content: space-between;
	max-width: var(--content-max-width);
	width: var(--content-width);
	/*background: white;*/
}

div.logo {
	width: var(--icon-width);
	max-width: var(--icon-max-width);
    height: 70px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

section {
	width: 100vw;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

div.home_content {
	font-size: 1rem;
	max-width: var(--content-max-width);
	width: var(--content-width);
}

div.menu_container_out {
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	background-color: white;
	color: white;
	margin-bottom: 50px;
}

div.menu_container_in {
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: flex-start;
	max-width: var(--content-max-width);
	width: var(--content-width);
	height: 70px;
}

div.menu_container_in ul {
	border: 0;
    padding: 0;
}

div.menu_container_in li {
	font-size: 1rem;
	display: inline;
	line-height: 70px;
	padding: 0 18px;
}

div.menu_container_in li:first-child {
	padding-left: 0;
}

/* Two-column layout */
.two-column-layout {
    display: flex;
    max-width: var(--content-max-width);
    width: var(--content-width);
    margin: 50px auto;
    gap: 40px;
    align-items: flex-start;
}

.content-section {
    flex: 1;
    min-width: 0;
}

.logo-section {
    flex: 2;
    min-width: 300px;
}

.content-section .home_content {
    width: 100%;
    max-width: none;
    margin-bottom: 30px;
}

.logo-section .logo_container {
    position: sticky;
    top: 20px;
    width: 100%;
    max-width: none;
}

/* Responsive design */
@media (max-width: 900px) {
    .two-column-layout {
        flex-direction: column;
    }
    
    .logo-section {
        order: -1;
        min-width: auto;
    }
    
    .logo-section .logo_container {
        position: relative;
        max-width: var(--content-max-width);
        width: var(--content-width);
        margin: 0 auto;
    }
}
