/* ============================================================
   cld.css — page-specific enhancements
   Scoped to .cld-page to avoid touching global styles
   ============================================================ */

/* ── Intro lead paragraph ── */
.cld-page .cld-intro {
  font-size: 1.15em;
  border-left: 3px solid #069494;
  padding-left: 1rem;
  color: #444;
  margin-bottom: 1.8rem;
}

/* ── Section headings ── */
.cld-page h2 {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.35rem;
  margin-bottom: 1.2rem;
}

/* ── Pricing card row ── */
.cld-pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

/* ── Individual pricing card ── */
.cld-page .pricing-block {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid #ddd;
  border-top: 3px solid #069494;
  border-radius: 3px;
  padding: 1.3rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.cld-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  margin: -1.3rem -1.5rem 1.2rem;
  width: calc(100% + 3rem);
  border-radius: 2px 2px 0 0;
}

.cld-page .pricing-block h3 {
  margin-top: 0;
  font-size: 1em;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cld-page .pricing-block p:last-child {
  margin-bottom: 0;
  font-size: 0.93em;
  color: #555;
}

/* ── Two-column list (Ideal For) ── */
@media (min-width: 580px) {
  .cld-col2 {
    columns: 2;
    column-gap: 2rem;
  }
}

/* ── Booking info callout ── */
.cld-callout {
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-left: 3px solid #069494;
  border-radius: 3px;
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.2rem;
}

/* ============================================================
   Testimonials / Reviews page  (Reviews.php)
   ============================================================ */

.rev-section {
  background: #fff;
  padding: 70px 20px 80px;
}

.rev-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.rev-eyebrow {
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #069494;
  margin: 0 0 0.5rem;
}

.rev-heading {
  font-size: 2.2em;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.rev-subhead {
  font-size: 1em;
  color: #666;
  margin: 0 0 2.5rem;
}

/* ── Grid ── */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.8rem;
  align-items: start;
}

/* ── Card ── */
.rev-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.6rem 1.5rem 1.4rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
}

.rev-stars {
  color: #f5a623;
  font-size: 1.15em;
  letter-spacing: 2px;
  margin-bottom: 0.9rem;
  line-height: 1;
}

.rev-quote {
  font-style: italic;
  color: #444;
  line-height: 1.7;
  font-size: 0.95em;
  flex: 1;
  margin: 0 0 1.4rem;
}

.rev-reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid #efefef;
  padding-top: 1rem;
}

.rev-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1.05em;
  flex-shrink: 0;
}

.rev-name {
  font-weight: 700;
  font-size: 0.93em;
  color: #1a1a1a;
  line-height: 1.3;
}

.rev-source {
  font-size: 0.8em;
  color: #999;
  margin-top: 1px;
}

/* ── CTA button row ── */
.rev-cta {
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .rev-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .rev-heading {
    font-size: 1.7em;
  }
  .rev-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Photography services intro paragraph  (Photography.php)
   ============================================================ */

.srv-intro {
  max-width: 800px;
  margin: 3.5rem auto 2.5rem;
  text-align: center;
  font-size: 1.05em;
  color: #555;
  line-height: 1.7;
  padding: 0 1rem;
}

/* ============================================================
   Photography services horizontal cards  (photography-new2.php)
   Photo left/right alternating, text on the other side
   ============================================================ */

.srv2-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 1rem 3rem;
  max-width: 1050px;
  margin: 0 auto;
}

.srv2-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: row;
  min-height: 300px;
}

/* Even cards flip: photo on right, text on left */
.srv2-card:nth-child(even) {
  flex-direction: row-reverse;
}

/* Photo zone */
.srv2-photo {
  flex: 0 0 42%;
  position: relative;
  background-size: cover;
  background-position: center top;
}

/* Fade from photo into white — right edge (photo-left cards) */
.srv2-photo::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255,255,255,0.5) 55%,
    #ffffff 100%
  );
}

/* Left edge fade for photo-right (even) cards */
.srv2-card:nth-child(even) .srv2-photo::after {
  right: auto;
  left: 0;
  background: linear-gradient(
    to left,
    transparent 0%,
    rgba(255,255,255,0.5) 55%,
    #ffffff 100%
  );
}

/* Text body */
.srv2-body {
  flex: 1;
  padding: 2rem 2.2rem;
  display: flex;
  flex-direction: column;
}

.srv2-eyebrow {
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #069494;
  margin: 0 0 0.4rem;
}

.srv2-name {
  font-size: 1.35em;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.3rem;
  line-height: 1.2;
}

.srv2-price {
  font-size: 0.92em;
  color: #555;
  margin: 0 0 0.8rem;
}

.srv2-desc {
  font-size: 0.9em;
  color: #666;
  line-height: 1.65;
  flex: 1;
  margin: 0 0 1.3rem;
}

.srv2-cta {
  display: inline-block;
  padding: 0.55rem 1.3rem;
  background: #069494;
  color: #fff;
  font-size: 0.85em;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s ease;
}

.srv2-cta:link,
.srv2-cta:visited {
  color: #fff;
  text-decoration: none;
}

.srv2-cta:hover,
.srv2-cta:focus {
  background: #046f6f;
  color: #fff;
  text-decoration: none;
}

