@charset "utf-8";
/* === GALLERY PAGE === */
.hero-gallery {
  background: url('/images/kitchen-lighting.webp') center center/cover no-repeat;
  position: relative;
  padding: 6rem 1rem;
  color: white;
  text-align: left;
}
.hero-gallery .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
  backdrop-filter: blur(1.5px);
  z-index: 1;
}
.hero-gallery .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-gallery  h1 {
  font-size: 3.5rem;
  font-weight: 900;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  margin-bottom: 1.5rem;
}
.hero-gallery p {
  font-size: 1.6rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  margin-bottom: 2.5rem;
}


.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-subline {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #fff;
}

.hero-subline a.hero-phone {
  color: #ff6b00;
  font-weight: bold;
  text-decoration: none;
}

.hero-subline a.hero-phone:hover {
  color: #d65921;
  text-decoration: underline;
}

.hero-filters {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
  z-index: 2;
}

.filter-btn {
  background: #fff;
  color: #111;
  border: 1px solid #ccc;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 4px;
}

.filter-btn.active,
.filter-btn:hover {
  background: #ff6b00;
  color: #fff;
  border-color: #ff6b00;
}

.hero-filters {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
  z-index: 2;
}

.filter-btn {
  background: #fff;
  color: #111;
  border: 1px solid #ccc;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 4px;
}

.filter-btn.active,
.filter-btn:hover {
  background: #ff6b00;
  color: #fff;
  border-color: #ff6b00;
}

@media (max-width: 768px) {
  .hero-filters {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 100%;
    text-align: center;
  }
}

.showcase-section {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, #f4f4f4, #e6e6e6);
  border-top: 3px solid #ff6b00;
  border-bottom: 3px solid #ff6b00;
}

.showcase-section h2,
.showcase-section h3 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #111;
}

/* === CLEANER SHOWCASE GRID === */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

/* === INDIVIDUAL IMAGE CARD === */
.showcase-item {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 3px solid black;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: zoom-in;
}

.showcase-item:hover {
  transform: scale(1.015);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

/* === IMAGE INSIDE CARD === */
.showcase-item img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}



/* === MOBILE TWEAKS === */
@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .showcase-item img {
    max-height: 400px;
  }
}