/* style.css */
:root {
  --soft-pink: #f8c9d9;
  --pink-light: #fce4ec;
  --pink-dark: #e91e63;
  --white: #ffffff;
  --text-dark: #333333;
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff9fb;
  color: var(--text-dark);
}

.navbar-brand {
  font-weight: 700;
  color: var(--pink-dark) !important;
}

.nav-link {
  color: #555 !important;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--pink-dark) !important;
}

.hero {
  background: linear-gradient(135deg, var(--soft-pink), #ffffff);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  color: var(--pink-dark);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.card {
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
}

.card-img-top {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  height: 200px;
  object-fit: cover;
}

.card-title {
  font-weight: 700;
  color: var(--pink-dark);
}

.btn-order {
  background-color: var(--pink-dark);
  border: none;
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 600;
  color: #f8c9d9;
}

.btn-order:hover {
  background-color: #c2185b;
  transform: scale(1.05);
}

footer {
  background-color: var(--soft-pink);
  padding: 20px 0;
  text-align: center;
  margin-top: 60px;
}

.form-control, .form-select {
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 12px;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 1.1rem;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  color: white;
}

/* Default Bootstrap: .col-lg-4 = 3 kolom di layar besar */
@media (max-width: 767.98px) {
  .col-lg-4 {
    width: 50% !important;   /* Jadi 2 kolom */
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  .col-lg-4 .card-text{
    display: none;
  }
  .col-lg-4 .btn{
    font-size: smaller;
    padding: 10px auto;
    color: #f8c9d9;
  }
}

.keunggulan-section {
  background: #fafafa;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #e91e63;
}

.keunggulan-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.keunggulan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-color: #e91e63;
}

.keunggulan-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  background: linear-gradient(135deg, #ff80ab, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}


.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.card-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Section Title */
.section-title {
  font-weight: 700;
  color: #d81b60;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 0.5rem auto 0;
  background: linear-gradient(90deg, #ff9ebc, #e91e63);
  border-radius: 3px;
}

/* Testimonial Cards */
.testimonial-card {
  background: #fff;
  border: 1px solid #ffd6e0;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(233, 30, 99, 0.15);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-style: italic;
  color: #555;
}

/* Contact Section */
.contact-card {
  background: #fff;
  border: 1px solid #ffd6e0;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(233, 30, 99, 0.1);
}

.contact-card h5 {
  color: #c2185b;
  font-weight: 600;
}

.btn-pink {
  background: linear-gradient(135deg, #ff9ebc, #e91e63);
  color: #fff;
  border-radius: 25px;
  padding: 10px 20px;
  border: none;
  transition: all 0.3s ease;
}

.btn-pink:hover {
  background: linear-gradient(135deg, #e91e63, #c2185b);
  color: #fff;
}

/* Map */
.map-container iframe {
  border-radius: 12px;
}

#kontak h5 {
  font-weight: 700;
  color: #d81b60;
  position: relative;
}

#kontak h5::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  margin: 0.5rem auto 0;
  background: linear-gradient(90deg, #ff9ebc, #e91e63);
  border-radius: 3px;
  text-align: left !important;
}
