/* $primary: #b2e1e8;
$secondary: #98c4e0; */

body {
  background-color: #fff;
  min-height: 100vh;
  font: normal 16px sans-serif;
}

.gallery-container h1 {
  text-align: center;
  margin-top: 70px;
  /* font-family: 'Droid Sans', sans-serif; */
  /* font-family: "Source Sans Pro", sans-serif; */
  font-weight: bold;
  color: #58595a;
}

.gallery-container p.page-description {
  text-align: center;
  margin: 30px auto;
  font-size: 18px;
  color: #85878c;
}

/* Styles for the gallery */

.tz-gallery {
  padding: 40px 40px 0px 40px;
}

.tz-gallery .thumbnail {
  padding: 0;
  margin-bottom: 30px;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tz-gallery .img-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.tz-gallery .img-wrapper img {
  width: 100%;
  display: block;
}

/* Card metadata section (below the image) */
.tz-gallery .card-meta {
  padding: 10px 12px 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tz-gallery .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Tag chip base style */
.tz-gallery .tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  white-space: nowrap;
}

.tz-gallery .time-tag {
  background-color: #e8f4f8;
  color: #2a7a99;
}

.tz-gallery .location-tag {
  background-color: #eef5e8;
  color: #3a7a2a;
}

.tz-gallery .all-years-tag {
  background-color: #f5eef8;
  color: #7a2a99;
}

.baguetteBox-button {
  background-color: transparent !important;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.2s ease;
  background-color: #008cba;
}

.img-wrapper:hover .overlay {
  opacity: 1;
}

.text {
  color: white;
  font-size: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: lighter;
}

.more {
  font-family: "Nixie One", cursive;
  text-shadow: 1px 1px #a8a8a8;
}

/* Add to Calendar Button Styles */
.add-to-calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background-color: #b2e1e8;
  color: #1a5f70;
  text-decoration: none;
  border-radius: 20px;
  font-size: 13px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  align-self: flex-start;
}

.add-to-calendar-btn:hover {
  background-color: #98c4e0;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

/* Sync All Events Button */
.sync-all-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #b2e1e8 0%, #98c4e0 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 16px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(178, 225, 232, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sync-all-btn:hover {
  background: linear-gradient(135deg, #98c4e0 0%, #7ab8d4 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(152, 196, 224, 0.6);
  transform: translateY(-2px);
}

.sync-all-btn i {
  margin-right: 8px;
  font-size: 18px;
}
