/* ================================
   GOOGLE FONT: Open SANS
   ================================ */
@font-face {
  font-family: Rooney;
  src: url("fonts/Rooney Sans Medium.woff");
}



/* Basistekst voor alles */
html, body, input, button, select, textarea, p {
    font-family: Calibri, Helvetica,Arial,sans-serif!important;
    font-size: 1.1rem;       
    line-height: 1.6;
    font-weight: 300;
    color: inherit;          /* laat de standaardkleur van het element staan */
    margin: 0 0 1em;
}
ul, li, ol, optgroup, option {
    font-family: inherit;
    font-size: inherit;    
    font-weight: inherit;
    /*color: #495057!important;*/
}


/* Kopteksten */
h1, h2, h3, h4, h5, h6 {
    font-family: Rooney, sans-serif !important;
    color: #0056a0;
    font-weight: 400;
    margin: 0 0 1em;
}

.login-screen {
  min-height:550px;
  width: 100%;
  background-size:cover;
  left:0px;
  background-color: #CCC;
  background-image: url("images/banner.jpg");
  background-repeat: repeat-x;
  margin-bottom:25px;
  position: relative;        /* ← toegevoegd */
  overflow: hidden;        
}
.login-screen h1 {
  color:white; 
}
.login-screen h2 {
  font-family: "Rooney", Calibri, Helvetica,Arial,sans-serif!important;
  font-weight:bold!important;
  color:#fff!important;
}
.login-screen h3 {
  font-family: "Rooney", Calibri, Helvetica,Arial,sans-serif!important;
  font-weight:bold!important;
  color:#fff!important;
  line-height: 32px!important;
  color:white;
}

.login-screen h4 {
  color:white; 
  font-weight: 300!important;
  line-height: 24px!important;
}
.login-screen h5 {
  color:white; 
  font-weight: 100!important;
  line-height: 18px!important;
  font-size: 16px!important;
}
.login-screen .navbar {
  background-color: #0056A0;
}

/* GOLFEN */
.login-screen .hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    line-height: 0;
    z-index: 5;
}

.login-screen .hero-waves svg {
    position: relative;
    display: block;
    width: calc(200% + 1.3px);
    height: 80px;
}

.login-screen .wave1 use {
    animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
    fill: rgba(255, 255, 255, 0.3);
}

.login-screen .wave2 use {
    animation: move-forever2 8s linear infinite;
    animation-delay: -2s;
    fill: rgba(255, 255, 255, 0.5);
}

.login-screen .wave3 use {
    animation: move-forever3 6s linear infinite;
    animation-delay: -2s;
    fill: rgba(255, 255, 255, 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); } }


