
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Gallery Section */
.gallery {
  z-index: -10;
  padding: 50px;
  text-align: center;
}

.gallery h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.gallery p {
  color: #666;
  margin-bottom: 30px;
}

.category {
  margin-bottom: 30px;
}

.category h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ff7f50;
}

.photos {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.gallery-img {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

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

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Video Section */
.videos {
  z-index: -10;
  padding: 50px;
  text-align: center;
  background: #fff;
}

.videos h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #333;
}

.videos p {
  color: #666;
  margin-bottom: 30px;
}

.video-category {
  margin-bottom: 40px;
}

.video-category h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ff7f50;
}

.video-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.video-card {
  width: 500px;
  background: #f4f4f9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.video-card iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.video-card p {
  padding: 10px;
  font-size: 1rem;
  color: #333;
  text-align: center;
}

.video-card:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-image {
  width: 160px; /* Adjust size as needed */
  margin-bottom: 10px;
}

.site-name {
  font-size: 28px;
  margin: 5;
}

.footer-links h3,
.footer-contact h3 {
  font-size:170%;
  width:300px;
  font-weight: bolder;
  padding-left:350px;
  margin-bottom: 10px;
}

.footer-links ul {
  padding-left:350px;
  list-style: none;
  padding: 0;
  font-size:150%;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  padding-left:350px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f90; /* Change to your theme color */
}

.footer-contact p {
  padding-left:350px;
  margin: 5px 0;
}

.footer-text {
  font-weight: bolder;
  padding-left:00px;
  display: block;
  margin-top: 130px;
  width: 100%;
  text-align: center;
  font-style: italic;
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
  .footer {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }
  .footer-logo {
    align-items: center;
  }
  .footer-links h3,
  .footer-contact h3 {
    padding-left: 0;
    width: auto;
    max-width: 100%;
  }
  .footer-links ul {
    padding-left: 0;
  }
  .footer-links a {
    padding-left: 0;
  }
  .footer-contact p {
    padding-left: 0;
  }
  .footer-text {
    margin-top: 28px;
  }
}

@media (max-width: 768px) {
  .gallery,
  .videos {
    padding: 36px 16px;
  }
  .photos {
    flex-wrap: wrap;
  }
  .gallery-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .video-card {
    width: 100%;
    max-width: min(500px, 100%);
  }
  .video-card iframe {
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 180px;
  }
}


  