/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Inter', sans-serif;
  background: #f4f4f4;
  color: #0b0b0b;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 60px;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(15px);
}

.navbar h1 {
  font-family: 'Playfair Display', serif;
}

.navbar a {
  text-decoration: none;
  color: #2e2e2e;
}

/* HERO */
.gallery-hero {
  height: 50vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: white;
  text-align: center;

  background: linear-gradient(
    135deg,
    #627945,
    #2f3e21
  ),
    url('https://images.unsplash.com/photo-1505692794403-34d4982f68b5?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.gallery-hero h1 {
  font-size: 70px;
  font-family: 'Playfair Display', serif;
}

.gallery-hero p {
  margin-top: 10px;
}

/* SECTION */
.gallery-section {
  padding: 80px 60px;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
  color: #627945;
}

/* PHOTO GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;

  border-radius: 15px;
  cursor: pointer;

  transition: 0.4s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* VIDEO GRID */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.video-grid video {
  width: 100%;
  height: 250px;
  object-fit: cover;

  border-radius: 15px;
  background: black;
}

/* LIGHTBOX */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 85%;
}

#lightbox span {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
/* ================= MOBILE ALIGNMENT FIX ================= */
@media (max-width: 768px){

  /* KEEP 2 COLUMNS ALWAYS */
  .gallery-grid,
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* IMAGE SIZE FIX */
  .gallery-grid img,
  .video-grid video {
    height: 160px;
    border-radius: 10px;
  }

  /* SECTION PADDING REDUCE */
  .gallery-section {
    padding: 40px 15px;
  }

  /* HERO TEXT FIX */
  .gallery-hero h1 {
    font-size: 36px;
  }

  .gallery-hero p {
    font-size: 14px;
  }

  /* NAV FIX */
  .navbar {
    padding: 15px 20px;
  }

}
@media (max-width: 480px){
  .gallery-grid,
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

