* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: radial-gradient(
    circle at top,
    #fff7dc 0%,   /* light golden cream */
    #ffefd2 45%,  /* warm soft yellow */
    #fde6ea 100%  /* gentle pink fade */
	  );
  overflow-x: hidden;
}

/* FLOATING HEARTS */
.floating-hearts {
  position: fixed;
  inset: 0;
  z-index: -1;
}
.floating-hearts span {
  position: absolute;
  bottom: -40px;
  width: 14px;
  height: 14px;
  background: rgba(255,192,203,0.75);
  transform: rotate(45deg);
  animation: float 14s linear infinite;
  filter: blur(0.5px);
}


.floating-hearts span:before,
.floating-hearts span:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: pink;
  border-radius: 50%;
}
.floating-hearts span:before { left: -8px; }
.floating-hearts span:after { top: -8px; }



@keyframes float {
  to { transform: translateY(-120vh) rotate(45deg); }
}

/* NAV */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
}
.header-logo { width: 240px; }
nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}
nav a.active { color: #ff2f7d; }

/* HERO section */
.hero {
  padding: 90px 40px 0;   /* IMPORTANT: bottom padding = 0 */
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Center the composition */
.hero-inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: flex-start;   /* 🔑 TOP align text to her head */
  justify-content: center;
  gap: 20px;                 /* keep them close */
  position: relative;
}

/* TEXT */
.hero-content {
  max-width: 480px;
  padding-top: 40px;         /* 🔑 aligns text start with her head */
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 4px;
}

.hero-content h2 {
  font-family: "Dancing Script", cursive;
  font-size: 72px;
  color: #ff2f7d;
  margin: 0 0 10px;
  font-weight: 400;
}

.hero-content p {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  line-height: 1.4;
}

.pink-line {
  width: 170px;
  height: 5px;
  background: #ff2f7d;
  border-radius: 4px;
  margin-top: 10px;
}

.hero-content .heart {
  font-size: 40px;
  margin-left: 6px;
}

/* LADY IMAGE — BIGGER */
.hero-image {
  width: 500px;
  height: 680px;
  background: url("DFULL2.png") no-repeat center bottom;
  background-size: contain;

  margin-left: -30px;

  /* 🔑 anchor her to the wave */
  margin-bottom: -40px;   /* pull her DOWN onto the wave */
}


/* MOBILE */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-image {
    width: 320px;
    height: 460px;
    margin-left: 0;
  }

  .hero-content {
    padding-top: 0;
  }

  .pink-line {
    margin-left: auto;
    margin-right: auto;
  }
}



/* STORY */
.story {
  background: linear-gradient(
    to bottom,
    #ff8fb8 0%,   /* rich confident pink */
    #ffc1dc 45%,
    #ffe4f1 80%,
    #fff0f8 100%
  );
  padding: 100px 40px;
}



.story h2 {
  text-align: center;
  font-family: 'Playfair Display';
  font-size: 42px;
}


.story h2 span {
  font-family: 'Dancing Script';
  color: #ff2f7d;
}
.story-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}
.story-photo img {
  width: 260px;
  border-radius: 50%;
  border: 6px solid #ffd1e6;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.script-line {
  font-family: 'Dancing Script';
  font-size: 32px;
  color: #ff2f7d;
}

/* ❤️ Black heart overlay on profile photo */
.story-photo {
  position: relative;
  display: inline-block;
}

.photo-heart {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 42px;
  color: #000;
  font-family: 'Dancing Script', cursive;
  line-height: 1;
  pointer-events: none;

  /* subtle lift so it doesn’t feel flat */
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}
/* SERVICES */
.services {
  background: #000;
  color: #fff7dc;
  padding: 80px 40px;
  text-align: center;
}
.services h2 span {
  font-family: 'Dancing Script';
  font-size: 60px;
  color: #ff2f7d;
}

.service-grid {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 40px;
}

.service {
  max-width: 220px;
  text-align: center;
}

.service img {
  width: 46px;
  margin-bottom: 14px;
}

/* CONTACT SECTION */
.contact {
  background: #ff2f7d;                 /* solid dark pink */
  padding: 80px 60px;
  color: #fff7dc;
}

