/* ==========================================================================
   BARS GRAPHICS — brand tokens
   Colors sampled from the Bars Graphics logo. Each accent maps to one of
   the five things Bars Graphics covers (see #coverage in index.html).
   ========================================================================== */
:root {
  --purple: #9427A6;   /* Weddings */
  --cyan: #00B8E6;     /* Photo Booth & Artist */
  --orange: #FF8611;   /* Corporate & Broadcasting */
  --green: #7AC11D;    /* Parties */
  --pink: #E8399A;     /* Funerals */

  --ink: #14141a;
  --muted: #5b5b66;
  --paper: #ffffff;
  --paper-soft: #f7f7fa;
  --border: #ececf2;

  --font-display: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --radius: 14px;
  --shadow-soft: 0 20px 40px -20px rgba(20, 20, 26, 0.25);
  --container: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--muted); }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section-soft { background: var(--paper-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.eyebrow .dot-row { display: inline-flex; gap: 4px; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; }

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 { font-size: clamp(28px, 4vw, 38px); }
.section-head p { font-size: 17px; }

/* dot palette helpers */
.d-purple { background: var(--purple); }
.d-cyan { background: var(--cyan); }
.d-orange { background: var(--orange); }
.d-green { background: var(--green); }
.d-pink { background: var(--pink); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: #000; }

.btn-whatsapp {
  background: #25D366;
  color: #06301a;
}
.btn-whatsapp:hover { filter: brightness(1.05); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--ink); }

.btn-block { width: 100%; justify-content: center; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.brand-bars {
  display: inline-flex;
  gap: 3px;
}

.brand-bars span {
  width: 7px;
  height: 20px;
  border-radius: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover { color: var(--purple); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle svg { width: 26px; height: 26px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0 20px;
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  padding: 12px 4px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

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

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 84px 0 70px;
  text-align: center;
  overflow: hidden;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-dots .dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(38px, 7vw, 68px);
  margin-bottom: 18px;
}

.hero .tagline {
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.hero .tagline .sep { color: var(--border); margin: 0 10px; }

.hero .lead {
  max-width: 620px;
  margin: 0 auto 34px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.hero-location svg { width: 16px; height: 16px; flex-shrink: 0; }

.hero-bar {
  display: flex;
  margin-top: 64px;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
}
.hero-bar > span { flex: 1; }

/* ==========================================================================
   Capability cards (Photography / Video / Edits)
   ========================================================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.capability-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.capability-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.capability-icon svg { width: 26px; height: 26px; color: #fff; }

.capability-card h3 { font-size: 20px; margin-bottom: 10px; }
.capability-card p { margin: 0; font-size: 15px; }

/* ==========================================================================
   Coverage (event types, color coded to the logo dots)
   ========================================================================== */
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.coverage-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  border-top: 5px solid transparent;
  box-shadow: 0 10px 30px -18px rgba(20,20,26,0.2);
}

.coverage-card .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin: 0 auto 14px;
}

.coverage-card h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.coverage-card p {
  font-size: 13px;
  margin: 0;
}

/* ==========================================================================
   Package / pricing
   ========================================================================== */
.package-wrap { display: flex; justify-content: center; }

.package-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 46px 40px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--purple) 0 20%,
    var(--cyan) 20% 40%,
    var(--orange) 40% 60%,
    var(--green) 60% 80%,
    var(--pink) 80% 100%
  );
}

.package-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b8b8c4;
  margin-bottom: 10px;
}

.package-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 4px;
}

.package-price span {
  font-size: 16px;
  font-weight: 500;
  color: #b8b8c4;
}

.package-desc { color: #cfcfd9; margin-bottom: 28px; }

.package-list {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.package-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #e8e8ef;
}

.package-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--green);
  margin-top: 1px;
}

.package-note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
}

/* ==========================================================================
   About
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.fact-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.fact-card .fact-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.fact-card .fact-label {
  font-size: 13px;
  color: var(--muted);
}

.about-visual {
  background: var(--paper);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 40px;
}

.about-visual .dots-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.about-visual .dots-wall span {
  aspect-ratio: 1;
  border-radius: 50%;
}

.about-visual h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 4px;
}

.about-visual .about-visual-sub {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* ==========================================================================
   Gallery (real portfolio photos)
   ========================================================================== */
.photo-grid {
  columns: 3 260px;
  column-gap: 18px;
}

.photo-grid figure {
  margin: 0 0 18px;
  break-inside: avoid;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 30px -18px rgba(20, 20, 26, 0.3);
}

.photo-grid img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}

.photo-grid figure:hover img { transform: scale(1.04); }

.gallery-note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 32px;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card .icon svg { width: 22px; height: 22px; color: #fff; }

.contact-card h4 { font-size: 16px; margin-bottom: 4px; }
.contact-card p { margin: 0; font-size: 14px; }
.contact-card a.link { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-cta-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px 30px;
  text-align: center;
}

.contact-cta-card h3 { color: #fff; margin-bottom: 10px; }
.contact-cta-card p { color: #cfcfd9; margin-bottom: 24px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: #cfcfd9;
  padding: 56px 0 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 44px;
}

.footer-brand .brand { color: #fff; margin-bottom: 12px; }
.footer-brand p { max-width: 320px; font-size: 14px; }

.footer-cols {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8a8a96;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; }
.footer-col a:hover { color: #fff; }

.footer-bars {
  display: flex;
  height: 8px;
}
.footer-bars > span { flex: 1; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0;
  font-size: 13px;
  color: #8a8a96;
}

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.6);
  z-index: 90;
  transition: transform 0.15s ease;
}

.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .grid-gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: inline-flex; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 64px 0; }
}

@media (max-width: 440px) {
  .brand { font-size: 15px; white-space: nowrap; }
  .nav-cta .btn-whatsapp { padding: 10px 16px; font-size: 13px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .package-card { padding: 36px 26px; }
}
