/* === Popup Notification === */
/* === Popup Notification === */
#copy-feedback {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f7c3b4;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Urbanist", sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 9999;
}

#copy-feedback.show {
  opacity: 1;
  visibility: visible;
}

/* === Rest of your styles === */
body {
  padding-top: 80px;
}

.hero-text,
.navbar-nav .nav-link {
  font-family: "Cormorant Garamond", serif;
}

.navbar-nav .nav-link {
  font-weight: 600;
}

/* Arrow */
.arrow {
  width: 270px; /* MUCH bigger */
  transition: transform 0.3s ease;
}

/* Mobile: arrow down */
.arrow {
  transform: rotate(115deg);
}

/* Desktop: arrow right */
@media (min-width: 992px) {
  .arrow {
    transform: rotate(20deg);
  }
}

/* Default (mobile) gap */
.gap-6 {
  gap: 5rem; /* small vertical gap for mobile */
}

/* Desktop gap */
@media (min-width: 992px) {
  .gap-6 {
    gap: 14rem; /* big horizontal gap for desktop */
  }
}
/* Pink card styling */
/* Pink card styling */
/* Pink card styling */
.pink-card {
  background-color: #fddeda;
  border-radius: 1.25rem;
} /* Pink text */
.text-pink {
  color: #c2185b;
  font-family: "Cormorant Garamond", serif;
} /* Pink button */
.btn-pink {
  background-color: #f29f96;
  color: #fff;
  border: none;
  transition: background-color 0.2s ease;
}
.btn-pink:hover {
  background-color: #fba68f;
  color: white;
}

.text-darkPink {
  color: #fba68f;
}

/* About Us text styling */
.about-text h2 {
  font-size: 2rem;
}

.about-text h3 {
  font-size: 1.5rem;
}

.about-text p {
  line-height: 1.6;
}

/* Polaroid styling */
.polaroid {
  width: 100%;
  max-width: 500px;
  background-color: #ffffff;
  box-shadow: 5px 5px 1px #c5b2b4;
  text-align: center;
  margin-bottom: 25px;
  border-radius: 10px;
  overflow: hidden;
}

.polaroid img {
  width: 100%;
  display: block;
}

.polaroid-caption {
  padding: 10px 15px;
  font-weight: 800;
  font-size: 1.2rem;
}

/* Responsive adjustments */
@media (min-width: 992px) {
  .about-text {
    text-align: left;
  }
}

.custom-hr {
  width: 80%; /* take up 80% of container */
  height: 2px; /* thickness */
  background-color: #4e4e4e; /* color of the line */
  border: none; /* remove default border */
  margin: 2rem auto; /* center it with vertical spacing */
  border-radius: 2px; /* optional: slightly rounded edges */
}

@media (min-width: 992px) {
  .custom-gap-lg {
    column-gap: 2rem;
  }
}

.footer {
  background-color: #e06a7b;
  color: #fff;
}

.footer-title {
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.footer-divider {
  width: 40px;
  height: 2px;
  background-color: #fff;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.footer p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

.map-wrapper {
  width: 90%;
  height: 180px;
  border-radius: 0.75rem;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-hr {
  border-color: rgba(255, 255, 255, 0.3);
  margin: 2rem 0 1rem;
}

.footer-icon {
  font-size: 1.6rem;
  color: #fc0000;
  transition: opacity 0.2s ease;
}

.footer-icon:hover {
  opacity: 0.8;
}



html {
  scroll-behavior: smooth;
}

.mfb {
  margin-left: 11px;
}

.mfh {
  margin-left: 5px;
}