/* ================================================================
   Photobee — styles.css   (mobile-first)
   Base styles = mobile. Larger screens layer on top.
   ================================================================ */

:root {
  --bee-yellow: #ffb22e;
  --bee-gold:   #f7941d;
  --bee-black:  #050505;
  --bee-red:    #ff3b30;
  --bee-teal:   #2ed3d6;
  --bee-mint:   #baf5ee;
  --cream:      #fff8eb;
  --soft-yellow:#fff0c7;
  --ink:        #101010;
  --muted:      #5f5f5f;
  --border:     rgba(5,5,5,.12);
  --nav-h:      62px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

/* Anchor links clear the sticky navbar */
[id] { scroll-margin-top: calc(var(--nav-h) + .75rem); }


/* ── Navbar ──────────────────────────────────────── */
.navbar { backdrop-filter: blur(18px); }

.brand-logo { width: 126px; height: auto; }

@media (min-width: 576px)  { .brand-logo { width: 148px; } }
@media (min-width: 992px)  { .brand-logo { width: 174px; } }

.nav-link { font-weight: 700; color: var(--ink); }
.nav-link:hover { color: var(--bee-gold); }


/* ── Typography ──────────────────────────────────── */
.fw-black { font-weight: 900; letter-spacing: -.055em; }

/* Hero heading — responsive without Bootstrap's .display-* conflicts */
.hero-title {
  font-size: clamp(2rem, 8vw, 4.5rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.055em;
}

.section-title {
  font-size: clamp(1.7rem, 5.5vw, 3.4rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.04em;
}

.hero-copy,
.section-copy { color: var(--muted); line-height: 1.75; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .38rem .75rem;
  border: 2px solid var(--bee-black);
  border-radius: 999px;
  background: var(--bee-yellow);
  color: var(--bee-black);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 3px 3px 0 var(--bee-black);
}

.eyebrow.light { background: var(--bee-teal); }


/* ── Buttons ─────────────────────────────────────── */
.btn-honey {
  background: var(--bee-yellow);
  border: 2px solid var(--bee-black);
  color: var(--bee-black);
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--bee-black);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.btn-honey:hover,
.btn-honey:focus {
  background: var(--bee-gold);
  border-color: var(--bee-black);
  color: var(--bee-black);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--bee-black);
}

@media (min-width: 768px) {
  .btn-honey { box-shadow: 6px 6px 0 var(--bee-black); }
  .btn-honey:hover,
  .btn-honey:focus { transform: translate(3px,3px); box-shadow: 3px 3px 0 var(--bee-black); }
}

.btn-outline-dark { border-width: 2px; font-weight: 900; }

.service-area { color: var(--ink); }


/* ── Spacing ─────────────────────────────────────── */
.section-padding { padding: 3.25rem 0; }

@media (min-width: 768px) { .section-padding { padding: 5rem 0; } }
@media (min-width: 1200px){ .section-padding { padding: 6rem 0; } }

.min-vh-75 { min-height: 75vh; }
.bg-soft    { background: var(--cream); }
.bg-dark    { background: var(--bee-black) !important; }


/* ── Hero ────────────────────────────────────────── */
.hero-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(255,178,46,.34), transparent 24rem),
    radial-gradient(circle at 92% 16%, rgba(46,211,214,.24), transparent 22rem),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.hero-card {
  position: relative;
  max-width: 420px;
  min-height: 260px;
  padding: 1.75rem 1.25rem;
  border: 3px solid var(--bee-black);
  border-radius: 1.5rem;
  background:
    linear-gradient(135deg, rgba(255,178,46,.22), rgba(186,245,238,.45)),
    #fff;
  box-shadow: 8px 8px 0 var(--bee-black);
}

@media (min-width: 576px) {
  .hero-card { min-height: 320px; padding: 2.25rem 1.75rem; max-width: 500px; }
}
@media (min-width: 992px) {
  .hero-card {
    max-width: 560px;
    min-height: 440px;
    padding: 3rem 2rem;
    border-width: 4px;
    box-shadow: 18px 18px 0 var(--bee-black);
  }
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 12px 14px rgba(0,0,0,.12));
}

