/* BODY STYLES */

body {
    background-color: #550C18;
    font-family: Tahoma, Verdana, sans-serif;
}

h1, h2, h3 {
  text-align: center;
}

h1, h2 {
  font-family: Garamond, serif;
}


/* NAVBAR Styles */

header {
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  background: #550C18;
  color: #FAFAFA;
  max-width: 1200px;
  margin: 0 auto;
}

header div {
    text-align: center;
    background-color: #550C18;
}

.logo {
  height: 100px;
  transition: transform 0.2s;
}

.logo:hover {
    transform: scale(1.02);
}



header a {
  color: #FAFAFA;
  text-decoration: none;
  padding: 10px;
}

header a:hover {
  background-color: #443730;
  color: #FAFAFA;
}

a.nav-button {
  border: 1px solid #443730;
  background-color: #FAFAFA;
  border-radius: 10px;
  color: #550C18;
  transition: all 0.3s ease;
}

.icon {
  display: none;
}


/* SECTIONS STYLES */
section {
  max-width: 1200px;
  background: #FAFAFA;
  margin: 0 auto;
  padding: 0px;
}

/* FEATURE STYLES */
.feature {
  display: flex;
  align-items: center;
  height: 500px;
  background: url(images/hero3.jpg);
  background-repeat: no-repeat;
  background-size: auto;
  color:#FAFAFA;
  text-align: center;
}

.feature-content {
  margin-left: 45%;
  width: 50%;
  padding: 20px;
}

.feature-content-background {
  background-color:#443730;
  padding: 20px;
  border-radius: 20px;
}

/* Flex Container 3 */
.flex-container-3 {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  padding: 20px;
}

.flex-container-3-cell {
  background-color: #A5907E;
  width: 300px;
  height: 300px;
  padding: 20px;
}

.center {
  text-align: center;
}

a.cta-button {
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid #443730;
  background-color: #FAFAFA;
  border-radius: 10px;
  color: #550C18;
}

.cta-button:hover {
  background-color:#443730;
  color: #FAFAFA;
}

/* MAP */
.map {
  width: 100%;
  height: 500px;
}

/* FOOTER STYLES */
footer {
  max-width: 1200px;
  margin: auto;
  background-color: #443730;
  color: #FAFAFA;
  margin: 0 auto;
}

.footer-3-column {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}

.footer-3-column div {
  padding: 5px 20px;
  flex-basis: 300px;
}

.footer-3-column h4 {
  text-decoration: underline;
  font-weight: bold;
}


/* MOBILE STYLES */
@media (max-width:768px) {

  /*header {
    display: flex;
    flex-flow: column;
  }*/

  nav {
    width: auto; 
    position: absolute;
    top: 60px;
    right: 5px;
    background-color:#550C18;
    padding: 5px;
  }

  /* ADDED for hamburger */
.topnav {
  overflow: visible; /*was hidden */
  background-color: #550C18;
  position: relative;
}

.topnav #myLinks {
  display: none;
}

.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.topnav a.icon {
  background: #550C18;
  color:#FAFAFA;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

a.nav-button {
  border: 1px solid #443730;
  background-color: #FAFAFA;
  border-radius: 10px;
  color: #550C18;
  transition: all 0.3s ease;
}

.topnav a:hover {
  background-color: #443730;
  color: #FAFAFA;
}
.active {
  background-color: #04AA6D;
  color: white;
}
/*End hamburger */

  section {
  max-width: 100%;
  background: #FAFAFA;
  margin: 0 auto;
  padding: 0px;
}

 /*FEATURE STYLES*/
.feature {
  background: url(images/hero3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  color:#FAFAFA;
  text-align: center;
}

.feature-content {
  margin: auto;
  width: 90%;
  padding: 20px 20px;
}

.feature-content-background {
  background-color:#443730;
  padding: 20px;
  border-radius: 20px;
} 

  /* Flex Container 3 MOBILE */
.flex-container-3 {
  width: 90%;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.flex-container-3-cell {
  width: 100%;
  height: auto;
  padding: 20px;
  margin: 10px;
}

.footer-3-column {
  flex-direction: column;
}

.footer-3-column div {
  flex-basis: auto;
}

}

