/* General CSS that all webpages will use. This will make the various css files less redundant as I can pull from this general document.
File will replace the footer file as footer will now be included in this file
File will feature nav-bar, footer and various section elements that are found among all the files so far */

/* Nav-Bar */
.nav-bar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #d4c1d3;
  display: flex;
}
.nav-bar ul li a {
  display: block;
  color: black;
  padding: 14px 16px;
  text-decoration: none;
}
.nav-bar ul li a:hover {
  background-color: #afb1da;
}
.nav-bar ul li a.active {
  background-color: #afb1da;
}
.nav-bar {
  padding-top: 0;
  width: 100%;
  float: left;
  border-top: 2px;
  border-style: solid;
}

/* common body css properties */
body h1,
h2,
h3,
p,
small {
  padding-left: 10px;
}
body {
  background-color: #f3e7e4;
  color: black;
  margin: 0;
  padding: 0;
}
section {
  border: 1px;
  border-style: solid;
  overflow: hidden;
}
.sec-title {
  background-color: #d4c1d3;
  border-top: 2px;
  border-bottom: 2px;
  border-style: solid;
}
/* button styling */
button {
  background-color: #fff3;
  color: black;
  border: 2px solid #0003;
  border-radius: 25px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
button:hover {
  background-color: #fff6;
  transform: translateY(-2px);
  box-shadow: 0 4px 9px rgba(0, 0, 0, 0.22);
}

button:active {
  transform: translateY(0);
}
/* Footer */
.foot {
  background-color: #d4c1d3;
}
