/* ================================
   FONTS
   ================================ */
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter Italic';
  src: url('fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ================================
   BASISTEKST
   ================================ */
html, body, input, button, select, textarea, p {
    font-family: "Inter", Helvetica, Arial, sans-serif!important;
    font-size: 1.1rem;       
    line-height: 1.6;
    font-weight: 300;
    color: inherit;
}

/* Kopteksten */
h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", Helvetica, Arial, sans-serif!important;
    color: #5D1D62;
    font-weight: 300;
}

/* ================================
   LOGIN HERO - PRO PERSONA STYLE
   ================================ */
.login-screen {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #CCC;
    background: url("images/banner.jpg") center top / cover no-repeat;
    overflow: hidden;
}

/* H1 + small schaalbaar */
.login-screen h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem); /* dynamische schaal */
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    text-align: left;
}

.login-screen h1 small {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.2em;
}

/* H2, H3, P consistent */
.login-screen h2, .login-screen h3, .login-screen p {
    font-family: 'Inter', sans-serif;
}


/* Overlay over background image */
.login-screen::before {
    content: "";
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(93,29,98,0.15);
    z-index:0;
}

/* Zorg dat tekst boven overlay staat */
.login-screen h1, .login-screen h2, .login-screen p, .login-screen a.btn {
    position: relative;
    z-index:1;
}

/* ================================
   HERO WAVES
   ================================ */
.login-screen .hero-waves {
    position: absolute;
    bottom:0; left:0;
    width:100%; height:100px;
    z-index:0;
}

.login-screen .hero-waves svg { 
    width:200%; 
    height:100px; 
}

.login-screen .wave1 use { 
    animation: move-forever1 10s linear infinite; 
    fill: rgba(93,29,98,0.3); 
}
.login-screen .wave2 use { 
    animation: move-forever2 8s linear infinite; 
    fill: rgba(93,29,98,0.5); 
}
.login-screen .wave3 use { 
    animation: move-forever3 6s linear infinite; 
    fill: rgba(93,29,98,0.7); 
}

@keyframes move-forever1 { 0% { transform:translateX(85px); } 100%{transform:translateX(-90px);} }
@keyframes move-forever2 { 0% { transform:translateX(-90px); } 100%{transform:translateX(85px);} }
@keyframes move-forever3 { 0% { transform:translateX(-90px); } 100%{transform:translateX(85px);} }


/* ================================
   LOGIN CARD
   ================================ */
.login-screen .card {
    margin-top: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ================================
   PROPERSONA PURPLE
   ================================ */
.purple-bar {
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #5D1D62, #7E3B82);
}
.bg-purple {
    background-color: #5D1D62!important;

}
.text-purple { color:#5D1D62 !important; }

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 992px) {
    .login-screen {
        padding: 60px 15px 100px;
        min-height: 400px;
    }
    .login-screen h1, .login-screen h1 small { text-align: center; }
    .login-screen h2 { font-size: 1.8rem; text-align: center; }
    .login-screen .hero-waves { height: 70px; }
}

@media (max-width: 576px) {
    .login-screen {
        padding: 50px 15px 90px;
        min-height: 360px;
    }
    .login-screen h1, .login-screen h1 small { text-align: center; font-size: clamp(1.8rem,5vw,2.3rem); }
    .login-screen h2 { font-size: 1.6rem; text-align: center; }
    .login-screen .hero-waves { height: 60px; }
}
