/*****************
FONTS
*******************/
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/****************
  GENERAL
****************/
:root {
  --beige: #D3B89D;
  --beige_dark: #B69779;
  --brown: #42210B;
  --black: #000000;
  --white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Archivo", serif;
  font-weight: 400;
  background-color: var(--beige);
}


.photo_bottom{
  display: block;
  height: 25vh;
  background-image: url(../img/formimg.jpg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  max-width: 500px;
  margin: auto;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}

.custom_max_width {
  max-width: 100%;
}

.brown_text {
  color: var(--brown);
}

.bold {
  font-weight: 700;
}

/************************
  HEADER
**************************/
#header {
  position: relative;
  background-color: var(--beige);
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;

}

#header .header_logo {
  display: inline-block;
  max-width: 150px;
  margin: auto;
}

#header h1 {
  display: none;
}

.wrapper {
  background-color: var(--beige);
  width: 100%;
  height: 100vh;
}

.parallax {

}

.main_content {
}

.content_inner {
  padding: 0.75rem;
}

/* Form */
.form_wrapper {
  min-height: 500px;
}

/* footer */
footer {
  background-color: var(--beige);
  text-align: center;
  padding: 1.5rem;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: var(--brown);
}

@media only screen and (min-width: 768px) {
  .parallax {
    background-attachment: fixed;
  }
}

@media only screen and (min-width: 992px) {
  .custom_max_width {
    max-width: 50%;
  }

  .content_inner {
    padding: 2rem;
  }

  .parallax {
    background-position: bottom center;
  }

  footer {
    text-align: left;
  }

  footer .col-right {
    text-align: right;
  }
}

@media only screen and (min-width: 1200px) {
  .parallax {
    background-position: bottom center;
    background-size: 100% auto;
  }
}
