/* ================================
   GLOBAL STYLES
   ================================ */

body {
  margin: 0;
  padding: 0;
  background-color: #000000;
  font-family: "Arial", sans-serif;
  color: #ffffff;
}

/* Wrapper for spacing */
.gallery-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ================================
   HERO BANNER
   ================================ */

.hero-banner {
  position: relative;
  height: 50vh;
  background-image: url("../assets/img/camera.png"); /* You can replace with a hero image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark overlay for dramatic effect */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* Text content */
.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  color: #D4A017;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
}

/* ================================
   GALLERY HEADER
   ================================ */

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-header h2 {
  font-size: 32px;
  color: #D4A017;
  margin-bottom: 8px;
}

.gallery-header p {
  opacity: 0.8;
}

/* ================================
   GALLERY GRID
   ================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Image styling */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid #D4A017;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover effects */
.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.6);
}

/* ================================
   LIGHTBOX MODAL
   ================================ */

.lightbox {
  display: none; /* Hidden by default */
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border: 3px solid #D4A017;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(212, 160, 23, 0.8);
}

/* Close button */
.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #D4A017;
  cursor: pointer;
  transition: 0.3s ease;
}

.close-btn:hover {
  color: #ffffff;
}

/* ================================
   RESPONSIVE TWEAKS
   ================================ */

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 32px;
  }
}
/* ================================
   FOOTER
   ================================ */

.site-footer {
  background-color: #000; /* matches your global background */
  padding: 50px 20px;
  text-align: center;
  border-top: 1px solid rgba(212, 160, 23, 0.3); /* subtle gold line */
  margin-top: 60px;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer-brand {
  font-size: 1.6rem;
  font-weight: bold;
  color: #D4A017;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 25px;
  opacity: 0.85;
}

.footer-links {
  margin-bottom: 25px;
}

.footer-links a {
  color: #ffffff;
  margin: 0 14px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #D4A017;
}

.footer-copy {
  font-size: 0.8rem;
  color: #888;
  margin-top: 10px;
}
