/* ============ BASIC RESET ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #151414;
 background: radial-gradient(circle at top left, #f7f0f2, #f3a1bc 45%, #f29bc7 80%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* ============ VARIABLES ============ */
:root {
  --pink-soft: #ffe6f0;
  --pink-main: #f19ab8;
  --pink-dark: #ce3769;
  --text-main: #0e0d0d;
  --text-muted: #1e1a1c;
  --border-soft: #f5d2de;
  --bg-card: #f7eeee;
  --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.06);
  --radius-lg: 18px;
}

/* ============ CONTAINERS ============ */
.container {
  width: 98%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.narrow {
  max-width: 900px;
}

/* ============ HEADER NAV ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: radial-gradient(circle at 30% 20%, #f1d6d6, #e580a4);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f3eff0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  gap: 1rem;
}

.branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #e4e1e1, #d71056);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #5a2a3a;
  box-shadow: var(--shadow-soft);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--text-main);
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--text-muted);
  position: relative;
  padding-bottom: 2px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-main), var(--pink-dark));
  transition: width 0.2s ease;
}

.nav a:hover {
  color: var(--text-main);
}

.nav a:hover::after {
  width: 100%;
}

.header-cta {
  font-size: 0.85rem;
}

/* Nav toggle for mobile */
.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.3rem;
  color: var(--text-main);
}

/* ============ BUTTONS ============ */
.btn {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f5b7ce, #f19ab8);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f19ab8, #d55982);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid #f0bccd;
  color: var(--text-main);
  background: #fff;
}

.btn-outline:hover {
  border-color: var(--pink-dark);
}

.btn-plain {
  background: transparent;
  color: var(--pink-dark);
  border: 1px solid transparent;
}

.btn-plain:hover {
  border-color: #f2c3d1;
  background: #fff;
}

.btn.full {
  width: 100%;
}

/* ============ HERO ============ */
.hero {
  padding: 3rem 0 3.5rem;
  background: radial-gradient(circle at top left, #f4f1f2, #f5bfd1 45%, #ffffff 90%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.hero-text-block h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin: 0.7rem 0;
  color: var(--text-main);
}

.hero-text-block h1 span {
  color: var(--pink-dark);
}

.hero-text-block p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 470px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.hero-badges {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-badges strong {
  display: block;
  color: var(--text-main);
  font-size: 1.1rem;
}

/* Hero photos */
.hero-photo-block {
  position: relative;
}

.hero-main-photo {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid #f6dbe6;
}

.hero-main-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.hero-tag-card {
  position: absolute;
  left: 10px;
  bottom: -18px;
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  box-shadow: 0 10px 18px rgba(191, 88, 139, 0.18);
  border: 1px solid #f3c6d7;
}

.hero-tag-card i {
  color: #e56e9b;
  margin-right: 0.3rem;
}

.hero-small-photo {
  position: absolute;
  right: -18px;
  top: 30px;
  width: 55%;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f3c6d7;
  box-shadow: 0 10px 22px rgba(229, 110, 155, 0.22);
}

.hero-small-photo img {
  height: 150px;
  width: 100%;
  object-fit: cover;
}

.hero-small-photo span {
  display: block;
  padding: 0.5rem 0.7rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============ SECTION GENERIC ============ */
.section {
  padding: 3.5rem 0;
}

.section-soft {
  background: #fff3f8;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.center {
  text-align: center;
}

.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--pink-dark);
}

.section-heading h2 {
  margin: 0.6rem 0 0.3rem;
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  color: var(--text-main);
}

.section-heading p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
  width: 100%;
}

.about-card {
  background:#ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-soft);
}

.about-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  color: var(--text-main);
}

.about-card p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--text-main);
}

.about-card li {
  margin-bottom: 0.25rem;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}

/* CARD WITH BACKGROUND IMAGE */
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0; /* padding will be inside content */
  height: 300px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
  border: none;
  color: #fff;
}

/* DARK OVERLAY FOR TEXT VISIBILITY */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.15)
  );
  z-index: 1;
}

/* CONTENT LAYER */
.service-content {
  position: absolute;
  bottom: 0;
  padding: 1.4rem 1.3rem;
  z-index: 2;
}

/* ICON ROUND */
.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(255,255,255,0.4);
}

.icon-circle i {
  color: #fff;
  font-size: 18px;
}

/* TITLE */
.service-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

/* DESCRIPTION */
.service-card p {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: #f1d6e2;
}

/* LIST */
.service-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  color: #ffeef6;
}

.service-card li {
  margin-bottom: 0.25rem;
}


/* ============ PLANNING STEPS ============ */
.planning-steps {
  margin-top: 2rem;
  border-radius: 20px;
  border: 1px solid #f3c6d7;
  background: #fffdfd;
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.6rem;
}

