/*=============================================*/
/*================= GLOBAL STYLES ==============*/
/*=============================================*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/*=============================================*/
/*================= STICKY BANNER ==============*/
/*=============================================*/
.sticky-banner {
    position: sticky;
    top: 0;
    background-color:#4169E1;
    color: #fff;
    padding: 10px;
    text-align: center;
}

.banner-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.link-row a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

/*=============================================*/
/*================= PAGE CONTENT ==============*/
/*=============================================*/
.page-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.centered-image {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
}

.divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 40px 0;
}

.image-grid {
    display: flex;
    flex-direction: column;
}

.image-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.image-container {
    width: 18%;
    margin: 0 1%;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.image-container p {
    font-size: 18px;
    margin-bottom: 10px;
}

.image-container a {
    text-decoration: none;
    color: #337ab7;
}

.centered-link {
  text-align: center;
  margin-bottom: 20px;
}

.centered-link a {
  font-size: 24px;
  color: blue;
  text-decoration: none;
}

.centered-link a:hover {
  color: green;
}


/*=============================================*/
/*================= FOOTER ===================*/
/*=============================================*/
.footer {
    background-color:#4169E1;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
}

.logo {
    width: 100px;
    height: auto;
    margin: 20px auto;
}

.logo-caption {
    font-size: 18px;
}

/*=============================================*/
/*================= RESPONSIVE DESIGN ==========*/
/*=============================================*/
@media (max-width: 768px) {
    .image-row {
        flex-direction: column;
    }
    .image-container {
        width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .link-row {
        flex-direction: column;
    }
    .link-row a {
        margin-bottom: 10px;
    }
}

/*+++hover effect===*/

.image-container {
  /* existing styles */
  transition: all 0.2s ease-in-out;
}

.image-container:hover {
border: 2px solid #337ab7;
background-color: rgba(144, 238, 144, 0.2); /* pale green with 20% opacity */
}


.image-container {
  /* existing styles */
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}

.image-container:hover {
  border: 1px solid #ccc; /* adjust the color to fit your design */
}

/*====HEADINGS H1====*/

.centered-heading {
  text-align: center;
  font-size: 36px;
  padding-bottom: 10px;
}

/*===Centre Image Caption Fonts===*/

.image-container p {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.image-container a {
  display: block;
  text-align: center;
}




