
body,h1,h2,h3,h4,h5,h6 {font-family: "Raleway", sans-serif}

body, html {
  height: 100%;
  line-height: 1.8;
}

.projectColor1 {
  color: #1F375B!important;
}

.projectColor2 {
  color: #C55911!important;
}

.logo {
  width: 399px;
}

/* Full height image header */
.bgimg-1 {
  background-position: center;
  background-size: cover;
  background-image: url("./images/ZD1.jpg");
  min-height: 100%;
}

.w3-bar .w3-button {
  padding: 16px;
}


footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

/* .footer-company {
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: bold;
} */

/* Optional: Add more styling for links, address, etc. */
.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}
/* header */ 

header {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f0f0;
}

.container {
  display: flex;
  flex-direction: column; /* Display rows in a column */
  align-items: center;
}

.row {
  display: flex;
  justify-content: center;
}


.square {
  width: 100px;
  height: 100px;
  background-color: #3498db;
  color: #fff;
  text-align: center;
  line-height: 100px;
  margin: 10px;
  font-weight: bold;
  font-size: 18px;
  opacity: .7; /* Start with 0 opacity to make them initially invisible */
  transition: opacity 10s ease-out; /* Smooth opacity transition */
}

/* Media Query for responsiveness */
@media (max-width: 768px) {
  .footer-logo {
    width: 80px;
  }
}
   
/* Gallery */

*{
  padding: 0;
  margin: 0;
}

.container-gallery {
  max-width: 1024px;
  max-height: 100%;
  width: 90%;
  margin: auto;
  padding: 40px 0;
}

.title {
  margin-bottom: 2rem;
}

.photo-gallery{
  display: flex;
  gap: 20px;
}

.column {
  display: flex; 
  flex-direction: column;
  gap: 20px;
}

.photo img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 5px;
  object-fit: contain;
}

@media(max-width: 768px) {
  .photo-gallery {
      flex-direction: column;
  }
}

/* Add the following styles for the lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
}

.lightbox-content {
  display: inline-block;
  max-width: 90%;
  max-height: 90%;
  margin-top: 5%;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 5px;
  object-fit: contain;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
}