/* Reset body margin/padding */
body {
  margin: 0;
  padding: 0;
}

/* Custom color: dark pink (#450c39) */
.text-custom-pink {
  color: #450c39;
}

.bg-custom-pink {
  background-color: #450c39;
}

/* Header and Footer Background */
.custom-header {
  background-color: #450c39;
}

.custom-footer {
  background-color: #450c39;
  margin-top: 0;
}

/* Hero Section Background */
.hero-bg {
  background-color: #e6c9cb;
  background-size: cover;
  background-position: center;
}

/* Social Icon Hover Effect */
.interactive-image {
  transition: transform 0.3s ease;
}

.interactive-image:hover {
  transform: scale(1.1);
}

/* Circle Image Container */
.circle-image-container {
  background-color: #bd899e;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo {
  width: 300px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