.contact-inner {
  max-width: 1100px;          /* slightly narrower */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;    /* 🔑 centers the whole group */
  gap: 80px;                  /* controlled spacing */
}

.contact-left {
  transform: translateX(20px);
}

.contact-right {
  transform: translateX(-20px);
}


/* LEFT SIDE */
.contact-left {
  max-width: 540px;
}

.contact-left h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.contact-left h2 .script {
  font-family: "Dancing Script", cursive;
  font-size: 64px;
  font-weight: 400;
}

.contact-left h2 .heart {
  font-size: 36px;
  margin-left: 6px;
}

.contact-sub {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 26px;
}

/* Call bar */
.call-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #000;
  padding: 16px 26px;
  border-radius: 18px;
  color: #fff7dc;
  text-decoration: none;
  width: fit-content;
  margin-bottom: 18px;
}

.phone-icon {
  background: #ff2f7d;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-text {
  line-height: 1.2;
}

.call-label {
  font-family: "Dancing Script", cursive;
  font-size: 28px;
}

.call-number {
  display: block;
  font-size: 30px;
  font-weight: 600;
}

/* Email */
.email-row {
  font-size: 18px;
}

/* RIGHT SIDE IMAGE */
.contact-right {
  flex-shrink: 0;
}

.support-image {
  width: 320px;
  max-width: 100%;
  height: auto;
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-inner {
    flex-direction: column;
    text-align: center;
  }

  .call-bar {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-right {
    margin-top: 30px;
  }
}

/* FOOTER */
footer {
  background: #000;
  color: #ff80b3;
  font-family: 'Dancing Script';
  font-size: 28px;
  text-align: center;
  padding: 24px;
}

/* ✨ Sparkle overlay */
.sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.sparkles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  filter: drop-shadow(0 0 6px #ff80b3);
  animation: sparkleTwinkle 3s ease-in-out infinite;
}

@keyframes sparkleTwinkle {
  0%   { opacity: 0; transform: scale(0.6); }
  50%  { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(0.6); }
}

.service-favicon {
  width: 48px;           /* all same size */
  height: 48px;
  margin-bottom: 14px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  
  
filter: invert(34%) sepia(76%) saturate(4000%) hue-rotate(315deg);
}

/* Thinner + extra wavy ribbon divider */
.ribbon-divider.thin-wave {
  position: relative;
  width: 100%;
  height: 70px;          /* thinner */
  margin-bottom: -1px;  /* seamless overlap */
  z-index: 6;
  filter: drop-shadow(0 4px 8px rgba(255, 120, 180, 0.35));
}

.ribbon-divider.thin-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Center heart */
.ribbon-divider.thin-wave .ribbon-heart {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  background: #000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: 'Dancing Script', cursive;
  font-size: 30px;
  color: #ff2f7d;

  box-shadow:
    0 0 8px rgba(255, 47, 125, 0.6),
    0 0 16px rgba(255, 47, 125, 0.3);
}
``

/* Center black circle with pink heart */
.ribbon-heart {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  background: #000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 34px;
  color: #ff2f7d;
  font-family: 'Dancing Script', cursive;

  box-shadow:
    0 0 10px rgba(255, 47, 125, 0.6),
    0 0 18px rgba(255, 47, 125, 0.4);
}


STORYTABLE
/* STORY – two column layout */
.story {
  padding: 90px 60px 110px;
  background: linear-gradient(
    to bottom,
    #ffd0df 0%,
    #ffe6f0 45%,
    #fff1f7 100%
  );
}

/* Main grid */
.story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
}

/* LEFT COLUMN */
.story-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Story title image */
.story-title-art {
  width: 460px;
  max-width: 100%;
  margin-bottom: 22px;
}

/* Profile photo */
.story-photo {
  position: relative;
}


  .profile-image {
    width: 220px;
    
height: 320px;
border-radius: 45% / 75%;
      /* vertical oval */
    object-fit: cover;
    object-position: top center;   /* ✅ shows top of hair */
  }
}


