/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.top-buffer {
  margin-top: 50px;
}

.gallery-container h1 {
  text-align: center;
  margin-top: 70px;
  font-family: "Droid Sans", sans-serif;
  font-weight: bold;
  color: #d24c00;
}
.white-popup {
  position: relative;
  background: #fff;
  padding: 20px;
  width: auto;
  max-width: 1280px;
  margin: 20px auto;
}
h2 {
  letter-spacing: 2px;
}

.spanColor {
  color: white;
}

.btn-home {
  color: #fff;
  background-color: #ffa447;
  border-color: #d24c00;
}

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

.homealign {
  margin-left: 55px;
}

.tz-gallery .thumbnail {
  padding: 0;
  margin-bottom: 30px;
  border-radius: 12px;
  border: none;
  transition: 0.15s ease-in-out;
  box-shadow: none !important;
  background: transparent !important;
}

.tz-gallery .thumbnail {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
}

.tz-gallery .thumbnail:hover {
 border: 5px solid #ef7717 !important;
 border-radius: 12px !important;
}

.tz-gallery .thumbnail img {
  transition: transform 0.5s ease;
  display: block;
  width: 100%;
}

.tz-gallery .thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.tz-gallery .thumbnail:hover img {
  transform: scale(1.1);
}

.tz-gallery .thumbnail:hover::before {
  background: #ef7717;
  opacity: 0.2;
}

.thumbnail a > img {
  border-radius: 8px;
}

.tz-gallery .thumbnail:hover .caption {
  background: #ef7717 !important;
}

.tz-gallery .lightbox img {
  border-radius: 4px 4px 0 0;
}
.lightbox {
  text-decoration: none !important;
}

.tz-gallery .caption {
  padding: 26px 30px;
  text-align: center;
  z-index: 0;
  position: relative;
  margin-top: -30%;
  background: #212529b2;
  max-height: 100px;
}

.tz-gallery .caption h3 {
  font-size: 28px;
  font-weight: 500;
}

.tz-gallery .caption p {
  font-size: 12px;
  color: #7b7d7d;
  margin: 0;
}

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

/* header */

.theme-toggle {
  cursor: pointer;
}

/* dark Mode */

body.dark {
  background-color: #121212;
  color: #ffffff;
}
body.dark header,
body.dark footer {
  background-color: #333;
  color: #fff;
}
