/* General */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: #B9AE8D;
  background-image: url('resource/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.logo {
  width: 300px;
  max-width: 100%;
}

nav {
  display: flex;
  gap: 15px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.burger {
  display: none;
  font-size: 50px;
  cursor: pointer;
}

.nav-btn {
  padding: 10px 30px;
  background-color: #B9AE8D;
  color: #000;
  text-decoration: none;
  font-size: large;
  border: none;
}

.nav-btn:hover {
  background-color: #B9AE8D;
}

main {
  text-align: center;
  flex: 1 0 auto;
  padding: 40px 15%;
  box-sizing: border-box;
}

footer {
  background-color: #B9AE8D;
  color: black;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 40px 15%;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.left-footer, .right-footer {
  max-width: 45%;
  color: black;
}

.right-footer {
  text-align: right;
  float: right;
  margin-right: 15%;
}

.left-footer {
  text-align: left;
  float: left;
  margin-left: 15%;
}

/* Home */
.home_divider {
  border: none;
  height: 5px;
  width: 75%;
  color: #B9AE8D;
  background-color: #B9AE8D;
}

.home_text {
  color: #B9AE8D;
  font-size: 50px;
}

/* About */
.about-content {
  margin: auto 10%;
  font-size: larger;
}


@media (max-width:800px) {
  .body {
    background-attachment: scroll;
  }

  .logo {
    width: 40%;
  }

  .navbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Burger menu dropdown */
  .nav-links {
    display: none;
    flex-direction: column;
    border-style: solid;
    position: absolute;
    right: 0;
    top: 100%; /* Places it directly under the navbar */
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    padding: 10px;
    z-index: 100;
  }

  /* Show dropdown when active */
  .nav-links.active {
    display: flex;
  }

  .burger {
    display: block;
  }

  .nav-btn {
    padding: 10px 30px;
    color: #000;
    text-decoration: none;
    font-size: large;
    border: none;
  }

  .left-footer, .right-footer {
    width: 100%;
    color: black;
  }

  .right-footer {
    margin: 0px;
    text-align: center;
  }

  .left-footer {
    margin: 0px;
    text-align: center;
  }

  /* About */
  .about-content {
    margin: 0px;
    font-size: larger;
  }
}