/* Premium iOS-style floating UI (mobile-first)
   - Mobile-first styles, subtle blur, rounded cards, fluid spacing
   - Brand colors: peacock #005f73 | teal #0a9396 | gold #d4af37
*/
:root{
  --peacock: #005f73;
  --teal: #0a9396;
  --gold: #d4af37;
  --gold-light: #f0d060;
  --glass-bg: rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.15);
  --muted: rgba(255,255,255,0.6);
}

/* Ensure hero is full-bleed and tall on mobile */
.hero-section{ position:relative; min-height:100svh; display:flex; align-items:center; justify-content:center; }
.hero-background .hero-bg-image{ object-fit:cover; width:100%; height:100%; position:absolute; left:0; top:0; }
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,31,41,0.25) 0%,
    rgba(0,31,41,0.55) 55%,
    rgba(0,31,41,0.80) 100%
  );
}
.hero-content{ position:relative; z-index:20; width:100%; padding:32px 24px 48px; box-sizing:border-box; text-align:center; }

/* ============================================
   HERO LOGO — ICONIC CLICKS
   The most important element on the page.
   ============================================ */
.hero-logo-wrapper {
  margin-bottom: 28px;
}

.hero-stunning-logo {
  margin: 0;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* ICONIC — large, Cinzel, gold gradient */
.logo-iconic {
  font-family: 'Cinzel', serif;
  font-size: clamp(3.2rem, 12vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f0d060 0%, #d4af37 40%, #fff8e0 70%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 6px 20px rgba(212,175,55,0.55));
  display: inline-block;
}

/* Gold accent bar between ICONIC and CLICKS */
.logo-divider {
  width: clamp(60px, 18vw, 120px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal), transparent);
  margin: 10px 0;
  border-radius: 2px;
}

/* CLICKS — small, Montserrat, peacock teal */
.logo-clicks {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.85rem, 2.8vw, 1.5rem);
  font-weight: 300;
  letter-spacing: clamp(0.3em, 2vw, 0.6em);
  color: #94d5dc;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(10,147,150,0.6);
}

/* Poetic script subtitle */
.hero-poetic-subtitle {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.8rem, 6vw, 3rem);
  color: rgba(255,255,255,0.85);
  margin-top: 20px;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  transform: rotate(-1.5deg);
  display: inline-block;
  line-height: 1.3;
}

/* Hide old hero title/subtitle tags if present */



/* Explore Our Work button */
.btn-gold{
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  color: #1a0a00;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(212,175,55,0.5);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background-position 0.4s ease, transform 0.2s ease;
}
.btn-gold:hover{ background-position: right center; transform: translateY(-2px); }

/* ============================================
   HERO CTA — Single gold button, centered
   ============================================ */
.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
}

/* ============================================
   FLOATING BOOKING CARD
   Desktop: absolute bottom-right corner
   Mobile: inline premium card below the CTA
   ============================================ */
@media (max-width: 768px) {
  .floating-card {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    margin: 22px auto 0;
    max-width: 340px;
    width: 100%;
  }
  /* Hero content: pad bottom so scroll indicator never overlaps */
  .hero-content {
    padding-bottom: 88px !important;
  }
  /* Scroll indicator: just the bare arrow on mobile, no text */
  .scroll-indicator span { display: none; }
  .scroll-arrow { margin-top: 0; font-size: 1.4rem; }
}

/* ============================================
   WEDDING / SECTION CTA BUTTON
   Peacock-to-teal gradient pill with shimmer
   ============================================ */
.btn-wedding {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--peacock) 0%, var(--teal) 100%);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow: 0 8px 28px rgba(0,95,115,0.45);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-wedding::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.btn-wedding:hover::before { left: 125%; }
.btn-wedding:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,95,115,0.55); }

/* ============================================
   iOS-STYLE FLOATING BOOKING CARD
   ============================================ */
.floating-card{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 12px 16px 12px 12px;
  max-width: 420px;
  width: 100%;
  background: rgba(0, 20, 28, 0.65);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  position: absolute;
  right: 40px;
  bottom: 36px;
  max-width: 360px;
  margin-top: 0;
}

@media (max-width: 768px) {
  /* On mobile: hide the complex floating booking card.
     A simpler "Book a Session" button is added directly in the CTA group. */
  .floating-card {
    display: none !important;
  }
}
.fc-thumb {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid rgba(212,175,55,0.4);
}
.floating-card .fc-thumb img{ width:100%; height:100%; object-fit:cover; }
.floating-card .fc-body{ flex:1; text-align: left; }
.floating-card .fc-title{
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 13px;
  color: #ffffff; margin: 0 0 3px;
}
.floating-card .fc-sub{
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.floating-card .fc-badge{
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 3px;
  display: block;
}
.floating-card .fc-cta{ flex-shrink:0; }
.floating-card .fc-cta a{
  display: inline-block;
  padding: 8px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a0a00;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

/* Floating FAB (bottom-right) */
.fab{
  position: fixed; right: 16px; bottom: 24px; z-index: 60;
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--peacock), var(--teal));
  border: 1.5px solid rgba(212,175,55,0.4);
  box-shadow: 0 8px 24px rgba(0,95,115,0.55);
}
.fab a{ text-decoration:none; font-size:22px; }

