/* style.css */
body {
    font-family: 'Mulish', sans-serif;
    max-width: 1440px;
    margin: 0 auto;
    /* background-color: #fcecfd; */
    /* background-color: #fae5fc; */
    background-color: #fdf6fe;
    color: black;
    min-height: 200vh;
}

#nav-div {
    border-bottom: 2px solid #8800c7;
}

#nav-bottom {
    border: 2px solid #8800c7;
    border-top: 0;
}

#main-div {
    padding: 0 12px;
    padding-top: 12px;
    margin: 0 auto;
    /* background-color: #fcecfd; */
    /* background-color: #fae5fc; */
    /* background-color: #fcfaff; */
    border: 2px solid #8800c7;
    border-top: 0;
}

fieldset {
    border: solid #8800c7;
    border-width: 2px 0 0 0;
    /* border-radius: 1px; */
    padding: 18px 0;
    margin: 18px 0;
    /* background-color: white; */
    /* box-shadow: 4px 4px 10px #dadada; */
}

select:focus {
    box-shadow: 8px 8px 8px #dadada;
}

span .requiredfield {
    display: block;
}

input {
    border-color: red;
    border-width: 2px;
}


.requiredfield {
    margin-top: 0;
    margin-bottom: 0;
    visibility: hidden;
    color: crimson;
    font-size: .9rem;
}

/* .nav-link {
    font-size: large;
    font-weight: 900;
    color: #8800c7;
    position: relative;
    transition: padding-top 0.3s, border-top 0.3s;
}

.nav-link:hover {
    color: #5b0085;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: #5b0085;
    transform: scaleX(0);
    transition: transform 0.3s, bottom 0.3s;
}

.nav-link:hover::after {
    transform: scaleX(1);
    bottom: 100%;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238800c7'%3e%3cpath fill-rule='evenodd' d='M1.5 12.5h13a.5.5 0 010 1h-13a.5.5 0 010-1zm0-5h13a.5.5 0 010 1h-13a.5.5 0 010-1zm0-5h13a.5.5 0 010 1h-13a.5.5 0 010-1z'/%3e%3c/svg%3e");
} */

.nav-link {
    font-size: large;
    font-weight: 900;
    color: #8800c7;
    position: relative;
    transition: padding-top 0.3s, border-top 0.3s;
}

.nav-link:hover {
    color: #5b0085;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    /* Start above the text */
    height: 2px;
    background-color: #5b0085;
    transform: scaleX(0);
    transition: transform 0.3s, bottom 0.3s;
}

.nav-link:hover::after {
    transform: scaleX(1);
    bottom: calc(100% + 5px);
    /* Move up 5px when hovered */
}


#active-link {
    font-size: large;
    font-weight: 900;
    color: #5b0085;
    border-top: 2px solid #5b0085;
    padding-top: 15px;
}

@media (max-width: 991.98px) {
    .nav-link:hover {
        color: #5b0085 !important;
        /* lighter purple on hover */
    }

    .nav-link::after {
        display: none !important;
        /* hide the animated underline */
    }

    #active-link {
        font-size: large;
        font-weight: 900;
        color: #5b0085;
        border-top: 0;
    }

    #active-link:hover {
        color: #5b0085;
        border-top: 0;
    }

}

.checkbox input[type="checkbox"],
.checkbox label {
    display: inline-block;
    vertical-align: middle;
}

.form-control:focus {
    /* border-color: black; */
    box-shadow: 1px 1px 8px #c7c7c7;
    border-width: 0;
}

.red-asterick {
    color: Crimson !important;
}

#contactMethod {
    border: 1px solid #8800c7;
    border-radius: 5px;
}

#contact-method label {
    display: block;
}

#requiredContact, #requiredTerms {
    visibility: hidden;
    color: Crimson;
    font-size: .9rem;
}

#contactPhone, #contactEmail, #contactMail {
    display: none;
}

#contactPhone label, #contactEmail label, #contactMail label {
    display: block;
}

#addDonut {
    border: 3px solid #d7098f;
    border-radius: 2px;
    padding: 4px 6px;
    background-color: #d7098f;
    color: white;
    font-weight: 700;
    font-size: .8rem;
}

#addDonut:hover {
    border: 3px solid #990264;
    background-color: #990264;
}

#submit {
    border: 3px solid #8800c7;
    border-radius: 2px;
    padding: 6px 12px;
    background-color: #8800c7;
    color: white;
    font-weight: 700;
}

#submit:hover {
    border: 3px solid #5b0085;
    background-color: #5b0085;
}

#submit-div {
    padding-left: 18px;
}

#order-title {
    color: Dodgerblue;
    font-weight: 700;
    border-top: 1px solid Dodgerblue;
}

#error-bucket {
    border-top: 3px solid red;
    border-radius: 4px;
    /* border-bottom: 3px solid red; */
}

#footer {
    border: 2px solid #8800c7;
    border-top: 0;
    font-size: medium;
    font-weight: 900;
    color: #8800c7;
}