/* Basisstijlen */
:root {
    --primary-color: #FFAA25; /* Default Brover Orange, will be overridden by PHP if set */
    --secondary-color: #002D62; /* Brover Dark Blue */
    --accent-color: #007bff; /* A general accent blue, can be adjusted */
    --text-color: #333;
    --text-color-light: #555;
    --background-color: #f9f9f9;
    --card-background-color: #fff;
    --border-color: #eee;
    --brover-orange: #FFAA25;
    --brover-dark-blue: #002D62;
}

body {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Responsieve Header & Navigatie */
.site-header {
    background: var(--card-background-color);
    padding: 1rem 5%;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px; /* Fixed height for consistent alignment */
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.show {
    display: block;
    opacity: 1;
}

/* Close Menu Button */
.close-menu-btn {
    display: none; /* Hidden on desktop */
}

.site-header .logo {
    display: flex;
    align-items: center;
    height: 60px; /* Match header height */
}

.site-header .logo img {
    height: 45px;
    width: auto;
}

.site-header .main-nav {
    display: flex;
    align-items: center;
    height: 60px; /* Fixed height for consistent alignment */
}

.site-header .main-nav a {
    margin-left: 15px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    height: 44px; /* Fixed height for all nav items */
    padding: 0 12px; /* Consistent horizontal padding */
    border-radius: 4px;
    line-height: 1;
}

.site-header .main-nav a:hover {
    color: var(--primary-color); /* Brover primary color */
    background-color: rgba(255, 170, 37, 0.1); /* Light orange hover background */
}

.site-header .main-nav a.active {
    color: var(--primary-color);
    background-color: rgba(255, 170, 37, 0.15); /* Slightly more prominent active state */
}

.site-header .main-nav a.btn {
    background: var(--primary-color);
    color: #fff;
    padding: 0 15px;
    border-radius: 4px;
    margin-left: 20px;
    height: 44px; /* Consistent height */
}

/* Solliciteer button styling - primary CTA button */
.site-header .main-nav a.solliciteer-btn {
    background: var(--secondary-color); /* Brover Dark Blue for strong CTA */
    color: #fff;
    padding: 0 20px; /* Remove vertical padding, use height instead */
    border-radius: 6px;
    margin-left: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 8px rgba(0, 45, 98, 0.3);
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    height: 48px; /* Slightly taller than other nav items to make it prominent */
    line-height: 1;
}

.site-header .main-nav a.solliciteer-btn:hover {
    background: #001f4b; /* Darker blue on hover */
    border-color: #001f4b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 45, 98, 0.4);
    color: #fff;
}

.site-header .main-nav a.solliciteer-btn.active {
    background: #001f4b;
    border-color: #001f4b;
    color: #fff;
}

.site-header .main-nav a.solliciteer-btn i {
    margin-right: 8px;
    font-size: 0.9em;
}

header nav a.btn:hover {
    background: #e69000; /* Darken primary color - consider deriving from var(--primary-color) if possible with CSS vars */
    color: #fff;
}

header nav a.user-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f3f3f3; /* Consider var(--light-gray) or similar */
    color: var(--text-color);
    margin-left: 15px;
    transition: all 0.3s ease;
}

header nav a.user-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* REMOVE/REPLACE old .main-nav a.user-icon and .admin-menu-dropdown .user-icon.admin-logged-in rules */

/* NEW UNIFIED Admin Dropdown Menu Styles */
.admin-menu-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 15px; /* Consistent margin with other nav items */
}

.admin-menu-trigger {
    display: flex;
    align-items: center;
    padding: 0 15px;
    text-decoration: none;
    color: var(--primary-color); /* Brover orange */
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    background-color: var(--card-background-color);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    font-size: 0.9em; /* Consistent with other nav links */
    font-weight: 500; /* Consistent with other nav links */
    cursor: pointer;
    white-space: nowrap;
    height: 44px; /* Same height as other nav items */
}

.admin-menu-trigger i.fas {
    margin-right: 6px; /* Space between icon and "Admin" text */
    font-size: 1.1em; /* Slightly larger icon */
}

.admin-menu-trigger i.fa-caret-down {
    margin-left: 6px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.admin-menu-trigger:hover,
.admin-menu-trigger.active { /* Style when dropdown is open or hovered */
    background-color: var(--secondary-color); /* Brover dark blue */
    color: #fff;
    border-color: var(--secondary-color);
}

.admin-menu-trigger.active i.fa-caret-down {
    transform: rotate(180deg);
}

.admin-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: var(--card-background-color); /* Changed from #f9f9f9 for better contrast with potential page backgrounds */
    min-width: 220px; /* Slightly wider */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.15); /* Softer shadow */
    z-index: 1000; /* Ensure it's above other content */
    border-radius: 4px;
    border: 1px solid var(--border-color); /* Light border for definition */
    padding: 5px 0; /* Padding for top/bottom of the list */
    margin-top: 8px; /* Space between button and dropdown */
    list-style: none;
}

