
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}



/* Logo Styling */
header {
  text-align: center;
  padding: 0px;
}

.logo {
  max-width: 150px;
  padding: 50px;
}

/* Gallery Container */
.gallery-container {
  max-width: 1200px;
  margin: -50px auto;
  padding: 20px;
  text-align: center;
 
}

/* Tabs Styling */
.tab-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab-button {
  background-color: goldenrod;
  color: rgb(255, 255, 255);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  margin: 0 5px;
  border-radius: 5px;
  transition: 0.3s;
}

.tab-button:hover, .tab-button.active {
  background-color: rgb(0, 0, 0);
  color: #ffffff;
}

/* back Button */
#back-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  margin: 20px;
  border-radius: 5px;
  transition: 0.3s;
}

#back-btn:hover {
  background-color: #0056b3;
}


/* Gallery Sections */
.gallery-section {
  display: none;
  margin-bottom: 40px;
}

.gallery-section.active-gallery {
  display: block;
}

h3 {
  font-size: 24px;
  color: #000000;
  margin-bottom: 40px;
  border-bottom: 3px solid goldenrod;
  display: inline-block;
  padding-bottom: 10px;
}

/* Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 in a row */
}



/* Gallery Item */
.gallery-item {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

/* Ensure images keep their natural aspect ratio */
.gallery-item img {
  max-width: 100%;
  height: auto;
  display: block;
}

 .gallery-item:hover {
  transform: scale(1.1);
  transition: 0.1s ease-in-out;
}


/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 1);
  text-align: center;
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  margin-top: 50px;
}

.close {
  position: absolute;
  top: 20px;
  right: 100px;
  font-size: 50px;
  color: white;
  cursor: pointer;
}





/* Responsive Video Wrapper */
.video-item {
  width: 90%;
  max-width: 560px;
  margin: 0 auto;
}



.video-item iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* Maintains aspect ratio */
}

/* Video Description */
.video-description {
  font-size: 1rem;
  margin-top: 10px;
  color: #ffffff;
}





/* Responsive Design */
@media (max-width: 1024px) {  /* Tablets */
  .gallery {
      grid-template-columns: repeat(2, 1fr); /* 2 in a row */
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gallery {
      grid-template-columns: 1fr;
  }

  h3 {
      font-size: 1.5rem;
  }
}


/*footer*/

/* Bottom Footer Section */
.footerBottom {
  background-color: black;
  padding: 15px;
  text-align: center;

}

.footerBottom p {
  color: white;
  font-size: 1.1em;
}

/* Designer Link */
.designer {
  font-weight: 550;
  color: goldenrod;
  text-decoration: none;
  transition: 0.4s ease-in-out;
}

.designer:hover {
  color: white;
  transform: scale(1.1);
}

a {
  color:  rgb(32, 206, 218);
  font-size: 1.1em;
  text-decoration: none;
  transition: 0.4s ease-in-out;
}

a:hover {
  color: rgb(255, 213, 0);
}