@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

body {
    color: white;
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.half-image {
	height: 300px;
}

h1 {
    font-family: 'Montserrat', sans-serif;
	margin-top:0;
}
.error {
	color: red;
}
.success {
	color: green;
}

h2 {
	font-family: 'Montserrat', sans-serif;
    color: white;
	position: relative;
    text-decoration: none;
	font-size: 3.25rem;
	font-weight: 700;
    border: 2px;
	position: absolute;
	bottom: 0;
    left: 0;
	padding-left: 30px;
}

h3 {
	margin-bottom: 0;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

p {
	line-height: 2.25rem;
	font-size: 1.125rem;
	text-align: left;
}

.long-text {
	padding-left: 30px;
}
.translucent {
    background-color: rgba(0,0,0,0.9);
}

.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
	height: 100%;
}

.home-page {
	background: url(../images/background.jpg) no-repeat top center;
    background-size: cover;
	object-fit: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
.login-page{
	background: url(../images/background.jpg) no-repeat top center;
    background-size: cover;
	object-fit: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
	align-items: center;
}

.gallery-page {
	background-color: #f5efef;
    width: 100%;
    height: auto + 500px;
	min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: absolute;
}

.contact-page {
	background-color: #f5efef;
    background-size: cover;
    width: 100%;
    height: 100%;
	min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.about-page {
	background-color: #f5efef;
    background-size: cover;
    width: 100%;
    height: 100%;
	min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.services-page {
	background-color: #f5efef;
    background-size: cover;
    width: 100%;
    height: 100%;
	min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.logo {
    margin-left: 10px;
	padding-top: 30px;
    height: 100%;
    min-height: 100px;
}
.menu {
    align-items: flex-end;
    display: flex;
}

ul {
    list-style: none;
}
.expanded-menu { 
    align-items: flex-end;
    display: flex;
}
.menu-item {
    position: relative;
    color: white;
    text-decoration: none;
    margin-right: 25px;
    font-size: large
}
.selected {
    text-decoration: solid underline white 2px;
    text-underline-offset: 2.5px;
}

.menu-item::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-item:hover:not(.selected)::before {
    transform: scaleX(1);
}

.opaque {
    background: rgba(0,0,0,0.5);
}

.page-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding-bottom: 250px;
    justify-content: center;
    flex-direction: column;
}


.about-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding-bottom: 250px;
    justify-content: start;
    flex-direction: column;
}

.gallery-content {
    flex: 1;
    display: flex;
    align-items: start;
    justify-content: flex-start;
    flex-direction: column;
}

.contact-content {
    flex: 1;
    display: flex;
    align-items: start;
    justify-content: flex-start;
    background-color: #f69baa;
}


.main-title {
    font-size: 35px;
}

.side-title {
    font-size: 35px;
    margin-left: 3%;
    margin-top: 50px;
}

.title-box {
    margin-top: 20px;
    padding-bottom: 6px;
}

.side-title-underline {
    height: 12px;
    background-color: white;
    width: 35%;
    z-index: 1;
    position: absolute;
}

.gallery-button {
    color: white;
    text-decoration: none;
    border: 2px;
    border-style: solid;
    padding: 5px 20px 5px 20px;
    transition: 0.2s;
}
.gallery-button:hover {
    background-color: white;
    border-color: white;
    color: black;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.burger-toggle {
    opacity: 0;
    position: absolute;
    right: 2rem;
    top: 2rem;
    z-index: 1;
}
  
.burger-button {
    cursor: pointer;
    display: block;
    height: 1.5rem;
    padding: 2px 0;
    pointer-events: auto;
    position: absolute;
    right: 2rem;
    top: 2rem;
    width: 1.5rem;
    z-index: 3;
}

.burger-button-part {
    background-color: white;
    display: block;
    height: .25rem;
    position: relative;
    transform-origin: 0;
    transition: transform .2s ease-in-out .3s, opacity .1s ease-in-out .4s, background-color .2s ease-in-out .2s;
    width: 1.5rem;
    margin-bottom: 3px;
    will-change: transform, opacity, background-color;
}

.burger-button-part + .burger-button-part {
    margin-top: .25rem;
}

.burger-button-part:first-child {
    transform-origin: 0 0;
}

.burger-button-part:last-child {
    transform-origin: 0 100%;
}

.burger-toggle:checked ~ .burger-button .burger-button-part {
    background-color: white;
    opacity: 1;
    transform: rotate(45deg);
}

.burger-toggle:checked ~ .burger-button .burger-button-part:nth-child(2) {
    opacity: 0;
    transform: rotate(0deg) scale(.2, .2);
}

.burger-toggle:checked ~ .burger-button .burger-button-part:nth-child(3) {
    opacity: 1;
    transform: rotate(-45deg);
}

.burger-toggle:checked ~ .burger-button .burger-button-part:nth-child(3) {
    opacity: 1;
    transform: rotate(-45deg);
}

#menu-overlay {
    display: none;
    z-index: 1;
    width: 100%;
    height: 100vh;
    background-color: black;
    opacity: 0.9;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity .2s linear, height .5s step-start;
    position: absolute;
}

/* .visible {
    opacity: 0.9;
    height: 100vh;
    overflow: hidden;
    transition-timing-function: linear, step-end;
} */ 

.burger-item {
    margin-top: 20px;
    font-size: xx-large;
}

.burger-menu {
    width: 24px;
    height: 28px;
    display: none;
}

@media only screen and (max-width: 768px) {
    .expanded-menu {
        display: none;
    }
    .burger-menu {
        display: initial;
    }
}