/* Decorative badge cards — hidden on xs, visible from sm */
.snapshot-card {
  display: none;
  position: absolute;
  z-index: 3;
  padding: .65rem .9rem;
  border: 2px solid var(--bee-black);
  border-radius: .9rem;
  background: #fff;
  font-weight: 900;
  font-size: .85rem;
  box-shadow: 5px 5px 0 var(--bee-black);
}

@media (min-width: 576px) {
  .snapshot-card  { display: block; }
  .snapshot-one   { right: -1rem;  top: 1.5rem;   transform: rotate(5deg);  }
  .snapshot-two   { left:  -1rem;  bottom: 2rem;   transform: rotate(-4deg); }
}
@media (min-width: 992px) {
  .snapshot-card { padding: .8rem 1rem; border-width: 3px; box-shadow: 8px 8px 0 var(--bee-black); }
  .snapshot-one  { right: -1rem; top: 2rem; }
  .snapshot-two  { left:  -1rem; bottom: 3rem; }
}

.hero-orb {
  display: none;
  position: absolute;
  border-radius: 999px;
  border: 3px solid var(--bee-black);
}

@media (min-width: 576px) {
  .hero-orb { display: block; }
  .orb-one  { width: 54px; height: 54px; background: var(--bee-red);  right: 2.5rem; bottom: 1.75rem; }
  .orb-two  { width: 36px; height: 36px; background: var(--bee-teal); left:  2.5rem; top:    2rem;    }
}
@media (min-width: 992px) {
  .orb-one { width: 72px; height: 72px; right: 3rem; bottom: 2.25rem; }
  .orb-two { width: 44px; height: 44px; left:  3rem; top:    2.5rem;  }
}


/* ── Pricing ─────────────────────────────────────── */
.pricing-card,
.feature-pill,
.event-card,
.cta-card {
  border: 2px solid var(--bee-black);
  border-radius: 1.25rem;
}

@media (min-width: 768px) {
  .pricing-card,
  .feature-pill,
  .event-card,
  .cta-card { border-width: 3px; border-radius: 1.5rem; }
}

.pricing-card {
  padding: 1.5rem;
  background: #fff;
  box-shadow: 5px 5px 0 var(--bee-black);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

@media (min-width: 768px) {
  .pricing-card { padding: 2rem; box-shadow: 10px 10px 0 var(--bee-black); }
  .pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 14px 14px 0 var(--bee-black);
  }
}

.pricing-card.featured { background: var(--soft-yellow); }
.pricing-card h3        { font-weight: 900; }

.price {
  font-size: clamp(2.5rem, 9vw, 4.25rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.06em;
}


/* ── Included ────────────────────────────────────── */
.feature-pill {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: 58px;
  padding: .9rem;
  background: #fff;
  font-weight: 700;
  box-shadow: 4px 4px 0 var(--bee-black);
}

@media (min-width: 768px) {
  .feature-pill { min-height: 82px; padding: 1.15rem; gap: .8rem; box-shadow: 6px 6px 0 var(--bee-black); }
}

.check-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bee-teal);
  border: 2px solid var(--bee-black);
  font-weight: 900;
  font-size: .85rem;
}

@media (min-width: 768px) {
  .check-mark { flex: 0 0 34px; width: 34px; height: 34px; font-size: 1rem; }
}


/* ── Events ──────────────────────────────────────── */
.event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}

@media (min-width: 576px) { .event-grid { grid-template-columns: repeat(3, 1fr); gap: .75rem; } }
@media (min-width: 992px)  { .event-grid { grid-template-columns: repeat(5, 1fr); gap: 1rem;   } }

.event-card {
  display: grid;
  place-items: center;
  min-height: 90px;
  padding: .9rem;
  background: linear-gradient(135deg, var(--bee-yellow), var(--bee-gold));
  color: var(--bee-black);
  text-align: center;
  font-size: .9rem;
  font-weight: 900;
  box-shadow: 4px 4px 0 rgba(255,255,255,.18);
}

