@font-face {
    font-family: 'poppins';
    src: url("/fonts/poppins.ttf");
}

@font-face {
    font-family: 'nonchalanceM';
    src: url("/fonts/NonchalanceM.otf");
}

@font-face {
    font-family:'nonchalanceB';
    src: url("/fonts/Nonchalance.otf");
}

@font-face {
    font-family: 'salvador';
    src: url("/fonts/Salvador.ttf");
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: #fff;
    line-height: 1.6;
}

/* Hero Banner */
.hero {
    background: url('../images/cover.jpeg') center center/cover no-repeat;
    background-size: cover;
    height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero div {
    z-index: 2;
}

.hero h1 {
    font-family: 'salvador';
    font-size: 4rem;
    /*background: rgba(0, 0, 0, 0.9);*/
    padding: 1rem 2rem;
    color: #FF4AB3;
}

.hero p {
    font-size: 1.3rem;
    color: #D1EC3F;
    font-weight: bold;
    font-family: 'salvador';
}

/* Buttons */
.btn-primary {
    background-color: #FF9D60;
    color: #E6B4F4;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'salvador';
}

.btn-primary:hover {
    background-color: #07BDD6;
    color: #E6B4F4;
}

.btn-secondary {
    border-radius: 0;
    text-transform: uppercase;
    color: #E6B4F4;
}

/* Cards */
.card {
    border: none;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.02);
}

.card-title {
    text-transform: uppercase;
    font-weight: bold;
    color: #D1EC3F;
    font-family: 'nonchalanceM';
    font-size: 2rem;
}

.card-text {
    color: #FF9D60;
}

/* USP Sectie */
.usp i {
    font-size: 3rem;
    color: #B5179E;
    margin-bottom: 0.5rem;
}

.usp p {
    color: #ccc;
}

/* Footer */
footer {
    background-color: #07BDD6;
    padding: 2rem 0;
    font-size: 0.9rem;
    font-family: 'nonchalanceM';
}

footer a {
    color: #B5179E;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive aanpassing */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .card-title {
        font-size: 1rem;
    }
}

.navbar-brand {
    font-family: 'salvador';
    color: #FF4AB3;
}

.nav-link {
    font-family: 'salvador';
    color: #D1EC3F;
}

/* Active nav link */
.nav-link.active {
    color: #E6B4F4 !important;
}

.card-title {
    color: #D1EC3F;
    font-size: 2rem;
}

.card-text {
    color: #07BDD6;
    font-family: 'nonchalanceM';
}

label {
    color: #ccc;
}

input,
textarea {
    background-color: #E6B4F4;
    color: #fff;
    border: 1px solid #444;
}

input::placeholder,
textarea::placeholder {
    color: #777;
}

.col-lg-6 p {
    font-family: 'nonchalanceM';
}

.form-label {
    font-family: 'nonchalanceB';
    color: #E6B4F4;
}

.form-control {
    font-family: 'nonchalanceM';
}

.title {
    font-family: 'poppins';
    font-size: 32pt;
    color: #FF9D60;
}

h4 {
    font-family: 'nonchalanceB';
}

p, ul {
    font-family: 'nonchalanceM';
}