/* Black outlined heart overlay */
.photo-heart {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 52px;
  color: transparent;
  -webkit-text-stroke: 3px #000;
  transform: rotate(-10deg);
}

/* RIGHT COLUMN – TEXT */
.story-copy {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  line-height: 1.65;
  color: #1a1a1a;
}

.story-copy p {
  margin-bottom: 18px;
}

.story-copy strong {
  font-weight: 800;
}

.inline-heart {
  color: #ff2f7d;
  margin-left: 6px;
}

/* Script signature */
.story-signoff {
  font-family: 'Dancing Script', cursive;
  font-size: 44px;
  color: #ff2f7d;
  margin-top: 18px;
  display: inline-block;
  border-bottom: 4px solid rgba(255,47,125,.55);
  padding-bottom: 6px;
}

/* STORY TEXT – gentle & easy to read */
.story-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
  color: #222;
}

.story-copy strong {
  font-weight: 600; /* softer emphasis */
}


/* MOBILE */
@media (max-width: 900px) {
  .story-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .story-left {
    margin-bottom: 28px;
  }

  .story-title-art {
    margin-left: auto;
    margin-right: auto;
  }
}



/* =====================================
   ✅ MOBILE FRIENDLY OVERRIDES
   Keep everything else the same
===================================== */

@media (max-width: 600px) {

  body {
    overflow-x: hidden;
  }

  /* ---------- NAV ---------- */
  .top-nav {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }

  .header-logo {
    width: 180px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  nav a {
    margin: 0;
    font-size: 14px;
  }

  /* ---------- HERO ---------- */
  .hero {
    padding: 50px 20px 0;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding-top: 0;
    max-width: 100%;
  }

  .hero-content img {
    width: 80%;
    max-width: 300px;
  }


  .hero-image {
    width: 260px;
    height: 380px;
    margin-top: -70px;   /* ⬆️ pulls her UP */
    margin-bottom: 0;    /* prevents wave overlap issues */
  }


  /* ---------- STORY ---------- */
  .story {
    padding: 70px 24px;
  }

  .story-container {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .story-title-art {
    width: 90%;
  }


  .profile-image {
    width: 260px;             /* slightly bigger like your image */
    height: 340px;            /* taller oval shape */

    border-radius: 50% / 65%; /* ✅ vertical oval */
    
    object-fit: cover;
    object-position: top center;

    border: 8px solid #ffd1e6; /* ✅ soft pink outline */
    background: #ffd1e6;       /* fallback edge color */
  }


  .story-copy {
    font-size: 17px;
    line-height: 1.7;
  }

  .story-signoff {
    font-size: 36px;
  }

  /* ---------- SERVICES ---------- */
  .services {
    padding: 70px 24px;
  }

  .services h2 {
    font-size: 28px;
  }

  .services h2 span {
    font-size: 42px;
  }

  .service-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }


@media (max-width: 600px) {
  .service {
    width: 100%;
    max-width: 320px;
  }
}


  /* ---------- CONTACT ---------- */
  .contact {
    padding: 70px 24px;
  }

  .contact-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .contact-left {
    transform: none;
  }

  .contact-left h2 {
    font-size: 32px;
  }

  .contact-left h2 .script {
    font-size: 48px;
  }

  .call-bar {
    margin-left: auto;
    margin-right: auto;
  }

  .call-number {
    font-size: 26px;
  }

  .support-image {
    width: 260px;
  }

  /* ---------- FOOTER ---------- */
  footer img {
    width: 80px;
  }
}

@media (max-width: 600px) {
  .header-logo {
    width: 400px;
    max-width: 90vw;
  }

  .top-nav {
    align-items: center;
  }
}

  /* Services cleanup */


@media (max-width: 600px) {
  .service-grid {
    flex-direction: column;
    align-items: center;
    gap: 34px;
  }
}



.service {
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.service h4 {
  margin-top: 6px;
  margin-bottom: 6px;
}

.service p {
  font-size: 16px;
  line-height: 1.5;
}


.service-favicon {
  width: 48px;
  height: 48px;
  fill: #ff2f7d;  /* ✅ your brand pink */
}
