/* ============================================================
   FLORAL BLISS — MAIN STYLESHEET
   ============================================================ */

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

:root {
  --rose:       #c9567b;
  --rose-light: #f2c4d4;
  --rose-pale:  #fdf0f4;
  --green:      #3d6b4f;
  --green-light:#e6f0ea;
  --cream:      #faf6f0;
  --warm:       #f5ede0;
  --charcoal:   #2c2c2c;
  --mid:        #555;
  --muted:      #888;
  --white:      #ffffff;
  --shadow:     0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.14);
  --radius:     14px;
  --radius-sm:  8px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography helpers ── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .5rem;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: .75rem;
}

.section-sub {
  color: var(--mid);
  font-size: 1.05rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
.btn-primary:hover {
  background: #b04469;
  border-color: #b04469;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,86,123,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn-secondary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-secondary:hover {
  background: #2e5038;
  border-color: #2e5038;
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--rose);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--rose-pale);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn-sm {
  padding: .55rem 1.2rem;
  font-size: .85rem;
}

/* ============================================================
   NAV
   ============================================================ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,86,123,.1);
  transition: box-shadow var(--transition);
}

.nav-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--charcoal);
  flex-shrink: 0;
}

.logo-icon { color: var(--rose); font-size: 1.4rem; }

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--mid);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--rose); }

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #2a1520 0%, #4a1e35 40%, #2e4a38 100%);
}

/* Decorative petal blobs */
.hero-bg::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,86,123,.35) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(61,107,79,.4) 0%, transparent 70%);
  bottom: -50px; left: 10%;
  border-radius: 50%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 5rem 24px;
}

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 1.2rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--rose-light);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 2rem;
}

.stars { color: #f5c842; font-size: 1.1rem; letter-spacing: .1em; }
.stars-text { color: rgba(255,255,255,.75); font-size: .9rem; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,.45);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeInUp 1s 1.5s both;
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,.4);
  border-bottom: 2px solid rgba(255,255,255,.4);
  transform: rotate(45deg);
  margin: .5rem auto 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid #f0e8ec;
  padding: 1.5rem 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 1rem;
}

.trust-icon { font-size: 1.6rem; }

.trust-item strong {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  color: var(--charcoal);
}

.trust-item span {
  display: block;
  font-size: .8rem;
  color: var(--muted);
}

