body {
    background-color: #203050;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; 
    min-height: 100vh; 
}


.main-content {
    font-family: 'Josefin Sans', sans-serif;
    flex: 1; 
    background-color: #AEC6CF;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
    margin:10px auto;
    padding:20px;
    max-width:80%;
}

.desktop-menu, .mobile-menu {
display: none;
justify-content: center;
align-items: center;
}

.menu img {
max-width: 100%;
height: auto;
}

.desktop-menu a, .mobile-menu a {
margin: 0 10px;
}

.logo {
cursor: pointer;
}

.mobile-menu {
display: none;
}

.mobile-menu a {
display: none;
}

.mobile-menu a.is-visible {
display: block;
}

.banner-image {
    height: auto;
    width: 90%;
    display: block;
    margin:0 auto;
}

.image-container {
    position: relative;
    cursor: default; 
}

.clickable-image {
    display: block; 
    width: 100%;
    height: auto;
}

figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}

figcaption {
  margin: 5px 0;
  font-size: 12px;
}

.hidden-text {
    display: none; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(50%, 50%);
    background-color: rgba(255, 255, 255, 0.8); 
    color: #000000;
    font-family: 'Josefin Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}


.text-box {
    font-size: 16px;
    line-height: 1.6;
    background-color: #AEC6CF;
    color: #000000;
    display: block;
    width: 90%;
    margin: 0 auto;
    margin-top: 25px;
    box-sizing: border-box;
}

.intro-text {
    width: 90%;
    margin: 0 auto;
    margin-top: 25px;
    box-sizing: border-box;
}

.center-text {
    text-align: center;
    width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
}

.header {
    text-align: center;
    padding: 0px;
    margin-bottom: 0px;
}

.header h1 {
    margin: 0;
    margin-bottom: 10px;
    font-size: 2em;
}

.header h3 {
    margin: 0;
    font-size: 1.5em;
}

.intro-text h3 {
    text-align:center;
}

.footer {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    line-height: 1px;
    text-align: center;
    color: white;
    padding: 0px 0;
    width: 100%;
    box-sizing: border-box;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-top: 20px;
}

.grid-item {
    padding: 20px; 
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.grid-item img {
    max-width: 100%;
    height: auto;
}

.grid-item h3 {
    margin-top: 0;
    text-align: center;
}


.date-time {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 5px;
    color: #FEECA1;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
}


.image-container {
    position: relative;
    cursor: default;
}

.image-container img {
    width: 100%; /* Ensure the image covers the container */
    height: auto;
    display: block; /* Initially show the image */
}

.hidden-text {
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    color: #000000;
    font-family: 'Josefin Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    z-index: 1; 
}

.revealed .hidden-text {
    visibility: visible;
    display: flex; 
}


.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.popup-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    z-index: 1001;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-weight: bold;
    z-index: 1002;
}

.popup-image {
    max-width: 100%;
    max-height: 80vh;
    display: block;
}


@media (min-width: 769px) {
    .desktop-menu {
      display: flex;
      width: 60%;
      margin:0 auto;
      margin-top:10px;
      justify-content:center;
      align-items:center;
    }
    .main-content {
    max-width: 800px;
    margin: auto;
    }
  }
  
@media (max-width: 768px) {
    .mobile-logo, .mobile-logo img {
        display: block;
        width: 60%; /* Set the logo width to 60% */
        margin: auto; /* Center the logo */
        height: auto; /* Maintain aspect ratio */
    }

    .mobile-menu {
        display: block;
        width: 100%;
        text-align: center;
    }

    .mobile-menu a {
        display: none;
        height: 60px;
        line-height: 60px;
        margin: 5px 0;
    }

    .mobile-menu a.is-visible {
        display: block;
    }

    .mobile-menu img {
        max-height: 100%;
        width: auto;
    }
    .banner-image, .text-box {
        width: 95%; /* Set the width to 95% on mobile devices */
        margin: 0 auto; /* Center the elements */
        margin-top: 25px;
    }

    .text-box {
        padding: 10px; /* Optional: adjust padding for mobile view if needed */
        margin-top: 25px;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    
}
