/* =========================================
   PARIKH GRAPHICS – COMPLETE STYLESHEET
   Pixel-perfect clone of parikhgraphics.in
   Dark theme: #1a1a1a bg, green accent
   ========================================= */

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #1a1a1a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Shared max-width wrapper */
.page-wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.navbar.sticky {
  background: rgba(18, 18, 18, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07);
}

.nav-wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 32px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.logo-sq {
  background: #2e7d5a;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 5px 9px;
  border-radius: 5px;
  letter-spacing: 0.04em;
}

.logo-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.logo-accent {
  color: #4caf84;
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  font-size: 0.88rem;
  font-weight: 500;
  color: #bbb;
  transition: color 0.25s;
}

.nav-menu a:hover {
  color: #fff;
}

.nav-btn {
  background: #2e7d5a !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  line-height: 1;
  transition: background 0.25s !important;
}

.nav-btn:hover {
  background: #3a9e72 !important;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 23px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.28s;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  background: #141414;
  display: flex;
  align-items: center;
  padding-top: 66px;
  position: relative;
  overflow: hidden;
}

/* Faint green radial behind photo */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(46, 125, 90, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 60px 32px;
  display: flex;
  align-items: center;
  gap: 64px;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Text side */
.hero-text {
  flex: 1;
  max-width: 500px;
}

.hero-text h1 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 18px;
  animation: fadeUp 0.7s ease both;
}

.hero-text p {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 34px;
  max-width: 400px;
  animation: fadeUp 0.7s ease 0.12s both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.22s both;
}

/* Green button */
.btn-fill {
  display: inline-block;
  background: #2e7d5a;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  transition: background 0.25s, transform 0.2s;
}

.btn-fill:hover {
  background: #3a9e72;
  transform: translateY(-1px);
}

/* Ghost border button */
.btn-border {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 11px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  transition: border-color 0.25s, background 0.25s;
}

.btn-border:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* Photo side */
.hero-img-wrap {
  flex: 0 0 auto;
  animation: fadeIn 0.9s ease 0.1s both;
}

.hero-img {
  width: clamp(260px, 32vw, 400px);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  background: #272727;
  transition: transform 0.4s ease;
}

.hero-img-wrap:hover .hero-img {
  transform: scale(1.02);
}

/* =========================================
   SERVICES HEADING TAG (pill badge)
   ========================================= */
.services-heading {
  padding: 80px 0 16px;
}

/* The pill-shaped "Services" tag */
.services-tag {
  display: block;
  margin: 0 auto;
  text-align: center;
  border: 1.5px solid #2e7d5a;
  border-radius: 999px;
  color: #256551;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 40px;
  background: transparent;
  cursor: default;
}

/* =========================================
   SERVICE SECTIONS
   ========================================= */
.service-section {
  padding: 12px 0;
}

/* Dark rounded card — wraps the whole service block */
.service-card {
  background: #222222;
  border-radius: 14px;
  padding: 28px 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.service-info {
  margin-bottom: 28px;
}

.service-info h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.service-info p {
  font-size: 0.88rem;
  color: #888;
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* Outline button — exactly like original "View Work →" */
.btn-outline {
  display: inline-block;
  border: 1.5px solid #fff;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.25s, color 0.25s;
}

.btn-outline:hover {
  background: #fff;
  color: #141414;
}

/* 3-column image grid inside the card */
.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  /* YouTube thumbnails are 16:9 */
  background: #333;
}



.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.gallery-img-wrap:hover img {
  transform: scale(1.04);
}

/* =========================================
   INVITATION PLACEHOLDER CARDS
   ========================================= */
.invite-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.inv-card {
  border-radius: 12px;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  position: relative;
}

.card-1 {
  background: linear-gradient(135deg, #2d1f3d, #4a3060);
}

.card-2 {
  background: linear-gradient(135deg, #1a2f1a, #2d5a2d);
}

.card-3 {
  background: linear-gradient(135deg, #1a1a2f, #2d2d5a);
}

.inv-card-inner {
  text-align: center;
}

.inv-ornament {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.inv-type {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.inv-names {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.inv-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.inv-venue {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  position: relative;
  background: #111;
  padding: 96px 32px;
  text-align: center;
  overflow: hidden;
}

/* Polka-dot pattern (exactly like the original) */
.cta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.cta-content p {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.btn-cta {
  display: inline-block;
  background: #2e7d5a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.btn-cta:hover {
  background: #3a9e72;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(46, 125, 90, 0.35);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: #0f0f0f;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 32px;
}

.footer-main {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: #666;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.85rem;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.footer-socials a:hover {
  background: #2e7d5a;
  border-color: #2e7d5a;
  color: #fff;
}

/* =========================================
   BACK TO TOP
   ========================================= */
.back-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 42px;
  height: 42px;
  background: #2e7d5a;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.25s, transform 0.2s;
  z-index: 1000;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover {
  background: #3a9e72;
  transform: translateY(-2px);
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 860px) {
  .hero-wrap {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 36px;
    padding: 52px 32px 48px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-img {
    width: 100%;
    max-width: 340px;
  }

  .invite-placeholder {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {

  /* Mobile nav */
  .nav-menu {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: rgba(14, 14, 14, 0.97);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 32px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-menu.open {
    display: flex;
  }

  .burger {
    display: flex;
  }

  .services-heading {
    padding: 60px 0 8px;
  }

  .strip-item {
    width: 220px;
    height: 134px;
  }

  .strip-item.square {
    width: 200px;
    height: 200px;
  }

  .invite-placeholder {
    grid-template-columns: 1fr;
  }

  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cta-section {
    padding: 72px 24px;
  }

  .page-wrap {
    padding: 0 20px;
  }

  .nav-wrap {
    padding: 0 20px;
  }
}