/* Reset some defaults */
body, html {
  height: 100%;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
}

/* Hero */
#hero {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-image 0.5s ease-in-out;
}

#hero .overlay {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 40px;
  text-align: center;
  border-radius: 10px;
}

#hero h1 {
  color: #3D3D3D;
}

#hero p {
  color: #7D7463;
}

/* Sidebar */
.list-group-item {
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.list-group-item:hover,
.list-group-item.active {
  background-color: #F4EEE6;
  color: #7D7463;
  border-color: #e6dfd1;
  font-weight: 600;
}

/* Cards */
.card-title {
  color: #7D7463;
}

.card-text,
.text-muted {
  color: #A89F91;
}

.card button {
  font-size: 0.9rem;
}

/* Footer */
footer {
  background-color: #F4EEE6;
  color: #A89F91;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* Responsive Tweaks */
@media (max-width: 767px) {
  #hero .overlay {
    padding: 20px;
  }
}
