@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600&display=swap');

body {
  background-color: #F5F0E7;
  color: #2E2E2E;
  font-family: "Crimson Pro", serif;
  font-size: 1rem;
  line-height: 1.6;

}

.navbar a:hover,
.nav-link:hover {
  color: #8B5E3C; 
  text-decoration: none; 
}

.profile-pic {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #8B5E3C;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  margin-bottom: 1.5rem;
}

h1, h2, h3, h4 {
  font-family: "Crimson Pro", serif;
  font-weight: 600;
}

a {
  color: #607D3B;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #8B5E3C;
}
img {
  filter: grayscale(20%);
}
footer {
  background-color: transparent;
}

.text-justify {
  text-align: justify;
}

.btn-custom-olive {
  background-color: #fff;     
  color: #607D3B;                   
  border: 1px solid #607D3B;    
  transition: background 0.3s, color 0.3s;
}

.text-custom-olive {
  color: #607D3B;
}

.btn-custom-olive:hover, .btn-custom-olive:active {
  background-color: #607D3B;        
  color: #F5F0E7;               
  text-decoration: none;
}

.btn-custom-brown {
  background-color: #fff;     
  color: #8B5E3C;                   
  border: 1px solid #8B5E3C;    
  transition: background 0.3s, color 0.3s;
}

.btn-custom-brown:hover, .btn-custom-brown:active {
  background-color: #8B5E3C;        
  color: #F5F0E7;               
  text-decoration: none;
}

.card .card-title {
  color: #607D3B; 
  transition: color 0.3s;
}
.card:hover .card-title {
  color: #8B5E3C; 
}