.logo-img {
  height: auto;   /* reduce height */
  width: auto;    /* keeps aspect ratio */
  max-width: 150px; /* optional safeguard */
}


  /* Reduce image size */
  .principal-img {
    max-width: 300px;   /* smaller image */
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .principal-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  }

  /* ✅ Signature font style */
  .signature-font {
    font-family: 'Cedarville Cursive', cursive;
    font-size: 2em;          /* slightly bigger for signature feel */
    font-weight: 400;
    color: #333;
    letter-spacing: 1px;     /* adds natural spacing */
  }
        .bg-overlay {
  position: relative;
  z-index: 1;
}

.bg-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* black with 50% opacity */
  z-index: -1;
}

