html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}


@font-face {
    font-family: 'Xendan-Regular';
    src: url('/Xendan-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Xendan-Regular', Arial, sans-serif;
}



.ck-content iframe {
    border-radius: 10px;
    margin: 1rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pink1 {
    background-color: white;
    color: #f71587;
}



.pink2 {
    background-color: white;
    color: #bf5c8f;
}


.transition-transform {
    transition: transform 0.3s;
}

    .transition-transform:hover {
        transform: scale(1.05);
    }


.fs-xl {
    font-size: 40px;
}

.quote-marks {
    width: 60px;
    height: 60px;
    display: flex;
    gap: 10px;
}

    .quote-marks::before,
    .quote-marks::after {
        content: "";
        width: 20px;
        height: 40px;
        background-color: hotpink;
        clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    }




.pink-banner {
    width: 80%;
    margin: 0 auto; /* center horizontally */
    background: linear-gradient(to right, #ffe6f0, #ffb6c1, #ffe6f0); /* pink gradient */
    padding: 5px;
    text-align: center;
    
    border-radius: 15px;
}

.pink-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: 40px auto;
}

    .pink-divider::before,
    .pink-divider::after {
        content: "";
        flex: 1;
        height: 2px;
        background-color: pink; /* solid pink line */
    }

    .pink-divider span {
        padding: 0 15px;
        font-weight: bold;
        font-size: 18px;
        color: #001f3f; /* navy blue or change as needed */
    }
