/* Watermark */

#wrapper {
    background: none !important; /* Remove main background image */
    position: relative;
}

/* Add an overlay to control opacity */
#wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* &#128071; YOUR WATERMARK IMAGE &#128071; */
    background: url('/crest_watermark.png') no-repeat right center;
    
    /* &#128071; CONTROL IMAGE SIZE HERE &#128071; */
    background-size: 50% auto; /* adjust width here */
    
    background-attachment: fixed;
    opacity: 0.1; /* Adjust transparency */
    z-index: -1;
}

#wrapper,
#content01 {
    background: transparent !important;
    position: relative;
}

/* End */

h1,
h2,
h3,
h4,
p,
a,
li {

    color: #206398
}

/* Staffing Table Styling */

.staff-section {
  padding: 40px 20px;
  text-align: center;
}

.staff-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.staff-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.staff-card:hover {
  transform: translateY(-5px);
}

.staff-card img {
  width: 100%;
  max-width: 150px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 15px;
}

.staff-card h3 {
  font-size: 1.2rem;
  margin: 10px 0 5px;
  color: #333;
}

.staff-card p {
  font-size: 1rem;
  color: #555;
}


/* End */
