
/* Flex container for fluid height (height of highest column) and responsive widths on various screen sizes by
Glauber Ramos https://glauberramos.com
for which we are eternally grateful!! */

 
.col {display: table-cell; padding:10px;}

#cardContainer {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* number of columns for computer screen, change number for smaller screens on media below */
        gap: 16px; /* gap between cards */
        margin-top: 16px; /* margin for when cards go underneath each other on smaller screens */
      }
      
      /* If more than one grid per page, add new containers and cards here */
      
      #graphicContainer {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* number of columns for computer screen, change number for smaller screens on media below */
        gap: 16px; /* gap between cards */
        margin-top: 16px; /* margin for when cards go underneath each other on smaller screens */
      }
            
      .col-card {
        background: #eeeeee;
        color: #000;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        border: none;
        display: flex;
        flex-direction: column;
        max-width: 100%;
        width: 100%;
        padding:8px;
        margin: 0 auto;
      }
 
      
      .col-card-content {
        padding: 16px;
        flex: 1;
      }
      .col-card h3 {
        margin: 0 0 8px 0;
        color: #333;
        font-size: 16px;
      }
      .col-card p {
        margin: 4px 0;
        color: #000000;
        font-size: 16px;
      }
      
      .col-card a {
        color: #74ac00;
        text-decoration: none;
      }
      .col-card a:hover {
        text-decoration: underline;
      }
     
		
      
      @media (max-width: 1400px) {
        #cardContainer, #graphicContainer {
          grid-template-columns: repeat(3, 1fr);
        }
      }
      @media (max-width: 1200px) {
        #cardContainer, #graphicContainer {
          grid-template-columns: repeat(3, 1fr);
        }
      }
      @media (max-width: 900px) {
        #cardContainer, #graphicContainer {
          grid-template-columns: repeat(2, 1fr);
        }
        
        #toppic {margin-top:100px!important;}
        #biglogo {width:70px!important;margin-top:120px!important;}
        #mission {margin-left:0!important;margin-right:0!important;}
        
      }
      @media (max-width: 600px) {
        #cardContainer, #graphicContainer {
          grid-template-columns: 1fr;
        }

        .col-card {
          max-width: 100%;
        }
        #toppic {margin-top:100px!important;}
        #biglogo {width:70px!important;margin-top:120px!important;}
       .bar-item {font-size:12px;}
      }
      
      @media (max-width: 400px) {
        #cardContainer {
          grid-template-columns: 1fr;
        }

        .col-card {
          max-width: 100%;
        }
        #toppic {margin-top:100px!important;}
        #biglogo {width:70px!important;margin-top:120px!important;}
       .bar-item {font-size:12px;}
      }
      
      /* Extras I have not used yet
      .col-card-image-container {
        position: relative;
        width: 100%;
        height: 200px;
        border-radius: 8px 8px 0 0;
        overflow: visible;
      }

      .col-card-header-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        background: #f5f5f5;
        border-radius: 8px 8px 0 0;
      }

      .col-card-icon {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 4px solid white;
        object-fit: cover;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
      }

*/     
      
      /* More extras I have not used yet
      .pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin: 24px 0;
        display: none;
      }
      .pagination.show {
        display: flex;
      }
      .pagination button {
        padding: 10px 20px;
        border-radius: 5px;
        border: none;
        background-color: #3498db;
        color: white;
        cursor: pointer;
        font-size: 14px;
        font-weight: 500;
        transition: background-color 0.3s;
      }
      .pagination button:hover:not(:disabled) {
        background-color: #2980b9;
      }
      .pagination button:disabled {
        background-color: #bdc3c7;
        opacity: 0.6;
        cursor: not-allowed;
      }
      .pagination .page-info {
        font-size: 14px;
        color: #666;
      }
      .autocomplete-item {
        padding: 6px 15px;
        cursor: pointer;
        border-bottom: 1px solid #eee;
      }
      .autocomplete-item:last-child {
        border-bottom: none;
      }
      .autocomplete-item:hover {
        background-color: #f5f5f5;
      }
      */