/* Mobile: stack photo on top, text below */
@media (max-width: 680px) {
  .srv2-card,
  .srv2-card:nth-child(even) {
    flex-direction: column;
  }
  .srv2-photo {
    flex: none;
    height: 220px;
    width: 100%;
  }
  .srv2-photo::after,
  .srv2-card:nth-child(even) .srv2-photo::after {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    width: auto;
    height: 80px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.5) 55%, #fff 100%);
  }
  .srv2-body { padding: 1.4rem 1.6rem 1.8rem; }
}

/* ============================================================
   Review-Us page  (Review-Us.php)
   ============================================================ */

.ru-section {
  padding: 60px 20px 80px;
  background: #f9f8f4;
}

.ru-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ru-eyebrow {
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 0.4rem;
}

.ru-heading {
  font-size: 2em;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
}

.ru-subhead {
  font-size: 1em;
  color: #666;
  max-width: 600px;
  margin: 0 0 2.5rem;
}

.ru-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.ru-card {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  padding: 2rem 1.5rem 1.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ru-card-live {
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
}

.ru-card-dim {
  opacity: 0.45;
}

/* ── Icon area ── */
.ru-logo {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.ru-svg-google {
  width: 52px;
  height: 52px;
}

.ru-logo-facebook i { color: #1877f2; font-size: 3rem; }
.ru-logo-yelp i     { color: #d32323; font-size: 3rem; }
.ru-logo-linkedin i { color: #0a66c2; font-size: 3rem; }

/* ── Card content ── */
.ru-platform {
  font-size: 1em;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.6rem;
  letter-spacing: 0;
}

.ru-desc {
  font-size: 0.88em;
  color: #666;
  line-height: 1.6;
  flex: 1;
  margin: 0 0 1.2rem;
}

.ru-cta {
  font-size: 0.9em;
  font-weight: 600;
  color: #1a73e8;
  text-decoration: none;
}

.ru-cta:hover {
  text-decoration: underline;
  color: #1a73e8;
}

.ru-unset {
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bbb;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ru-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ============================================================
   Portfolio photo carousel band  (includes/photo-carousel.php)
   ============================================================ */

.ph-carousel-band {
  background: #0a0a0a;
  overflow: hidden;
}

.ph-carousel-eyebrow {
  max-width: 92%;
  margin: 0 auto;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
}

.ph-carousel-inner { padding-bottom: 2.5rem; }

.ph-carousel-inner .svc-image-carousel { opacity: 0; transition: opacity 0.2s; }

.ph-carousel-slide { padding: 0 3px; }

.ph-carousel-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.ph-carousel-band .slick-slider { margin-bottom: 0; }
.ph-carousel-band .slick-prev { left: 12px; z-index: 10; }
.ph-carousel-band .slick-next { right: 12px; z-index: 10; }
.ph-carousel-band .slick-prev:before,
.ph-carousel-band .slick-next:before { color: #069494; }

@media (max-width: 640px) {
  .ph-carousel-slide img { height: 160px; }
}

/* ============================================================
   Service page hero band  (svc-hero-band)
   Sits between the carousel and main content on service pages.
   Hidden by default via HTML comment — uncomment each page's
   block and add a background-image URL to activate.
   ============================================================ */

.svc-hero-band {
  position: relative;
  background: #111;
  background-size: cover;
  background-position: center;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-hero-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.svc-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 820px;
  width: 100%;
}
.svc-hero-band h1 {
  color: #fff;
  margin-bottom: 0.6rem;
  font-size: 2.2rem;
}
.svc-hero-band p.cld-intro {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin: 0;
}
@media (max-width: 640px) {
  .svc-hero-band { min-height: 200px; }
  .svc-hero-band h1 { font-size: 1.6rem; }
}

/* ============================================================
   Index editorial strips  (index.php)
   Full-bleed photo / text halves — no card, no shadow
   ============================================================ */

.idx-strip {
  display: flex;
  align-items: stretch;
  min-height: 480px;
}

.idx-strip--photo-right {
  flex-direction: row-reverse;
}

.idx-photo {
  flex: 0 0 46%;
  background-color: #f9f8f4;
  background-size: cover;
  background-position: center top;
  position: relative;
}

.idx-body {
  flex: 1;
  padding: 3.5rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f9f8f4;
}

.idx-eyebrow {
  font-size: 0.68em;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #069494;
  margin: 0 0 0.45rem;
}

.idx-heading {
  font-family: 'Didact Gothic', sans-serif;
  font-size: 1.95em;
  font-weight: 400;
  letter-spacing: 2px;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}

.idx-heading::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: #069494;
  margin-top: 0.5rem;
  margin-bottom: 0.8rem;
}

.idx-strip--featured {
  min-height: 600px;
}

.idx-body p {
  color: #555;
  line-height: 1.75;
  font-size: 0.97em;
  margin: 0 0 1rem;
}

.idx-body .circleList {
  margin-bottom: 1.4rem;
  font-size: 0.93em;
}

.idx-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.idx-reviews-band {
  /*background: #f9f8f4;*/
  background: #fff;
  padding: 40px 20px;
}

@media (max-width: 860px) {
  .idx-strip,
  .idx-strip--photo-right {
    flex-direction: column;
  }
  .idx-photo {
    flex: none;
    height: 280px;
    width: 100%;
    background-position: center top;
  }
  .idx-body {
    padding: 2rem 1.5rem 2.5rem;
  }
}
