* {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-size: 100%;
  font-family: "Open Sans", sans-serif;
}
body.menu-open {
  overflow-y: hidden;
}
body.menu-open #logo img:first-child {
  display: none;
}
body.menu-open #logo img:last-child {
  display: block;
}

.site-container {
  margin: 0 auto;
  padding: 0 15px;
}

header {
  position: sticky;
  top: 0;
  height: 102px;
  background: #fff;
  z-index: 2;
}
header .site-container {
  position: relative;
}
header #menu-toggle {
  position: absolute;
  top: 36px;
  right: 15px;
  font-size: 2.125rem;
  color: #FE7F2D;
  background: none;
  border: none;
  z-index: 2;
  cursor: pointer;
}
header #menu-toggle span {
  display: inline-block;
}
header #menu-toggle span:nth-child(2) {
  display: none;
}
header #menu-toggle.open span:nth-child(1) {
  display: none;
}
header #menu-toggle.open span:nth-child(2) {
  display: inline-block;
}

body.home #logo {
  width: 175px;
  margin: 0 auto;
  padding: 10px 0;
  transition: width 0.5s linear;
}
body.home #logo.scroll {
  width: 75px;
}

#logo {
  width: 75px;
  margin: 0 auto;
  padding: 10px 0;
  position: relative;
  z-index: 2;
}
#logo img {
  width: 100%;
  border: 1px solid #000;
  border-radius: 50%;
}
#logo img:last-child {
  display: none;
  border: none;
}

#nav-links {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #233D4D;
  padding-top: 200px;
}
#nav-links.open {
  display: block;
}
#nav-links ul {
  display: inline-flex;
  flex-direction: column;
  list-style: none;
}
#nav-links a {
  display: block;
  font-size: 5rem;
  color: #FE7F2D;
  padding: 20px;
  text-decoration: none;
}
#nav-links a:is(:hover, :focus) {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

.banner {
  display: flex;
  align-items: center;
  background: url("../images/kj-wedding.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 800px;
  width: 100%;
}
.banner:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.banner .banner-text {
  margin: 0 30px;
  z-index: 1;
}
.banner .banner-text span {
  display: block;
  color: #fff;
  font-size: 4.5rem;
  font-weight: bold;
}
.banner .banner-text span:first-of-type {
  font-size: 1.2rem;
  color: #FE7F2D;
}

.about .bio {
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.about .bio .about-img {
  width: 200px;
  margin-left: 15px;
  float: right;
}
.about .bio p {
  padding: 10px 0;
}
.about .bio p:first-of-type {
  padding-top: 0;
}

footer {
  padding: 50px 0 0;
  background: #233D4D;
  position: relative;
  z-index: 1;
}
footer p {
  color: #fff;
}
footer .site-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 800px) {
  footer .site-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
footer img {
  max-width: 200px;
  padding-bottom: 20px;
}
footer p {
  padding: 20px 0;
}/*# sourceMappingURL=styles.css.map */