body {
  font-family: "Poppins", sans-serif;
  background: #ffdfee;
}

/* Navbar */
.text-pink {
  color: #d86c92;
}

.btn-pink {
  background: #ffe5ee;
  color: #d86c92;
  border: 2px solid #f7c7d9;
  border-radius: 12px;
  padding: 10px 20px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-pink:hover {
  background: #f8d4e2;
  color: #c2618c;
}
/* Hero */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-title {
  color: #7b3752;
  line-height: 1.2;
}

.hero-text {
  color: #666;
  font-size: 18px;
  line-height: 1.8;
}

.hero-image {
  max-height: 550px;
}

/* Services */
.services-section {
  background: #fff6f8;
}

.title-service {
  color: #333;
  font-size: 42px;
}

.service-card {
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-img {
  height: 220px;
  object-fit: cover;
}

.service-desc {
  font-size: 14px;
  line-height: 1.8;
}

.text-price {
  color: #222;
}

.contact-section {
  background: #f8d4e2;
  color: #c2618c;
  padding: 80px 0;
}

.contact-section h3 {
  margin-bottom: 25px;
  font-weight: bold;
}

.contact-section p {
  color: #c2618c;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #c2618c;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff69b4;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
  color: white;
  text-decoration: none;
  background: #ff8fc7;
  padding: 12px 18px;
  border-radius: 50px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ff69b4;
}

.copyright {
  color: #c2618c;
  margin-top: 30px;
}

/* Navbar Link */
.navbar a {
  color: #333 !important;
  text-decoration: none;
  font-weight: 500;
  margin: 0 15px;
}

.navbar a:hover {
  color: #d86c92 !important;
}

html {
  scroll-behavior: smooth;
}
