/* ============================================================
   index.css — Home page styles
   Sections: Hero · Products · Trust Bar · Charity · CTA · Footer
   ============================================================ */

.hero {
  min-height: 100vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/website-images/desktop-bg.png');
  background-size: cover;
  background-position: center;
}

@media (max-width: 550px) {
  .hero-bg {
    background-image: url('/assets/website-images/mobile-bg.png');
  }
}

@media (min-width: 551px) and (max-width: 1000px) {
  .hero-bg {
    background-image: url('/assets/website-images/tab-bg.png');
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  max-width: 620px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.hero-eyebrow {
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.hero h1 {
  color: var(--white);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 8px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}
.hero h1 .accent {
  color: var(--gold);
  display: block;
}
.hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 440px;
  line-height: 1.75;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── SHOP OUR PRODUCTS ────────────────────────────────────────*/
.products-section {
  background: var(--white);
  padding: 72px 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.product-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-light);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }

.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-info h3 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--dark);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 12px;
  flex: 1;
}
.product-info .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.75rem;
  padding: 10px;
}

/* ── TRUST BAR ────────────────────────────────────────────────*/
.trust-bar {
  background: var(--black);
  padding: 32px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 8px 16px;
}
.trust-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245,197,24,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.trust-item .t-title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
}
.trust-item .t-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.42);
  max-width: 110px;
  line-height: 1.4;
}

/* ── CHARITY STRIP ────────────────────────────────────────────*/
.charity-strip {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.charity-strip::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: rgba(245,197,24,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.charity-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.charity-label {
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.charity-content h2 {
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  line-height: 1.15;
}
.charity-content h2 span { color: var(--gold); }
.charity-content p {
  color: rgba(255,255,255,0.62);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.8;
}
.charity-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
}
.c-stat {
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.c-stat:last-child { border-right: none; }
.c-stat .num {
  display: block;
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.c-stat .lbl {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.4;
}
.charity-media {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.charity-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── READY TO START (CTA) ─────────────────────────────────────*/
.cta-section {
  background: var(--white);
  padding: 80px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-content .section-label { margin-bottom: 8px; }
.cta-content h2 {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
  line-height: 1.15;
}
.cta-content h2 span { color: var(--gold); }
.cta-content > p {
  color: var(--gray-mid);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.75;
}
.cta-list {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--gray);
  font-weight: 500;
}
.cta-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--black);
  font-weight: 900;
  flex-shrink: 0;
}
.cta-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.cta-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── HOME RESPONSIVE ──────────────────────────────────────────*/
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .charity-inner  { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner      { grid-template-columns: 1fr; gap: 40px; }
  .charity-stats  { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .trust-bar-inner { justify-content: center; gap: 8px; }
  .trust-item      { min-width: 140px; }
  .products-grid   { grid-template-columns: 1fr 1fr; }
  .hero-btns       { flex-direction: column; }
  .charity-stats   { grid-template-columns: repeat(2, 1fr); gap: 12px; border-top: none; padding-top: 0; }
  .c-stat          { border-right: none; padding: 12px; background: rgba(255,255,255,0.04); border-radius: 8px; border: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ── OUR PROJECTS (home section) ─────────────────────────────*/
.projects-section {
  background: var(--bg-light);
  padding: 80px 0;
}

/* Masonry grid */
.projects-masonry {
  columns: 4;
  column-gap: 12px;
}
.proj-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}
.proj-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.proj-item:hover img {
  transform: scale(1.05);
}
.proj-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.proj-item:hover .proj-overlay {
  background: rgba(0,0,0,0.38);
}
.proj-zoom {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--black);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.proj-item:hover .proj-zoom {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.proj-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.proj-lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.plb-img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plb-img-wrap img {
  max-width: 88vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  transition: opacity 0.2s ease;
}
.plb-close {
  position: fixed;
  top: 18px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2001;
}
.plb-close:hover { background: rgba(255,255,255,0.22); }
.plb-nav {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2001;
}
.plb-nav:hover { background: rgba(255,255,255,0.22); }
.plb-prev { left: 16px; }
.plb-next { right: 16px; }
.plb-counter {
  position: fixed;
  bottom: 20px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-main);
  font-weight: 700; font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
  z-index: 2001;
}

/* Responsive */
@media (max-width: 1100px) { .projects-masonry { columns: 3; } }
@media (max-width: 768px)  { .projects-masonry { columns: 2; column-gap: 8px; } .proj-item { margin-bottom: 8px; } }
@media (max-width: 480px)  { .projects-masonry { columns: 1; } }