@font-face {
    font-family: DMSerifText-Regular;
    src: url(../font/DMSerifText-Regular.ttf);
}

@font-face {
    font-family: broodtekst;
    src: url(../font/Poppins-Regular.ttf);
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}
body{
    font-family: broodtekst;
    font-weight: normal;
}
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 60px;
    line-height: 60px; /* Vertically center the text there */
    border-top:1px solid #e5e5e5;
}


/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */


.footer > .container {
    padding-right: 15px;
    padding-left: 15px;
}



.logo{
    height: 35px;
    margin: 5px 0 5px 0;
}
.woordmerk{
    font-family: DMSerifText-Regular;
    text-underline: none;
    font-size: 40px;
    text-transform: lowercase;
    color:#000000;
    font-weight: bold;


}
.woordmerk:first-of-type + span {
    color: #43ac34;
}
.woordmerk-mute {
    font-family: DMSerifText-Regular;
    text-decoration: none;
    font-size: 30px;
    text-transform: lowercase;
    font-weight: bold;
    position: relative;
    color: #9c9c9c; /* Standaard tekstkleur */
    background: linear-gradient(120deg, #9c9c9c 20%, #ffffff 50%, #9c9c9c 80%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent; /* Zorgt dat alleen de achtergrond zichtbaar is */
    animation: shine-text 7s infinite; /* 1s glans + 1s pauze */
}

@keyframes shine-text {
    0% {
        background-position: -150% 0;
    }
    50% { /* Glans duurt 1 seconde */
        background-position: 150% 0;
    }
    51% {
        background-position: 150% 0; /* Begin van de pauze */
    }
    100% {
        background-position: 150% 0; /* Pauze blijft actief */
    }
}


h1{
    font-family: DMSerifText-Regular;
    color: #43ac34;
    font-size: 42px;
    font-weight: bold;
    margin-top: 10px;

}

h3, h2{
    font-family: DMSerifText-Regular;
    font-weight: bold;

}


h4, .main-font-color{
    color: #43ac34;

}
.btn-success{
    background-color: #43ac34;
    border:none;
    border-radius: 50px;
}

.btn-success-outline{
    border:3px solid #43ac34;
    background-color: #FFFFFF;
    color: #000000;
    border-radius: 50px;

}

.btn-success-outline:hover{
    border:3px solid #43ac34;
    background-color: #e5e5e5;
    color: #000000;
    border-radius: 50px;

}
.btn-info, .btn-danger, .btn-secondary{
    border:none;
    border-radius: 50px;
    color: #FFFFFF;
}
.table-hover tbody tr:hover td {

    background-color: #e1ffdc;
}

.status-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

.green {
    background-color: #43ac34;
}
.red {
    background-color: red;
}
.status-indicator.hidden {
    visibility: hidden;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.form-control-sm{
    border: 1px solid #999999;
    height: 35px;
    border-radius: 10px;
}

.sub-title {
    font-family: DMSerifText-Regular;
    font-size: 1.7em;
    margin-bottom: 20px;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link{
    text-decoration: none;


}

.nav-link{
    color: #000000;
    text-decoration: underline;
}

.active > .page-link{
background-color: #43ac34; !important;
border: 1px solid #43ac34;;
}

.page-link{
    color: #000000;
}

td.celcard{
    background-color: transparent;
    color: #FFFFFF;
}

.shadowboxcard {
    position: relative;
    background-color: #43ac34;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    overflow: hidden;
}

.shadowboxcard::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-30deg);
    animation: shine 12s infinite; /* 2s animatie + 10s pauze */
}

@keyframes shine {
    0% {
        left: -100%;
    }
    10% {
        left: 100%;
    }
    100% {
        left: 100%; /* Blijf aan de rechterkant voor de rest van de 10s */
    }
}

/*public*/
/* Dropdown-menu tonen bij hover */
.user-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    border: none;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
}

/* Verberg menu standaard */
.user-dropdown .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 5s ease-in-out;
}


/* register.php */

.strength-indicator {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.strength-indicator div {
    width: 50px;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 3px;
}

.strength-weak { background-color: #DF6056 !important;;  }
.strength-medium { background-color: #ffb612 !important;; }
.strength-strong { background-color: #76d2b6 !important;; }
.strength-very-strong { background-color: #39870c !important;; }

small{
    color: #DF6056;
}

.strength-feedback {
    font-weight: bold;
}

.form-label{
    font-weight: bold;
}

.form-login{
    border: 1px solid #bcbcbc;
    height: 40px;
}

ul.custom-list {
    list-style: none;
    padding: 0;
}

ul.custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

ul.custom-list li::before {
    content: '\2714'; /* Unicode voor een vinkje */
    position: absolute;
    left: 0;
    top: 0;
    color: green;
    font-weight: bold;
}

/* index.php*/

.iconsvg {
    opacity: 0;
    transform: scale(0.5) rotate(-15deg);
    transition: opacity 0.5s ease, transform 0.7s ease;
}

.iconsvg.visible {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    animation: bounce 1s ease-out;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
    70% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}


/* fetekende borders*/

/* Getekende lijn voor invoervelden */
.getekende-border {
    border: 2px dashed #000; /* Gedashte zwarte lijn */
    position: relative;
    padding: 10px;
}

/* Marker in de hoek van de input */
.getekende-border:before {
    content: '✏️'; /* Het markertje, een potlood-emoji in dit geval */
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 20px;
}
