/* ── Social Wall ── */
.social-wall {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 32px 72px;
  flex-shrink: 0;
}

.social-wall-header {
  text-align: center;
  margin-bottom: 32px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.social-card {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #1a1a18;
  text-decoration: none;
}

.social-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(30%) brightness(0.85);
}

.social-card:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}

.social-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 21, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.social-card:hover .social-card-overlay {
  opacity: 1;
}

.social-card-overlay svg {
  width: 32px;
  height: 32px;
}

.social-card-overlay span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #52D4CC;
}

/* Platform badge — top-right corner */
.social-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.social-card:hover .social-badge {
  opacity: 0;
}

/* Follow row below grid */
.social-wall-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  border: 1px solid rgba(255,255,255,0.12);
  color: #f0f0f0;
  background: rgba(255,255,255,0.05);
}

.btn-social:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-social svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Stagger animation ── */
.social-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.social-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Video cards */
.social-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(30%) brightness(0.85);
}

.social-card:hover video {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}

@media (max-width: 700px) {
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .social-card:nth-child(8) { display: none; }
}

@media (max-width: 420px) {
  .social-grid { grid-template-columns: 1fr; }
}

/* ── Mobile nav (hamburger + full-screen overlay) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  position: fixed;
  top: 10px;
  right: 16px;
  z-index: 300;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #52D4CC;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: linear-gradient(rgba(23,23,21,0.85), rgba(23,23,21,0.85)), url('FATSOUTSIDE.jpeg') center top / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

.nav-overlay a {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f0f0f0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 24px;
  opacity: 0;
  transform: translateY(16px);
  transition: color 0.2s, opacity 0.35s, transform 0.35s;
}
.nav-overlay.open a                { opacity: 1; transform: translateY(0); }
.nav-overlay.open a:nth-child(2)   { transition-delay: 0.04s; }
.nav-overlay.open a:nth-child(3)   { transition-delay: 0.08s; }
.nav-overlay.open a:nth-child(4)   { transition-delay: 0.12s; }
.nav-overlay.open a:nth-child(5)   { transition-delay: 0.16s; }
.nav-overlay.open a:nth-child(6)   { transition-delay: 0.20s; }
.nav-overlay.open a:nth-child(7)   { transition-delay: 0.24s; }
.nav-overlay a:hover, .nav-overlay a.active { color: #52D4CC; }

.nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #bbb;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}
.nav-close:hover { color: #52D4CC; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  nav { display: none !important; }
  .site-top { position: relative; min-height: 48px; }
  .site-top header {
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    max-height: 120px;
    overflow: hidden;
  }
  .site-top.scrolled header { max-height: 0; padding: 0 !important; opacity: 0; }
}

/* ── WhatsApp float button ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.whatsapp-float svg { width: 30px; height: 30px; }

/* ── Footer right group ── */
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; padding-right: 72px; }

/* ── Made by signature ── */
.footer-madeby {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.75;
}
.footer-madeby span { opacity: 0.6; }
.footer-madeby img {
  height: 28px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(75%) sepia(49%) saturate(441%) hue-rotate(135deg);
}

/* ── Mobile footer ── */
@media (max-width: 768px) {
  footer {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    padding-bottom: 80px;
  }
  .footer-right {
    align-items: center;
    padding-right: 0;
  }
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
  .whatsapp-float svg { width: 26px; height: 26px; }
}
