:root {
    --maroon: #9E1C34;
    --gold: #FFC107;  
    --white: #ffffff;
    --dark-text: #333333;
    --light-gray: #f5f5f5;
  }
  
  html {
    scroll-behavior: smooth; 
  }
  
  body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--white) url('WFHS2.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #333;
  }
  
  .hero-section {
    background-color: rgba(255, 255, 255, 0.85); 
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    max-width: 90%;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
  }
  
  .hero-logo {
    flex: 1 1 30%; 
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .hero-logo img {
    max-width: 80%;
    height: 50%;
  }
  
  .hero-content {
    flex: 1 1 300px;
    text-align: center;
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--maroon);
  }
  
  .hero-buttons {
    margin-top: 20px;
  }
  
  .hero-buttons button {
    background-color: var(--gold); 
    border: none;
    color: var(--dark-text);
    padding: 15px 30px;
    margin: 0 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .hero-buttons button:hover {
    background-color: #e0a906; 
  }
  
  section {
  background-color: rgba(255, 255, 255, 0.85); 
  max-width: 90%;
  margin: 0 auto;
  padding: 50px 20px;
  border-bottom: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
  }
  
  section h2 {
    margin-top: 0;
    color: var(--maroon);
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  
  th, td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
  }
  
  th {
    background-color: var(--light-gray);
  }
  
  .back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: transparent;
    color: var(--maroon);
    border: 2px solid var(--maroon);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .back-to-top:hover {
    background-color: var(--maroon);
    color: var(--white);
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translate(-50%, -48%);
    }
    to {
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }
  
  @keyframes fadeOut {
    from {
      opacity: 1;
      transform: translate(-50%, -50%);
    }
    to {
      opacity: 0;
      transform: translate(-50%, -48%);
    }
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease;
  }
  
  .custom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .custom-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 90%;
    text-align: center;
    opacity: 0;
  }
  
  .custom-modal-content img {
    width: 40vw;
    max-width: 500px;
    min-width: 250px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .custom-modal.show {
    display: block;
    opacity: 1;
  }
  
  .custom-modal.show .custom-modal-content {
    animation: fadeIn 0.3s ease forwards;
  }
  
  .custom-modal.hide .custom-modal-content {
    animation: fadeOut 0.3s ease forwards;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
  }

  .view-documents {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
  }
  .view-documents:hover {
    color: darkblue;
  }
  
  th, td {
    text-align: center;
    vertical-align: middle;
  }