/* Algemene Stijlen */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #f0f8ff;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #ff69b4;
    color: white;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
}

.nav-link:hover {
    text-decoration: underline;
}

/* Hero sectie */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #282c34;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-logo {
    width: 50%;
    max-width: 600px;
  
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.btn {
    /* background-color: #ff69b4; */
    color: white;
}

.btn:hover {
    background-color: #ff85c1;
}

/* Over Sam */
.bg-light {
    background-color: #f8f9fa !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Footer */
.bg-pink {
    background-color: #ff69b4 !important;
}

.text-white {
    color: white;
}

.social-icon {
    width: 40px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.bg-blue {
    background-color: #003366 !important;
}

