
/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar-brand {
    font-family: 'Nunito', sans-serif;
}

body.verhuur .card {
    border-radius: 0;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: #dbeff4;
    color: #333;
}

.logo-container {
  width: 40px;      
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.logo-display {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.navbar {
    background: linear-gradient(to right, #e16ba6, #ec8fbb);
}

.navbar-brand, .nav-link {
    color: white !important;
}

.home-img {
    width: 100%;
    height: 200px; 
    object-fit: cover;
    border-radius: 0; 
}

.about-img {
    width: 100%;
    height: 250px; 
    object-fit: cover;
    border-radius: 0;
}

.footer {
    background-color: #71c6d4;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
    color: white;
}

h1, h2 {
    color: #e16ba6;
}

h1 {
    text-align: center;
    font-size: 40pt;
}

.subtitle {
    text-align: center;
}

.over-ons {
    text-align: center;
}

.btn-primary {
    background-color: #b2dee7;
    border-color: #71c6d4;
}

.card {
    border: none;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

body.contact .form-control {
    border-radius: 0;
}