/* Photo grid: do NOT override home.css grid — it handles wedding/cinematic/events correctly.
   Only add enhancements: rounded corners, overlay hover, border accents. */
.photo-item{ border-radius:10px; overflow:hidden; position:relative; transition: transform 0.3s ease; }
.photo-item:hover { transform: scale(1.02); z-index:2; }
.photo-item img{ width:100%; height:100%; object-fit:cover; display:block; }
.photo-overlay{ position:absolute; left:0; right:0; bottom:0; padding:12px 14px; background:linear-gradient(180deg, transparent, rgba(0,20,28,0.65)); border-bottom: 2px solid rgba(212,175,55,0.4); }
.photo-label{ color:white; font-weight:700; font-size:12px; font-family:'Montserrat',sans-serif; letter-spacing:0.05em; }

/* ============================================
   WORK SECTIONS — Brand Accent Styling
   ============================================ */
.work-section{ padding: 48px 20px; }
.work-container{ display:grid; grid-template-columns: 1fr; gap:28px; }
.work-story{ order:2; }
.work-photos{ order:1; }

/* Peacock accent bar at top of each section */
.work-section::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 2px;
  margin-bottom: 32px;
}

/* Why-section brand treatment */
.why-section {
  background: linear-gradient(160deg, #001f29 0%, #003040 55%, #001a24 100%);
  padding: 60px 20px;
  position: relative;
}
.why-section::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 2px;
  margin: 0 auto 32px;
}
/* Override home.css light card defaults inside why-section */
.why-section .why-card {
  background: transparent !important;
  border-top: none !important;
  box-shadow: none !important;
}
.why-section .section-heading { color: #ffffff !important; }
.why-icon { color: var(--gold) !important; }

/* Contact section peacock accent */
.contact-section {
  background: linear-gradient(150deg, #001f29 0%, #003845 50%, #001f29 100%);
}
.contact-section .section-label { color: var(--gold) !important; }
.contact-section .section-heading { color: #ffffff !important; }
.contact-text { color: rgba(255,255,255,0.75) !important; }
.contact-item h4 { color: var(--gold) !important; }
.contact-item p, .contact-item a { color: rgba(255,255,255,0.85) !important; }

/* ============================================
   POETIC STORYTELLING STYLES
   ============================================ */
.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.section-heading {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.story-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
    font-weight: 300;
}

.story-quote {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: var(--peacock);
    margin: 24px 0;
    padding-left: 20px;
    border-left: 2px solid var(--gold);
    line-height: 1.4;
}

.why-header .section-heading {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 400;
}

.why-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: var(--peacock);
    margin-top: 8px;
}

.contact-info .section-heading {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 400;
}

.contact-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 24px;
    font-weight: 300;
}

/* Larger view (tablet/desktop) */
@media(min-width:900px){
  .work-container{ grid-template-columns: 1fr 1fr; gap: 40px; }
  .work-story{ order: unset; }
  .work-photos{ order: unset; }
  .floating-card{ position:absolute; right:40px; bottom:36px; max-width:360px; margin-top:0; }
  .fab{ right:28px; bottom:28px; }
  .work-section{ padding: 72px 60px; }
  .why-section{ padding: 80px 60px; }
}

/* Smooth appear animation */
.fade-in{ animation: floatIn .9s cubic-bezier(.22,.9,.36,1) both }
@keyframes floatIn{ from{ transform: translateY(12px); opacity:0 } to{ transform:translateY(0); opacity:1 } }

/* Accessibility focus */
.btn:focus, .btn-gold:focus, .carousel-btn:focus{ outline:3px solid rgba(10,140,130,0.12); outline-offset:4px }

/* ============================================
   HERO TITLE — MOBILE-FIRST LETTER SPACING FIX
   Prevents text overflow on small screens
   ============================================ */
.hero-content {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-left: 16px;
  padding-right: 16px;
}
.hero-title {
  letter-spacing: 2px !important;
  word-break: break-word;
  hyphens: auto;
  font-size: clamp(1.6rem, 7vw, 6rem) !important;
  line-height: 1.25 !important;
  padding: 0 4px;
  box-sizing: border-box;
}
.hero-title .white-text {
  letter-spacing: 3px !important;
}
.hero-subtitle {
  font-size: clamp(0.9rem, 3vw, 1.8rem) !important;
  letter-spacing: 1px !important;
}
@media(min-width: 520px) {
  .hero-title { letter-spacing: 4px !important; font-size: clamp(2rem, 7vw, 6rem) !important; }
  .hero-title .white-text { letter-spacing: 6px !important; }
  .hero-subtitle { letter-spacing: 2px !important; }
}
@media(min-width: 900px) {
  .hero-title { letter-spacing: 8px !important; }
  .hero-title .white-text { letter-spacing: 12px !important; }
  .hero-subtitle { letter-spacing: 2px !important; }
  .hero-content { max-width: 1200px; padding: 2rem 3rem; }
}

/* ============================================
   GOOGLE REVIEWS — Floating Marquee Strip
   Dark peacock, auto-scroll, iOS glass cards
   ============================================ */
.reviews-section {
  background: linear-gradient(160deg, #001f29 0%, #003845 55%, #001529 100%);
  padding: 52px 0 44px;
  overflow: hidden;
  position: relative;
}
.reviews-section::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 2px;
  margin: 0 auto 24px;
}
.reviews-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 28px;
}
.reviews-header .section-label {
  color: var(--gold) !important;
}
.reviews-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.reviews-stars-big {
  color: #fbbc04;
  font-size: 1.3rem;
  letter-spacing: 3px;
}
.reviews-aggregate {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}
.reviews-google-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 3px 10px 3px 6px;
  transition: background 0.2s;
}
.reviews-google-link:hover { background: rgba(255,255,255,0.14); }
.reviews-google-logo { width:16px; height:16px; }
.reviews-google-link span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
/* Marquee track */
.reviews-marquee-outer {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.reviews-marquee-outer::before,
.reviews-marquee-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 52px;
  z-index: 3;
  pointer-events: none;
}
.reviews-marquee-outer::before { left: 0; background: linear-gradient(to right, #001f29, transparent); }
.reviews-marquee-outer::after  { right: 0; background: linear-gradient(to left, #001529, transparent); }
.reviews-marquee {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 6px 24px 14px;
  animation: reviewsScroll 40s linear infinite;
}
.reviews-marquee:hover { animation-play-state: paused; }
@keyframes reviewsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Glass review card */
.review-card {
  flex-shrink: 0;
  width: 252px;
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 18px;
  padding: 18px 16px 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.06);
  cursor: default;
  transition: border-color 0.25s, transform 0.25s;
}
.review-card:hover {
  border-color: rgba(212,175,55,0.45);
  transform: translateY(-3px);
}
.review-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peacock), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: white;
  flex-shrink: 0;
  border: 1.5px solid rgba(212,175,55,0.3);
}
.review-meta { flex: 1; min-width: 0; }
.review-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  color: #ffffff;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-time {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
}
.review-stars {
  color: #fbbc04;
  font-size: 0.82rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}
