* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body h1 {
  margin: 0;
  padding: 0;
}

/* Begin header section styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  min-width: 100%;
}
header section {
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 50%;
}
header section:last-child {
  float: right;
}
header i {
  color: white;
  font-size: 48px;
}
header #close {
  width: 100%;
  text-align: center;
  display: none;
}
header .fa-solid,
header .fa-xmark {
  color: white;
  font-size: 48px;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  header {
    width: 80%;
    min-width: 80%;
    left: inherit;
  }
}

/* End header section styles */
/* Begin navigation bar styles */
nav ul {
  display: none;
  flex-direction: row;
  flex: 1;
  align-items: center;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  margin: 0;
  padding-top: 1em;
  padding-bottom: 1em;
}
nav ul li {
  margin-left: 3em;
}
nav ul a {
  text-decoration: none;
  color: white;
  font-size: x-large;
}
nav ul a:hover {
  text-decoration: underline;
}
nav ul .dropdown {
  display: none;
}
nav ul li:hover > .dropdown {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: inherit;
  width: 20%;
  z-index: 1;
}
nav ul li ul li {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  border: 1px solid #000000;
  width: 100%;
  text-align: center;
  background-color: purple;
}
nav ul li ul a {
  text-align: center;
}
@media only screen and (max-width: 400px) {
  nav ul {
    padding-top: 2em;
  }
}
@media only screen and (min-width: 600px) {
  nav ul {
    display: flex;
  }
}
@media only screen and (min-width: 768px) and (min-width: 992px) and (min-width: 1200px) {
  nav ul {
    display: flex;
  }
}

/* End navigation bar styles */
/* Begin main tag styles */
main {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  position: relative;
}
main h1 {
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 992px) {
  main {
    width: 80%;
  }
}

/* End main tag styles */
/* Makes sure the width of the home section and header section are the same */
#home,
header {
  width: 80%;
}

/* Begin home section style */
#home {
  background-image: url("../images/home.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 100vh;
  min-height: 100vh;
  width: 100%;
  color: white;
  text-align: center;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#home section {
  display: flex;
  flex: 1;
  flex-direction: column;
  text-align: center;
  margin-bottom: 2em;
  justify-content: center;
  text-align: center;
}
#home img {
  width: 60%;
  display: flex;
  margin: auto;
}
#home address {
  font-size: x-large;
  text-shadow: 1px 1px #000000;
  text-align: center;
  margin-top: 2em;
  width: 100%;
}
#home span {
  margin: 0;
  padding: 0;
  text-align: left;
}
#home p {
  font-size: x-large;
  text-align: center;
}
#home .spacing {
  margin-top: 6em;
}
#home .socialmedia {
  font-size: 48px;
  color: orange;
  display: block;
}
@media only screen and (max-width: 400px) {
  #home {
    flex-direction: column;
    justify-content: space-evenly;
  }
}
@media only screen and (max-width: 600px) {
  #home img {
    width: 40%;
  }
}
@media only screen and (min-width: 600px) {
  #home img {
    width: 40%;
  }
  #home section {
    flex-direction: row;
  }
  #home address {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  #home img {
    width: 40%;
  }
  #home section {
    flex-direction: row;
  }
  #home address {
    width: 50%;
  }
}
@media only screen and (min-width: 1200px) {
  #home img {
    width: 20%;
  }
}

/* End home section style */
/* Begin gallery styles */
#gallery {
  margin-left: 1em;
  margin-right: 1em;
  text-align: center;
}
#gallery h2 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
#gallery button {
  background-color: lightblue;
  color: black;
  border: 1px solid #000000;
  border-radius: 10px;
  padding: 5px 5px 5px 5px;
  margin-top: 1em;
  font-size: large;
}

/* Begin landscape photos specific styles */
#landscapes img {
  width: 100%;
  margin-bottom: 1em;
}
#landscapes figure {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
@media only screen and (max-width: 400px) {
  #landscapes {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 600px) {
  #landscapes {
    display: inline-grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto auto;
    gap: 1em;
    row-gap: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}

/* End landscape photos specific styles */
/* Begin wedding photos specific styles */
#weddings img {
  width: 100%;
  margin-bottom: 1em;
}
#weddings figure {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
@media only screen and (min-width: 600px) {
  #weddings {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto auto;
    gap: 1em;
    row-gap: 0;
  }
}

/* End wedding photos specific styles */
/* End gallery section styles */
#mobilesearch {
  display: none;
}

