/*-------- Copyright © 2021: Author : Anesu Maxwell Matanga All rights reserved
Copyright © 2021 : "Afrobraids.co.nz" All rights reserved
This source
code is protected under Copyright Law. You will not share or use this code in 
any way shape or form. --------*/

.navbar-nav.ms-auto li a {
    color: brown;
}

.navbar-nav.ms-auto li a:hover {
    color: crimson;
}

body nav div a.navbar-brand {
    color: brown;
}

.bgimage {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/try1.jpg');
    background-position: center;
    background-attachment: scroll;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}


.hero-title {
    font-size: 4.5rem;
}

.hero_desc {
    font-size: 2rem;
}

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.bgButton {
    text-align: center;
    position: absolute;
    top: 90%;


}

.bgButton button:hover {
    opacity: 0.6;
}


/*-----Typewriter Effects-----*/
/*span {
    animation: blinker 1s linear infinite;
}*/

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/*----- The Popup Modal Book Now ------*/

/* The Modal background */
.custom-modal {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}


/* The custom modal(content) */
.custom-modal-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding-top: 1%;
    padding-right: 2%;
    padding-left: 2%;
    padding-bottom: 0.5%;
    border: 1px solid #888;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    animation-name: animatetop;
    animation-duration: 0.4s;
    text-align: center;
}

/* Buttons inside the modal */

/* Buttons with price */
.custom-modal-content .price-button {
    background-color: dodgerblue;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    margin: 10px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition-duration: 0.4s;
    line-height: 1.5;
}

.custom-modal-content .price-button:hover {
    background-color: #444;
    color: white;
}

.custom-modal-content .price {
    font-size: 18px;
    display: block;
    animation: none;
}

.custom-modal-content .price-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    animation: none;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Add Animation */
@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

/* Add styles for the booking-option-link */
.booking-option-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.booking-option-link:hover {
    background-color: rgba(139, 69, 19, 0.2);
    /* Change to the desired brown color */
    color: brown;
}

.booking-option-link:active {
    background-color: rgba(139, 69, 19, 0.2);
    /* Change to the desired brown color */
}

.booking-option-link .booking-option {
    padding: 1rem;
}

.booking-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2%;
}

.more-link {
    text-decoration: none;
    color: brown;
}

.emojis {
    animation: none;
}

.fa-solid {
    color: gray;
    font-size: xx-large;
}

.custom-modal-content h4 b {
    font-family: initial;
    font-style: italic;
}

.custom-modal-content h3 b {  
    font-family: initial;
    font-style: italic;
}

h5 {
    font-size: 1rem;
}
.service-image {
    width: 8%;
    height: 5%;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 1rem;
}

.booking-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.divider {
    margin: 0;
}

/* Hide Modal by Default */
.hidden {
    display: none;
}

/* Tooltip Uber Braiding */
.tooltip-container {
  position: relative;
  display: inline-block;
}

.tooltip {
    visibility: hidden;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    bottom: 20%;
    left: 40%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
    animation: none;
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
    animation: none;
}

.fa-info-circle:hover + .tooltip {
    visibility: visible;
    opacity: 1;
}

/* User Bookings clientBookings Styling */
.content-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /*padding-top: 5%;*/
}

.content-container .clientBookings{
    padding-top: 5%;
}

.pastBookings h4 {
    flex: 1; /* This ensures that this section expands to fill available space */
    margin-top: 3%;
}

/* Booking.html Page form submission Loader */
.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }

}

/* Tooltip Uber Braiding ENDS */

/* Media Queries for smaller screen sizes */
@media screen and (max-width: 767px) {
    .tooltip {
        left: 15%;
    }
    
    .custom-modal-content {
        margin: 21% auto;
    }
    
    .service-image {
        width: 10%;
    }
    
    .booking-option-link .booking-option {
        padding: 0rem;
    }

    .booking-option{
        padding: 2%;
    }
    
    .h5Modal {
        font-size: 1.1rem;
    }

    .content-container .clientBookings{
        padding-top: 22%;
    }

    .pastBookings h4 {
        margin-top: 8%;
    }

    div #afrobraidsCash #daysRemaining{
        margin-top: 15%;
    }

    
}

@media screen and (min-width: 250px) and (max-width: 349px) {
    body{
        font-size: x-small;
    }
    div #afrobraidsCash #daysRemaining{
        margin-top: 21%;
    }
}

@media screen and (min-width: 350px) and (max-width: 549px) {
    div #afrobraidsCash #daysRemaining{
        margin-top: 17%;
    }
}

@media screen and (min-width: 550px) and (max-width: 767px) {
    div #afrobraidsCash #daysRemaining{
        margin-top: 10%;
    }
}

@media screen and (min-width: 768px) and (max-width: 840px) {
    .custom-modal-content {
        margin: 11% auto;
    }

    .content-container .clientBookings{
        padding-top: 12%;
    }

    .pastBookings h4 {
        margin-top: 6%;
    }


    div #afrobraidsCash #daysRemaining{
        margin-top: 8%;
    }
}


