/* ---------- RESET ---------- */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      /* font-family: "Poppins", sans-serif; */
      background: #fafafa;
    }

    /* ---------- HERO SECTION ---------- */
    .gallery-hero img {
      width: 100%;
      display: block;
      height: auto;
    }

    /* ---------- GALLERY SECTION ---------- */
    .gallery-section {
      background-color: #fafafa;
      padding: 60px 0;
    }

    .gallery-title {
      font-size: 2.4rem;
      font-weight: 700;
      color: #222;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      display: inline-block;
    }

    .gallery-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 70px;
      height: 3px;
      background: #ffb400;
    }

    .gallery-subtitle {
      color: #666;
      font-size: 1rem;
      max-width: 600px;
      margin: 10px auto 0;
    }

    /* ---------- GRID ---------- */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 50px;
    }

    /* ---------- ITEM ---------- */
    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      cursor: pointer;
      background: #000;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    }

    .gallery-item img {
      width: 100%;
      height: 270px;
      object-fit: cover;
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .gallery-item:hover img {
      opacity: 0.8;
      transform: scale(1.05);
    }

    /* ---------- OVERLAY ---------- */
    .item-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.65);
      color: white;
      opacity: 0;
      transition: opacity 0.4s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 15px;
    }

    .gallery-item:hover .item-overlay {
      opacity: 1;
    }

    .item-info h3 {
      font-size: 1.3rem;
      margin-bottom: 5px;
      font-weight: 600;
      color: #ffb400;
    }

    .item-info p {
      font-size: 1rem;
      color: #f2f2f2;
    }

    /* ---------- LIGHTBOX ---------- */
    .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.92);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .lightbox.open {
      opacity: 1;
      pointer-events: auto;
    }

    .lightbox-content {
      position: relative;
      max-width: 90%;
      max-height: 85%;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      animation: fadeInScale 0.4s ease;
    }

    @keyframes fadeInScale {
      from {
        transform: scale(0.9);
        opacity: 0;
      }

      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    .lightbox-content img {
      width: 100%;
      height: auto;
      max-height: 75vh;
      object-fit: contain;
    }

    .lightbox-caption {
      padding: 15px 20px;
      background: #fff;
      text-align: center;
    }

    .lightbox-caption h3 {
      font-size: 1.4rem;
      color: #2c3e50;
      margin-bottom: 5px;
    }

    .lightbox-caption p {
      color: #7f8c8d;
      font-size: 1rem;
    }

    .close-lightbox {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: #e74c3c;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
      z-index: 1001;
      border: none;
    }

    .close-lightbox:hover {
      background: #c0392b;
      transform: scale(1.05);
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 768px) {
      .gallery-title {
        font-size: 1.4rem;
      }

      .gallery-grid {
        gap: 15px;
      }

      .gallery-section{
        padding: 30px 0;
      }
    }

    @media (max-width: 576px) {
      .gallery-item img {
        height: 230px;
      }
    }