body.no-scroll {
    overflow: hidden; /* Prevent body scrolling */
}
/* Style the collapsible button */
.btn-year {
    background-color: #f26522;
    color: #fff;
    border-radius: 50px;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    margin:20px 0;
}

/* Hover effect */
.btn-year:hover {
    background-color: #eb4f05;  /* Darker background on hover */
    color: #fff;  /* Slightly lighter text */
    transform: translateY(-2px);  /* Slight hover lift */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);  /* Increased shadow on hover */
}

/* When the button is expanded */
.btn-year[aria-expanded="true"] {
    background-color: #eb4f05;  /* Even darker background when active */
    color: #fff;  /* Lighter text when active */
}
/* Mosaic Gallery Container */
.mosaic-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-gap: 10px;
    grid-auto-rows: minmax(150px, auto);
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    background: #f1f1f1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.mosaic-item:hover img {
    transform: scale(1.05);
}

/* Lightbox Styling */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Prevents overflow issues */
}

.lightbox:target {
    display: flex; /* Show lightbox when targeted */
}

.lightbox-content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    width: 90%; /* Adjust to fit within viewport */
    height: 80vh; /* Adjust to fit within viewport */
}

.lightbox-content img {
    width: 100%; /* Ensures image scales correctly */
    height: auto; /* Maintain aspect ratio */
    max-height: 100%; /* Limit height to avoid overflow */
    object-fit: contain; /* Ensure the image fits within the container without distortion */
}

/* Close Button */
.lightbox-close {
    position: fixed; /* Fixed positioning for top-right of the window */
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.6);
    padding: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Lightbox Arrow Styles */
.lightbox-arrow {
    position: fixed; /* Fixed positioning for window sides */
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 1001; /* Ensure arrows are above lightbox */
}

.lightbox-arrow:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-arrow.left {
    left: 10px; /* Position on the left */
}

.lightbox-arrow.right {
    right: 10px; /* Position on the right */
}


.newsletter-card {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 15px;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.newsletter-card:hover {
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
}
.newsletter-card img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  flex-grow: 1;
}
.newsletter-card img:hover {
  opacity: 0.8;
}
.caption {
  margin-top: 10px;
  font-weight: bold;
}
.row-equal-height {
  display: flex;
  flex-wrap: wrap;
}