.admin-dropdown-content.show {
    display: block;
}

.admin-dropdown-content li a,
.admin-dropdown-content li span {
    color: var(--text-color);
    padding: 12px 20px; /* Increased padding for more vertical space */
    text-decoration: none;
    display: block;
    font-size: 0.9em;
    white-space: nowrap; /* Prevent wrapping */
    transition: background-color 0.2s ease, color 0.2s ease;
}

.admin-dropdown-content li a i {
    margin-right: 10px; /* More space for icon */
    color: var(--text-color-light);
    width: 16px; /* Ensure alignment */
    text-align: center;
    transition: color 0.2s ease;
}

.admin-dropdown-content li a:hover {
    background-color: var(--primary-color); /* Brover orange on hover */
    color: #fff !important; /* White text on hover, added !important to ensure override */
}

.admin-dropdown-content li a:hover i {
    color: #fff !important; /* White icon on hover, added !important to ensure override */
}

/* Responsive adjustments for user icon if needed */
@media (max-width: 768px) {
    .main-nav a.user-icon {
        margin-left: auto; /* Push to the right on mobile if it's the last item */
        padding: 8px 10px;
    }
    .main-nav a.user-icon.admin-logged-in {
        padding: 8px 10px; /* Consistent padding */
    }
    .admin-menu-dropdown { /* Ensure it aligns correctly in mobile nav */
        margin-left: 0; /* Reset margin if main-nav handles flex alignment */
    }
    .admin-dropdown-content {
        min-width: 200px;
        /* Consider making it full width or better positioned on mobile if it overflows */
        left: 0; /* Align to left on mobile if preferred, or adjust right */
        right: auto; 
    }
}

main {
    padding: 0;
    flex-grow: 1;
}

footer {
    padding: 40px 20px;
    background: var(--secondary-color); /* Brover Dark Blue */
    color: #fff;
    margin-top: 0;
}

footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Distributes space between columns */
    gap: 20px; /* Adds space between columns if they wrap */
}

footer .footer-column {
    flex: 1 1 280px; /* Grow, shrink, and base width. Adjust base width as needed. */
    min-width: 250px; /* Minimum width before wrapping */
    margin-bottom: 20px;
    padding: 0 15px;
}

footer h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 10px;
}

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

footer a:hover {
    color: var(--primary-color);
}

footer i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #3d5165;
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #aaa;
}

.btn {
    display: inline-block;
    background: var(--primary-color); /* Brover primary color */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #e69000; /* Darken primary - consider deriving */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn:hover,
.btn-primary:hover,
.btn-outline:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--secondary-color);
}

.btn-secondary:hover {
    background: #3d5165; /* Darken secondary - consider deriving */
}

.btn-primary {
    background: var(--secondary-color); /* Using secondary as primary button style */
    color: #fff;
}

.btn-primary:hover {
    background: #001f4b; /* Darken secondary - consider deriving */
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Apply Fast Message */
.apply-fast-message {
    background-color: #e6f7ff; /* Light blue background - could be a variable */
    color: #0050b3; /* Darker blue text - could be a variable */
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    display: inline-flex; /* To keep icon and text together */
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    border: 1px solid #91d5ff; /* Light blue border - could be a variable */
}

.apply-fast-message i {
    color: var(--accent-color); /* Primary blue for the icon */
    font-size: 1.1em;
}

/* Hero sectie */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1500&q=80') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 120px 20px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* About sectie */
.about-section {
    padding: 80px 5%;
    background: var(--card-background-color);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color); /* Brover Dark Blue */
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-color-light);
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Vacature categorieën */
.categories-section {
    padding: 80px 5%;
    background: var(--background-color);
}

.categories-heading {
    text-align: center;
    margin-bottom: 50px;
}

.categories-heading h2 {
    font-size: 2.2rem;
    color: var(--secondary-color); /* Brover Dark Blue */
    margin-bottom: 15px;
}

.categories-heading p {
    font-size: 1.1rem;
    color: #666; /* Could be var(--text-color-light) */
    max-width: 700px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: var(--card-background-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.category-card-content {
    padding: 25px 20px;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color); /* Brover Dark Blue */
}

.category-card p {
    color: #666; /* Could be var(--text-color-light) */
    margin-bottom: 20px;
}

.category-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

.category-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* CTA sectie */
.cta-section {
    background: var(--primary-color);
    padding: 80px 5%;
    text-align: center;
    color: #fff;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-section .btn {
    background: var(--card-background-color);
    color: var(--primary-color);
}

.cta-section .btn:hover {
    background: #f0f0f0; /* Lighten card background - consider deriving */
}

/* Contact form styling */
.contact-section {
    padding: 80px 5%;
    background: var(--card-background-color);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color); /* Brover Dark Blue */
}