@media screen and (min-width: 841px) and (max-width: 1160px) {
    .custom-modal-content {
        margin: 8% auto;
    }

    .content-container .clientBookings{
        padding-top: 8%;
    }

    .pastBookings h4 {
        margin-top: 4%;
    }

    div #afrobraidsCash #daysRemaining{
        margin-top: 7%;
    }
}

@media screen and (min-width: 1161px) and (max-width: 1370px) {
    div #afrobraidsCash #daysRemaining{
        margin-top: 5%;
    }
}

section {
    background-color: white;
}

.container {
    position: relative;
    /* z-index: 1; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.container .card {
    position: relative;
    width: 300px;
    height: 400px;
    background: white;
    margin: 20px;
    -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    -khtml-border-radius: 15px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container.card.content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.container .card:hover .content {
    transform: translateY(-20px);
}

.container .card .content .imgBx {
    position: relative;
    width: 150px;
    height: 200px;
    overflow: hidden;
}

.container .card .content .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container .card .content .contentBx h3 {
    color: gray;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    margin: 20px 0 10px;
    line-height: 1.1em;
}

.container .card .content .contentBx h3 span {
    font-size: 12px;
    font-weight: 300;
    text-transform: initial;
}

.container .card ul li.sci {
    position: absolute;
    text-align: center;
    bottom: 50px;
    display: flex;
}

.container .card .sci li {
    list-style: none;
    text-align: center;
    margin-top: 1px;
    transform: translateY(40px);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
}

.container .card:hover .sci li {
    transform: translateY(0px);
    opacity: 1;
}

.container .card .sci li a {
    color: brown;
    font-size: 20px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.services {
    text-align: center;
    padding: 20px;
}

.navbarScroll.navbarDark {
    background-color: #fffde7;
}

#contact.contactMeBtn a {
    text-decoration: none;
    color: black;
}

.button-click {
    text-align: center;
    padding: 10px;
}

#about-Us h2 {
    text-align: center;
    padding: 20px;
}

#about-us {
    text-align: center;
    margin: auto;
    /*background-color: mintcream;*/
    color: #858f8b;
}

.bgimage p {
    font-size: 20px;
}

section button .btn {
    background-color: black;
}

#footer-container {
    position: absolute;
    width: 100%;
    left: 0px;
    right: 0;
    z-index: 999;

}

footer section {
    background-color: #fffde7;
}

footer .copyright-color p {
    color: black;
    font-size: 10px;
}

footer .copyright-color p a:hover {
    opacity: 0.5;
}

#contact.contactMeBtn a {
    text-decoration: none;
    color: black;

}

.contact-form-doc {
    margin: 0;
    padding: 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    font-family: sans-serif;
}


.contact-title {
    margin-top: 100px;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: all 4s ease-in-out;
    -moz-transition: all 4s ease-in-out;
    -o-transition: all 4s ease-in-out;
    transition: all 4s ease-in-out;
}

.contact-title h1 {
    font-size: 32px;
    line-height: 10px;
    color: #231F20;
}

.contact-title h2 {
    font-size: 16px;
    color: #231F20;
}

form {
    margin-top: 50px;
    -webkit-transition: all 4s ease-in-out;
    -moz-transition: all 4s ease-in-out;
    -o-transition: all 4s ease-in-out;
    transition: all 4s ease-in-out;
}

input {
    height: 45px;
}

.contact-form-doc .submit {
    background: #89CFF0;
    border-color: transparent;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
    height: 50px;
}

.contact-form-doc .submit:hover {
    opacity: 0.7;
}

.contact-form-doc nav {
    background-color: #fffde7;
}

.tooltip-container img .afterpayLogo {
    width: 95px;
}

div #afrobraidsCash {
    margin-top: 4%;
    font-weight: bold;
    color: lightpink; /* gold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: shimmer 2s infinite;

}

@keyframes shimmer{
    0% { background-position: -500px; }
    100% { background-position: 500px; }
}

/*Booking.html styling */
label.form-label{
    color: black;
}

form.form-group{
    margin-top: 0%;
}

/*For the popup datepicker*/
#ui-datepicker-div table tbody a.ui-state-default {
    background: #FFFDE7 50% 50% repeat-x;
}

#ui-datepicker-div table tbody a.ui-state-default.ui-state-active{
    border: 1px solid #093A3E;
}

#ui-datepicker-div .ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all {
    color: #093A3E;
}

#ui-datepicker-div table tbody a.ui-state-default.ui-state-highlight {
    background-color: #093B3F;
    color: white;
}

div#ui-datepicker-div {
    border: 1px solid #083A3E;
}

/* AdminDashboard styling */
.col-auto.col-md-3.col-xl-2.px-sm-2.px-0 {
    background-color: #07393C;
}

/* Booking Page */
h2#bookAppointmentTitle {
    margin-top: 5%;
}

/*------- Copyright © 2021: Author : Anesu Maxwell Matanga All rights reserved
Copyright © 2021 : "Afrobraids.co.nz" All rights reserved
This source
code is protected under Copyright Law. You will not share or use this code in 
any way shape or form. -------*/
