.header .navbar-logo img{
    width: 80%;
    height: 80%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f6f7fb;
}

/* Section */
.gallery-section {
  max-width: 1250px;
  margin: 60px auto;
  padding: 0 20px;
}

.gallery-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Items */
.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  background: #000;
}

/* Wide Image */
.gallery-item.wide {
  grid-column: span 3;
  height: 480px;
  object-fit: cover;
  object-position: bottom;
}

/* Images */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* MAGIC LINE */
  transition: transform 0.6s ease;
}

/* Hover Effect */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* Normal Height */
.gallery-item:not(.wide) {
  height: 260px;
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 2;
    height: 300px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide {
    grid-column: span 1;
    height: 240px;
  }
}