@media (min-width: 576px) { .event-card { min-height: 110px; font-size: .95rem; } }
@media (min-width: 992px)  { .event-card { min-height: 150px; font-size: 1.1rem; box-shadow: 8px 8px 0 rgba(255,255,255,.18); } }


/* ── Gallery ─────────────────────────────────────── */

/* Button — bare click target only, no layout or visual styling here.
   overflow:hidden on <button> is unreliable on Chrome Android.
   All visual work is on the inner <span>. */
.gallery-thumb {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0 !important;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.gallery-thumb:focus-visible .gallery-thumb-inner {
  outline: 3px solid var(--bee-yellow);
  outline-offset: 2px;
}

/* Inner span — owns the square crop, border, shadow, overflow.
   overflow:hidden on a <span> works on every browser without exception. */
.gallery-thumb-inner {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 100%;   /* height = width → perfect square */
  overflow: hidden;
  border-radius: .6rem;
  border: 2px solid var(--bee-black);
  box-shadow: 3px 3px 0 var(--bee-black);
  background: var(--cream);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

@media (min-width: 576px) {
  .gallery-thumb-inner { border-width: 3px; border-radius: .9rem; box-shadow: 4px 4px 0 var(--bee-black); }
}
@media (min-width: 768px) {
  .gallery-thumb-inner { border-radius: 1rem; box-shadow: 6px 6px 0 var(--bee-black); }
  .gallery-thumb:hover .gallery-thumb-inner { transform: translateY(-4px); box-shadow: 10px 10px 0 var(--bee-black); }
}

/* Image — fills the inner span */
.gallery-thumb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .gallery-thumb-img { transition: transform 300ms ease; }
  .gallery-thumb:hover .gallery-thumb-img { transform: scale(1.04); }
}

/* Lightbox modal */
.gallery-modal-content {
  background: #0d0d0d;
  border: none;
  border-radius: 0;
  overflow: hidden;
}

@media (min-width: 576px) {
  .gallery-modal-content { border: 3px solid var(--bee-black); border-radius: 1.25rem; }
}
@media (min-width: 768px) {
  .gallery-modal-content { border-radius: 1.5rem; }
}

.gallery-modal-img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

@media (min-width: 576px) { .gallery-modal-img { max-height: 82vh; border-radius: .5rem; } }

/* Larger tap targets for carousel arrows on mobile */
.gallery-modal-content .carousel-control-prev,
.gallery-modal-content .carousel-control-next { width: 18%; }

@media (min-width: 576px) {
  .gallery-modal-content .carousel-control-prev,
  .gallery-modal-content .carousel-control-next { width: 12%; }
}

.gallery-counter { font-weight: 700; letter-spacing: .04em; }


/* ── CTA ─────────────────────────────────────────── */
.cta-section {
  background:
    radial-gradient(circle at 12% 24%, rgba(255,59,48,.12), transparent 18rem),
    radial-gradient(circle at 88% 70%, rgba(46,211,214,.18), transparent 18rem),
    #fff;
}

.cta-card {
  padding: clamp(1.75rem, 6vw, 4.5rem);
  background: var(--cream);
  box-shadow: 6px 6px 0 var(--bee-black);
}

@media (min-width: 768px) { .cta-card { box-shadow: 14px 14px 0 var(--bee-black); } }

.cta-card .section-copy { max-width: 650px; }


/* ── Footer ──────────────────────────────────────── */
.footer { background: var(--bee-black); color: #fff; }

.footer a { color: var(--bee-yellow); font-weight: 800; text-decoration: none; }
.footer a:hover { text-decoration: underline; }


/* ── Facebook link ───────────────────────────────── */
.facebook-link { font-weight: 700; color: #111; }

.facebook-link::before {
  content: "f";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  margin-right: .4rem;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1;
}

.facebook-link:hover { color: #1877f2; }