.review-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.review-badge-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.03em;
}
.review-badge-g {
  width: 14px; height: 14px;
}
/* CTA below marquee */
.reviews-cta {
  text-align: center;
  margin-top: 30px;
  padding: 0 24px;
}
.reviews-cta .btn-wedding {
  font-size: 0.82rem;
  padding: 12px 24px;
}

/* ============================================
   WHY SECTION — 3-Card Stat-forward redesign
   ============================================ */
.why-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media(min-width: 680px) {
  .why-grid-3 { grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
}

.wc-card {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(212,175,55,0.18) !important;
  border-radius: 20px !important;
  padding: 28px 22px 22px !important;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease !important;
}
.wc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.09) 0%, transparent 68%);
  pointer-events: none;
}
.wc-card--center {
  background: rgba(0,95,115,0.22) !important;
  border-color: rgba(212,175,55,0.38) !important;
  box-shadow: 0 0 0 1px rgba(212,175,55,0.15), 0 16px 48px rgba(0,95,115,0.28) !important;
}
.wc-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(212,175,55,0.5) !important;
  box-shadow: 0 20px 48px rgba(0,0,0,0.45) !important;
}

.wc-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}
.wc-icon { font-size: 1.8rem; }
.wc-accent-icon { font-size: 1.1rem; opacity: 0.6; }

.wc-stat {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.6rem, 8vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #f0d060 0%, #d4af37 50%, #fff8e0 75%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.wc-stat-sup {
  font-size: 45%;
  vertical-align: super;
  margin-left: 2px;
}
.wc-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  margin-bottom: 14px;
}
.wc-divider {
  width: 36px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 14px;
  border-radius: 2px;
}
.wc-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin: 0 0 16px;
}
.wc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.wc-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  color: rgba(212,175,55,0.85);
}