.planning-step {
  display: flex;
  gap: 0.8rem;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #f3c6d7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--pink-dark);
}

.planning-step h3 {
  margin: 0 0 0.25rem;
  font-size: 0.98rem;
  color: var(--text-main);
}

.planning-step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f3c6d7;
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  height: 210px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* ============ PACKAGES ============ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}

.package-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #f3c6d7;
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.package-card.highlight {
  border-color: #f19ab8;
  box-shadow: 0 18px 38px rgba(241, 154, 184, 0.2);
}

.package-label {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--pink-dark);
}

.package-card h3 {
  margin: 0.4rem 0 0.3rem;
  font-size: 1.02rem;
  color: var(--text-main);
}

.price {
  margin: 0 0 0.8rem;
  color: #b53b6b;
  font-weight: 500;
  font-size: 0.96rem;
}

.package-card ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--text-main);
}

.package-card li {
  margin-bottom: 0.25rem;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.8rem;
  margin-top: 2rem;
}

.contact-info h3 {
  margin-top: 0;
  font-size: 1.06rem;
}

.contact-info p {
  margin: 0.2rem 0 0.7rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-lines p {
  margin: 0.25rem 0;
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.contact-lines i {
  color: var(--pink-dark);
}

.social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #f3c6d7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-dark);
  font-size: 0.9rem;
}

.social a:hover {
  background: #ffe3f0;
}

/* Contact form */
.contact-form {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #f3c6d7;
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.4rem;
}

.form-row {
  display: flex;
  gap: 0.9rem;
}

.form-group {
  flex: 1;
  margin-bottom: 0.85rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #f3c6d7;
  padding: 0.5rem 0.6rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  background: #fff;
  color: var(--text-main);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--pink-main);
  box-shadow: 0 0 0 1px rgba(241, 154, 184, 0.2);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid #f3c6d7;
 background: radial-gradient(circle at 20% 30%, #f1669c #ece0e0, #f16193);
}

.footer-inner {
  padding: 1rem 0 1.3rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-sub {
  margin-top: 0.25rem;
}

/* ============ MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.modal.show {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.modal-body {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem 1.4rem 1.4rem;
  width: 100%;
  max-width: 380px;
  margin: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid #f3c6d7;
  z-index: 31;
}

.modal-body h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.modal-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  border: none;
  background: #ffe3f0;
  border-radius: 999px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ============ ANIMATIONS ============ */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo-block {
    order: -1;
  }

  .hero-main-photo img {
    height: 260px;
  }

  .hero-small-photo {
    right: 10px;
  }

  .about-grid,
  .services-grid,
  .gallery-grid,
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .planning-steps {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    position: absolute;
    top: 58px;
    right: 1.25rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f3c6d7;
    padding: 0.6rem 0.9rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    box-shadow: var(--shadow-soft);
    display: none;
  }

  .nav.show {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 640px) {
  .about-grid,
  .services-grid,
  .gallery-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }
}


/* =========================================================
   UNIVERSAL CARD HOVER EFFECTS (ALL CARD TYPES)
========================================================= */

/* soft lift */
.about-card:hover,
.service-card:hover,
.gallery-item:hover,
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(241, 154, 184, 0.25);
  transition: 0.28s ease;
}

/* border color change */
.about-card:hover,
.package-card:hover,
.gallery-item:hover {
  border-color: var(--pink-main) !important;
}

/* service card overlay bright on hover */
.service-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.1)
  );
}

/* icon circle animation */
.service-card:hover .icon-circle,
.package-card:hover .icon-circle {
  background: rgba(255,255,255,0.45);
  border-color: rgba(255,255,255,0.7);
  transform: scale(1.1);
  transition: 0.25s ease;
}

/* text color pop */
.service-card:hover h3,
.about-card:hover h3 {
  color: #f56bd0;
  text-shadow: 0 0 8px rgb(245, 240, 240);
}

/* gallery hover zoom already exists, add glow */
.gallery-item:hover {
  box-shadow: 0 12px 28px rgba(241, 154, 184, 0.35);
}

/* package hover highlight */
.package-card:hover {
  border-color: var(--pink-dark);
  box-shadow: 0 20px 40px rgba(241, 154, 184, 0.28);
  background: radial-gradient(circle at 30% 20%, #e4e1e1, #e40a56);
}

/* smooth transition for all cards */
.about-card,
.service-card,
.gallery-item,
.package-card {
  transition: 0.3s ease;
}

/* FIX ABOUT SECTION FULL WIDTH */
#about .container {
  padding-left: 30px !important;
  padding-right: 30px !important;
  width: 100% !important;
  max-width: 100% !important;
}