.trust-divider {
  width: 1px; height: 40px;
  background: #e8dce0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 6rem 0;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,.05);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--card-color, var(--rose-light));
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-emoji {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: .6rem;
  color: var(--charcoal);
}

.service-card p {
  color: var(--mid);
  font-size: .92rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.card-cta {
  font-size: .88rem;
  font-weight: 600;
  color: var(--rose);
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
}
.card-cta:hover { color: #b04469; letter-spacing: .02em; }

/* ============================================================
   WEDDINGS
   ============================================================ */
.weddings {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1e2d26 0%, #2c1a22 100%);
  color: var(--white);
  overflow: hidden;
}

.wedding-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.wedding-text .section-eyebrow { color: var(--rose-light); }

.wedding-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.wedding-text > p {
  color: rgba(255,255,255,.75);
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
}

.wedding-list {
  list-style: none;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 1rem;
}

.wedding-list li {
  color: rgba(255,255,255,.85);
  font-size: .92rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

/* Wedding card stack visual */
.wedding-visual {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wedding-card-stack {
  position: relative;
  width: 260px;
  height: 320px;
}

.wcard {
  position: absolute;
  width: 200px; height: 240px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.wcard-inner {
  text-align: center;
  color: var(--white);
}
.wcard-inner .wcard-emoji { font-size: 3.5rem; display: block; margin-bottom: .5rem; }
.wcard-inner p { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; }

.wcard-1 {
  background: linear-gradient(135deg, #c9567b, #8b2252);
  top: 0; left: 0;
  transform: rotate(-8deg);
  z-index: 1;
}

.wcard-2 {
  background: linear-gradient(135deg, #3d6b4f, #1e3a28);
  top: 40px; left: 40px;
  transform: rotate(2deg);
  z-index: 2;
}

.wcard-3 {
  background: linear-gradient(135deg, #9b6b8a, #5a2d6b);
  top: 80px; left: 80px;
  transform: rotate(-3deg);
  z-index: 3;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding: 6rem 0;
  background: var(--rose-pale);
}

.review-stars-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}

.stars-big {
  color: #f5c842;
  font-size: 1.5rem;
  letter-spacing: .08em;
}

.rating-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  font-family: var(--font-serif);
}

.rating-count {
  color: var(--muted);
  font-size: .9rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(201,86,123,.08);
  border: 1px solid rgba(201,86,123,.1);
  transition: transform var(--transition);
}

.review-card:hover { transform: translateY(-4px); }

.review-stars {
  color: #f5c842;
  font-size: 1rem;
  margin-bottom: .75rem;
  letter-spacing: .05em;
}

.review-card p {
  color: var(--mid);
  font-size: .93rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}

.review-card cite {
  font-size: .82rem;
  font-weight: 600;
  color: var(--rose);
  font-style: normal;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 6rem 0;
  background: var(--green-light);
}

.about-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-badge-ring {
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 3px dashed rgba(61,107,79,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 25s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.about-badge {
  width: 170px; height: 170px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #2e5038);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  animation: spin 25s linear infinite reverse;
}

.badge-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.badge-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-align: center;
  opacity: .85;
}

.about-text .section-eyebrow { color: var(--green); }

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.about-text p {
  color: var(--mid);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.75;
}

.about-text .btn { margin-top: .5rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--rose) 0%, #8b2252 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: .75rem;
}

.cta-inner p {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 6rem 0;
  background: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .section-eyebrow { color: var(--rose); }

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--charcoal);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }

.contact-detail strong {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .25rem;
}

.contact-detail p {
  color: var(--charcoal);
  font-size: .98rem;
  line-height: 1.6;
}

.contact-detail a {
  color: var(--rose);
  font-weight: 600;
  font-size: 1.1rem;
  transition: color var(--transition);
}
.contact-detail a:hover { color: #b04469; }

.contact-social {
  display: flex;
  gap: .75rem;
  margin-top: .5rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  padding: .6rem 1.3rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
}

.social-btn.facebook {
  background: #1877f2;
  color: var(--white);
}
.social-btn.facebook:hover { background: #1463c5; transform: translateY(-2px); }

.social-btn.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}
.social-btn.instagram:hover { transform: translateY(-2px); filter: brightness(1.1); }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-map iframe {
  display: block;
  border-radius: var(--radius);
  min-height: 400px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.6);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.footer-brand .logo-icon { color: var(--rose-light); font-size: 1.2rem; }
.footer-brand .logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-right: .5rem;
}
.footer-brand p { font-size: .82rem; }

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: .8rem;
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.25rem;
  margin-top: .5rem;
}

/* ============================================================
   ANIMATIONS — fade-in on scroll
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* staggered children */
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.stagger.visible > *:nth-child(1) { transition-delay: .05s; }
.stagger.visible > *:nth-child(2) { transition-delay: .15s; }
.stagger.visible > *:nth-child(3) { transition-delay: .25s; }
.stagger.visible > *:nth-child(4) { transition-delay: .35s; }
.stagger.visible > *:nth-child(5) { transition-delay: .45s; }
.stagger.visible > *:nth-child(6) { transition-delay: .55s; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .wedding-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-inner { text-align: center; }
  .about-visual { margin-bottom: .5rem; }

  .wedding-visual { height: 280px; }
}

@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid #f0e0e6;
    gap: .75rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .nav-links.open a { font-size: 1rem; color: var(--charcoal); }

  .hamburger { display: flex; }

  .hero-content { padding: 4rem 0 6rem; }

  .trust-divider { display: none; }
  .trust-inner { flex-direction: column; align-items: flex-start; padding: 0 1rem; }
  .trust-item { padding: .3rem 0; }

  .services-grid { grid-template-columns: 1fr; }

  .wedding-list { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }

  .contact-social { flex-direction: column; }
}
