body{
  background: url('../images/color\ drop.jpg') center/cover repeat;
}
.hero {
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.4)), url('../images/color\ drop.jpg') center/cover no-repeat;
      color: #fff;
      padding: 80px 20px 80px 20px;
      margin: -20px -20px 20px -20px;
      width: 100%;
      height: max-content;
      overflow: hidden;
      text-align: center;
    }

    .hero-img {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 4px 8px rgb(0, 0, 0);
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 20px;
      letter-spacing: 2px;
      font-weight: bold;
    }
    .hero p {
      font-size: 1.3rem;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
      background: rgba(0,0,0,0.3);
      padding: 15px 20px;
      border-radius: 10px;
      display: inline-block;
    }
    .gallery {
      max-width: 1200px;
      margin: auto;
      padding: 20px;
    }
    .filter-menu {
      text-align: center;
      margin-bottom: 20px;
    }
    .filter-menu button {
      background: #fff;
      border: 1px solid #ccc;
      padding: 10px 15px;
      margin: 5px;
      cursor: pointer;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
    .filter-menu button:hover,
    .filter-menu button.active {
      background: #007bff;
      color: #fff;
    }
    .grid {
      margin-top: -80px;
      column-count: 3;
      column-gap: 15px;
    }
    .grid-item {
      display: inline-block;
      width: 100%;
      margin-bottom: 15px;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      cursor: pointer;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      background: #fff;
      transition: transform 0.3s ease;
    }
    .grid-item img,
    .grid-item video {
      width: 100%;
      display: block;
      object-fit: cover;
    }
    .grid-item:hover {
      transform: scale(1.03);
    }
    .video-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 40px;
      color: rgba(255,255,255,0.8);
      pointer-events: none;
      display: none;
    }
    .grid-item video + .video-overlay {
      display: block;
    }
    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }
    .lightbox-content {
      max-width: 90%;
      max-height: 80%;
    }
    .lightbox img, .lightbox video {
      width: 100%;
      height: auto;
    }
    .close-btn {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 30px;
      color: #fff;
      cursor: pointer;
    }
    .home-btn {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 28px;
      background: #007bff;
      color: #fff;
      border: none;
      border-radius: 25px;
      font-size: 1rem;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      transition: background 0.2s, transform 0.2s;
    }
    .home-btn:hover {
      background: #0056b3;
      transform: translateY(-2px) scale(1.04);
    }
    /* Responsive styles */
@media (max-width: 900px) {
  .hero h1 { font-size: 2.2rem; }
  .grid { column-count: 2; }
}

@media (max-width: 600px) {
  .hero { padding: 50px 10px 30px 10px; }
  .hero h1 { font-size: 1.5rem; }
  .grid { column-count: 1; margin-top: 0; }
  .gallery {
    padding: 10px;
  }
  .hero-img {
    width: 120px;
    height: 120px;
  }
  .hero p {
    font-size: 1rem;
    padding: 10px 10px;
  }
}

/* Example: Add more breakpoints as needed */
@media (max-width: 400px) {
  .hero h1 { font-size: 1.1rem; }
  .gallery { padding: 5px;}
}