.mobile {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
.mobile .fa-solid,
.mobile .fa-bars {
  color: white;
  font-size: 48px;
}
.mobile .fas,
.mobile .fa-close {
  color: white;
  font-size: 48px;
  padding-top: 2em;
  padding-bottom: 2em;
}
@media only screen and (max-width: 400px) {
  .mobile {
    display: flex;
  }
}
@media only screen and (min-width: 600px) {
  .mobile {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .mobile {
    display: flex;
  }
}
@media only screen and (min-width: 768px) {
  .mobile {
    display: none;
  }
}

.mobilenav ul {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 2em;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  min-width: 100%;
}
.mobilenav ul li {
  padding-left: 0;
  padding-top: 1em;
  padding-bottom: 1em;
  margin-left: 0;
  margin-bottom: 0;
  text-align: center;
  border-top: 1px solid #ffffff;
  width: 100%;
  min-width: 100%;
}
.mobilenav ul li:first-child {
  color: white;
  font-size: 48px;
  margin: 0;
  padding: 0;
}
.mobilenav ul li:first-child i {
  text-align: center;
}
.mobilenav ul a {
  text-shadow: 1px 1px #000000;
  font-size: xx-large;
}
.mobilenav ul a:hover {
  background-color: orange;
  color: black;
}
.mobilenav ul a:hover {
  text-decoration: underline;
  /* Give the anchor tags a very basic hover underline effect */
}
@media only screen and (min-width: 1200px) {
  .mobilenav ul {
    display: none;
  }
}

/* Begin services styles */
#services {
  position: relative;
  width: 100%;
  display: flex;
  flex: 1;
  flex-direction: column;
}
#services section {
  background-color: #cf9fff;
  text-align: center;
  display: flex;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
}
#services article {
  width: 50%;
  display: flex;
  flex-direction: column;
}
#services img {
  width: 60%;
  margin: auto;
  padding-right: 1em;
}
#services p {
  margin-bottom: 1em;
  padding-left: 1em;
  padding-right: 1em;
  text-align: left;
}
#services h2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #cf9fff;
}
#services ul {
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding-top: 1em;
  padding-bottom: 2em;
}
#services .top-curve {
  width: 100% !important;
}
#services .bottom-curve {
  background-color: #F2D272;
  width: 100%;
}
@media only screen and (max-width: 400px) {
  #services h2 {
    text-align: center;
    display: flex;
  }
  #services section {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  #services p {
    margin-bottom: 1em;
  }
  #services ul {
    padding-left: 2em;
  }
}
@media only screen and (min-width: 600px) {
  #services section {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
}
@media only screen and (max-width: 600px) {
  #services section {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) {
  #services section {
    display: flex;
    flex-direction: row;
  }
  #services p {
    display: flex;
    flex-direction: column;
  }
}

/* End services styles */
/* Begin contact styles */
#contact {
  background-color: #F2D272;
  width: 100%;
  display: flex;
  flex-direction: column;
}
#contact h2 {
  margin-top: 0.5em;
  margin-bottom: 1em;
  text-align: center;
}
#contact section {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#contact iframe {
  width: 60%;
  margin-left: 1em;
  margin-right: 1em;
}
#contact address {
  font-size: x-large;
  margin-bottom: 0.5em;
}
#contact footer {
  margin-top: 1em;
  margin-bottom: 1em;
  text-align: center;
}
#contact .social {
  display: inline-block;
  font-size: 48px;
  color: #699BF7 !important;
}
#contact #icon {
  color: #699bf7;
  font-size: 48px;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 400px) {
  #contact section {
    flex-direction: column-reverse;
    width: 100%;
  }
  #contact address {
    margin-bottom: 1em;
  }
  #contact iframe {
    width: 100%;
    margin: auto;
    display: flex;
  }
}
@media only screen and (min-width: 600px) {
  #contact section {
    flex-direction: row;
  }
  #contact iframe {
    margin-bottom: 1em;
  }
}
@media only screen and (max-width: 600px) {
  #contact section {
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
  }
  #contact iframe {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  #contact section {
    flex-direction: row;
  }
  #contact address {
    flex-direction: column;
  }
}

/* End contact styles */
.logo {
  width: 40%;
}

.progress-container {
  width: 100%;
  min-width: 100%;
  height: 8px;
  background: transparent;
  position: absolute;
  left: 0;
  z-index: 100;
}

.progress-bar {
  height: 8px;
  background: #04aa6d;
  width: 100%;
  z-index: 100;
}/*# sourceMappingURL=style.css.map */