header {
    margin: 0;
}

header h1 {
    color: #e75480;
    /*font-family: 'Allura', cursive;*/
    font-family: 'Twinkle Star', cursive;
    font-size: 55px;
}
h1 {
    color: #e75480
}
h3 {
    font-family: 'Twinkle Star', cursive;
    color: #e75480;
    font-size: 50px;
}

.contact-bg {
    background-color: #ffe6ec; /* Light pink */
}

/* Target ONLY the contact form inputs */
form input.form-control,
form select.form-select,
form textarea.form-control {
    background-color: #fff0f5;
    border: 1px solid #e372ad;
    border-radius: 10px;
}

/* Focus state */
form input.form-control:focus,
form select.form-select:focus,
form textarea.form-control:focus {
    background-color: #ffffff; /* #ffe6ec; */
    border-color: #d94f91;
    box-shadow: 0 0 8px rgba(227, 114, 173, 0.4);
}

/* Match button to input style */
form .btn-pink {
    background-color: #e372ad;         /* same as inputs */
    border: 1px solid #e372ad;        /* same border */
    border-radius: 10px;              /* same rounding */
    color: #000;                     /* black text */
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

/* Hover state (slightly deeper pink like input focus) */
form .btn-pink:hover {
    background-color: #ffe6ec;
    border-color: #d94f91;
    color: #000;
}

/* Focus state (same glow as inputs) */
form .btn-pink:focus,
form .btn-pink:focus-visible {
    background-color: #ffe6ec;
    border-color: #d94f91;
    box-shadow: 0 0 8px rgba(227, 114, 173, 0.4);
    color: #000;
}

/* Active (clicked) state */
form .btn-pink:active {
    background-color: #ffe6ec;
    border-color: #d94f91;
    color: #000;
}

.contact-bg {
    background-color: #ffe6ec; /* light pink for the section */
}

.contact-bg form {
    border: 2px solid #000;    /* black outline */
    padding: 30px;              /* inner spacing */
    border-radius: 12px;        /* rounded corners */
    background-color: transparent; /* keep the pink showing through */
}

.contact-bg h2 {
    font-family: 'Allura', cursive;  /* match services page */
    color: #e75480;
    font-size: 48px;                  /* optional: bigger heading */
    margin-bottom: 40px;              /* spacing under title */
    text-align: center;               /* keep it centered */
}

.navbar-nav .nav-link.active {
    color: #e75480 !important;
}

/* Card-style dropdown menu */
.navbar .dropdown-menu {
    background-color: #ffe6ec;  /* your soft pink theme */
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Dropdown items spacing */
.navbar .dropdown-item {
    padding: 10px 20px;
    font-size: 1.1rem;
}

/* Hover effect for items */
.navbar .dropdown-item:hover {
    background-color: #ffe6ec; /* matches your theme */
    color: #000;
}

.brand {
    font-family: 'Allura', cursive;
    color: #e75480;
    font-size: 40px;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 25px;
  }

html, body {
      margin: 0;
      background-color: #ffe6ec; /* Light pink for the whole page */
}

#site-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background-color: #ffe6ec;
}

#form-message {
    font-family: "Twinkle Star", cursive;
    font-size: 30px;
}

.faq-item {
    background-color: #ffe6ec;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    border-color: #d94f91;
    box-shadow: 0 0 8px rgba(227, 114, 173, 0.4);
    color: #000;
    /*display: flex;*/
    /*flex-direction: column;*/
}

.faq-item, .faq-answer {
    max-width: 100%;
    min-width: 0;
}

.faq-question {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 25px;
}
/*.faq-item,*/
/*.faq-answer,*/
/*.service-list li {*/
/*    overflow-wrap: break-word;*/
/*    word-break: normal;*/
/*    white-space: normal;*/
/*}*/

@media (max-width: 600px) {
    body {
        padding: 20px 15px;
    }

    .faq-question {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {

    .brand-text h3 {
        font-size: 32px;
        margin-bottom: 0.5rem !important;
    }

    .brand-text h5 {
        font-size: 12px;
        letter-spacing: 0.05em !important;
    }

}

@media (max-width: 768px) {
    .navbar-brand img {
        display: none;
    }

}

.services-content {
    max-width: 900px;
    /*text-align: center;*/
}

.service-list {
    /*display: inline-block;*/
    /*max-width: 350px;*/
    /*margin-left: auto;*/
    /*margin-right: auto;*/
    /*text-align: center;*/
    /*margin: 0 auto;*/
    padding-left: 0;
    /*margin-left: 0;*/
    list-style-position: inside;
    margin: 0 auto;
}

.service-list li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
    font-size: 25px;
    /*white-space: nowrap;*/
}

/*.service-list li {*/
/*    white-space: normal;*/
/*    !*overflow-wrap: anywhere;*!*/
/*    word-break: normal;*/
/*}*/

h2 {
    color: #e75480;
    font-family: 'Twinkle Star', cursive;
}

body {
    overflow-x: hidden;
}

