/* Footer Section - 3 Column Layout */
.site-footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 0 0;
  margin-top: 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

/* Column 1: Contact Information */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-logo-wrapper {
  width: 250px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-logo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-weight: bold;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #d0d0d0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-icon {
  font-size: 1.2rem;
  color: #ffb800;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border: 2px solid #ffb800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb800;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #ffb800;
  color: #1a1a1a;
  transform: translateY(-3px);
}

/* Column 2: Photo Gallery */
.footer-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffb800;
  margin: 0 0 10px 0;
}

.footer-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-thumb {
  aspect-ratio: 1;
  background: #2a2a2a;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #555;
  transition: transform 0.3s ease;
  cursor: pointer;
}

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

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Column 3: Links & Feedback */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-dropdown {
  position: relative;
}

.footer-select {
  width: 100%;
  padding: 15px 40px 15px 20px;
  background: #2a2a2a;
  color: white;
  border: 1px solid #444;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  appearance: none;
  transition: all 0.3s ease;
}

.footer-select:hover {
  border-color: #ffb800;
}

.footer-select:focus {
  outline: none;
  border-color: #ffb800;
}

.footer-dropdown::after {
  content: "▼";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffb800;
  pointer-events: none;
  font-size: 0.8rem;
}

.footer-feedback-btn {
  display: block;
  padding: 18px 30px;
  background: #ffb800;
  color: #1a1a1a;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.footer-feedback-btn:hover {
  background: #ffa500;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid #333;
  color: #999;
  font-size: 0.9rem;
}

.footer-credit {
  color: #ffb800;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 0 0;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-image-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .footer-social {
    justify-content: center;
  }

  .social-icon {
    width: 50px;
    height: 50px;
  }
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
  box-shadow: 0 0 50px rgba(255, 184, 0, 0.3);
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #ffb800;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
  line-height: 1;
  user-select: none;
}

.lightbox-close:hover {
  color: #ffa500;
  transform: rotate(90deg);
}

.gallery-thumb[data-image] {
  cursor: zoom-in;
}

.gallery-thumb[data-image]:hover {
  opacity: 0.8;
}