.contact-info p {
    color: #666; /* Could be var(--text-color-light) */
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-detail i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: var(--background-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color); /* Brover Dark Blue */
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd; /* Could be var(--border-color) */
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Employee Reviews Section - Homepage */
.employee-reviews-section {
    padding: 80px 5%;
    background-color: var(--background-color); /* Light background for contrast */
}

.employee-reviews-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background-color: var(--card-background-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.review-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color); /* Brover orange border */
}

.review-image-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
}

.review-image-placeholder i {
    font-size: 40px;
    color: #adb5bd;
}

.review-text {
    font-style: italic;
    color: var(--text-color-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1em; /* Adjusted for better readability */
    flex-grow: 1; /* Allows text to take available space */
}

.review-author {
    margin-top: auto; /* Pushes author to the bottom if card heights vary */
}

.author-name {
    font-weight: 600;
    color: var(--secondary-color); /* Brover dark blue */
    display: block;
    font-size: 1.1em;
}

.author-role {
    font-size: 0.9em;
    color: #777;
}

/* Vacature lijst */
.vacature-section {
    padding: 80px 5%;
    background: var(--background-color);
}

.vacature-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 2.2rem;
    color: var(--secondary-color); /* Brover Dark Blue */
    margin-bottom: 15px;
}

.section-heading p {
    color: #666; /* Could be var(--text-color-light) */
    max-width: 700px;
    margin: 0 auto;
}

.vacature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vacature-card {
    background: var(--card-background-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.vacature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.vacature-card-content {
    padding: 20px;
}

.vacature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color); /* Brover Dark Blue */
}

.vacature-card h3 a {
    color: inherit;
    text-decoration: none;
}

.vacature-card h3 a:hover {
    color: var(--primary-color);
}

.vacature-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    color: #666; /* Could be var(--text-color-light) */
    font-size: 0.9rem;
}

.vacature-meta-item {
    display: flex;
    align-items: center;
}

.vacature-meta-item i {
    margin-right: 5px;
    color: var(--primary-color);
}

.vacature-description {
    color: var(--text-color-light);
    margin-bottom: 20px;
}

.vacature-card .btn {
    display: block;
    text-align: center;
}

/* Filters voor vacatures */
.filter-section {
    background: var(--card-background-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.filter-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-heading h3 {
    margin: 0;
    color: var(--secondary-color); /* Brover Dark Blue */
}

.filter-reset {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.filter-reset:hover {
    text-decoration: underline;
}

.filter-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.filter-group h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--secondary-color); /* Brover Dark Blue */
    font-size: 1rem;
}

.filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
}

.filter-checkbox input[type="checkbox"],
.filter-checkbox input[type="radio"] {
    margin-right: 8px;
}

.filter-checkbox.active {
    font-weight: 600;
    color: var(--primary-color);
}

.filter-checkbox .count {
    margin-left: 5px;
    font-size: 0.85em;
    color: #999;
    font-weight: normal;
}

.filter-checkbox.active .count {
    color: var(--primary-color);
}

.open-application {
    margin-top: 30px;
    text-align: center;
}

.open-application p {
    margin-bottom: 15px;
    color: #666; /* Could be var(--text-color-light) */
}

/* Vacature Detail & Sollicitatieformulier */
#vacature_detail_content h1, #vacature_detail_content h2 {
    color: var(--secondary-color); /* Brover Dark Blue */
}

#sollicitatie_formulier div {
    margin-bottom: 20px;
}

#sollicitatie_formulier label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color); /* Brover Dark Blue */
}

#sollicitatie_formulier input[type="text"],
#sollicitatie_formulier input[type="email"],
#sollicitatie_formulier input[type="tel"],
#sollicitatie_formulier input[type="file"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd; /* Could be var(--border-color) */
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

/* Admin Login Pagina */
.login-container {
    width: 400px;
    margin: 80px auto;
    padding: 30px;
    border-radius: 8px;
    background: var(--card-background-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.login-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-color); /* Brover Dark Blue */
}

.login-container .form-group {
    margin-bottom: 20px;
}

.login-container label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color); /* Brover Dark Blue */
    font-weight: 500;
}

.login-container input[type="text"],
.login-container input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd; /* Could be var(--border-color) */
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

/* Responsive aanpassingen */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero .btn-group {
        flex-direction: column;
    }
    
    .categories-heading h2,
    .section-heading h2,
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .login-container {
        width: 90%;
        padding: 20px;
    }
}
