/* Font Import */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Titles */

h2 {
    margin-bottom: 30px;
	color: #3E4581;
}

h3 {
    margin-bottom: 30px;
	color: #3E4581;
}

h4 {
    margin-bottom: 30px;
	color: #3E4581;
}

/* Text */
label {
	color: #3E4581;
}

p {
	font-size: 1rem;
    color: #3E4581;
}

a {
	color: #3E4581;
}

mark {
	color: #6a4cf8;
	background: none;
	margin: 0;
	padding: 0;
}


/* Buttons */
.btn-outline-primary {
    color: #6a4cf8;
	border-color: #6a4cf8;
}

.btn-outline-primary:hover {
    color: #ffffff;
	background-color:#6a4cf8;
	border-color: #6a4cf8;
}

.btn-primary {
    background-color: #6a4cf8;
    color: #fff;
}

.btn-primary:hover {
    background-color: #3E4581;
    color: #fff;
}

/* Navigation */
.navbar {
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: #6a4cf8;
}

.navbar-nav .nav-link {
    font-weight: 600;
	color: #6a4cf8;
}

.navbar .btn-primary {
    background-color: #6a4cf8;
    border-color: #6a4cf8;
    color: #fff;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(145deg, #eef1f7, #f5f7fa);
    background-image: url('hero_background.jpg'); /* Add the background image path here */
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 3.0rem;
    font-weight: 700;
    color: #3E4581;
}

.hero p {
    font-size: 1.2rem;
    color: #3E4581;
    margin-bottom: 20px;
}

.register-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.register-box h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
	color: #3E4581;
}

.register-box label {
	color: #3E4581;
}

/* USP Section */
.usp-section {
	background-color: transparent;
}

.usp-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #3E4581;
}

.usp-section p {
    color: #3E4581;
}

/* How it Works Section */
.how-it-works h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
	color: #3E4581;
}

.how-it-works h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3E4581;
}

.how-it-works p {
    font-size: 1rem;
    color: #3E4581;
}

/* Statistics Section */
.stats h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
	color: #3E4581;
}

.stats p {
    font-size: 1rem;
    color: #3E4581;
}

/* Footer */
.footer {
    background-color: #3E4581;
    color: #fff;
}

.footer nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

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

/* Bestellingen van vandaag */
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 15px;
}

.card-title {
    font-size: 1.25rem;
    color: #2b2b2b;
    font-weight: 600;
}

.card-text strong {
    color: #6a4cf8;
}

.btn-danger {
    background-color: #ff4d4d;
    border-color: #ff4d4d;
}

@media (max-width: 576px) {
    .card-title {
        font-size: 1.1rem;
    }
}

