/* Algemene reset */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* NAVBAR */
.navbar {
    background: #1f2937;
    padding: 15px 30px;
    display: flex;
    align-items: center; /* verticale centrering */
    justify-content: space-between; /* logo links, links rechts */
    max-height: 50px;
}
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: 0.3s;
}
.nav-links a:hover {
    background: #374151;
}
.logo {
    margin-left: 30px;
    width: 150px;
    font-weight: bold;
    color: white;
margin-top: 15px;
}

/* HERO */
.hero {
    position: relative;
    height: 90vh;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

/* PACKAGES */
.packages-section h2,
.packages-section p {
    text-align: center; /* forceer centreren */
}

/* FOOTER */
/* FOOTER */
.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 50px 30px 20px;
}
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}
.footer-col h3 {
    color: #22c55e;
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}
.footer-col p {
    margin-bottom: 10px;
    line-height: 1.6;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 8px;
}
.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: 0.3s;
}
.footer-col ul li a:hover {
    color: #22c55e;
}

/* Footer bottom */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
    border-top: 1px solid #374151;
    padding-top: 15px;
}
/* HERO */
/* HERO */
.hero {
    position: relative;
    height: 70vh; /* hoogte van de afbeelding verkleind */
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 70%;
    left: 37%;
    transform: translateY(-50%);
    text-align: center;
    color: white;
    max-width: 400px; /* smaller zodat het in 2 regels past */
    white-space: normal; /* laat tekst afbreken */
    word-break: break-word; /* voorkomt dat woorden te lang doorlopen */
    line-height: 1.3; /* zorgt voor compacte regelafstand */
}
.hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-text p {
    margin-top: 10px;
    font-size: 1.2rem;
}

.cta-btn {
    display: inline-block;
    background: #22c55e;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #16a34a;
}

.cta-btn.edit {
    background: #22c55e;
}
.cta-btn.edit:hover {
    background: #16a34a;
}

.cta-btn.delete {
    background: #ef4444;
}
.cta-btn.delete:hover {
    background: #dc2626;
}
a.cta-btn {
    display: inline-block;
    text-align: center;
    cursor: pointer;
}
.cta-btn.cancel {
    background: #9ca3af; /* gri */
}
.cta-btn.cancel:hover {
    background: #6b7280;
}


/* STATS */
.stats-section {
    background: #111827;
    padding: 60px 20px;
}
.stats-grid {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}
.stat-box {
    background: #1f2937;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: white;
}

/* ABOUT */
.about-section {
    padding: 80px 20px;
    background: white;
}
.about-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.about-img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
}
.about-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* PACKAGES */
.packages-section {
    padding: 80px 20px;
    background: #f9fafb;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}
.package-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.package-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.package-box p {
    color: #4b5563;
    margin-bottom: 15px;
}
.price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.btn {
    background: #22c55e;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}
.btn:hover {
    background: #16a34a;
}
.highlight {
    border: 2px solid #22c55e;
}

/* FOOTER */
.footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 20px;
    text-align: center;
}
.login-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f3f4f6;
    font-family: 'Segoe UI', sans-serif;
}

.login {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.login h1 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.login input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    margin-left: -10px;
}

.login button {
    width: 100%;
    padding: 0.75rem;
    background-color: #1f2937;
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.login button:hover {
    background-color: #111827;
}

.register-button {
    color: #2563eb;
    text-decoration: none;
}

/* MELDINGEN (NOTIFICATIONS) */
@keyframes slideInFromTop {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.alert {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #dc2626;
    padding: 15px;
    border-radius: 5px;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 400px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: slideInFromTop 0.5s ease-out;
}

.success {
    background-color: #d1fae5;
    border: 1px solid #a7f3d0;
    color: #059669;
    padding: 15px;
    border-radius: 5px;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 400px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: slideInFromTop 0.5s ease-out;
}

.alert .close-btn,
.success .close-btn {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: inherit;
    margin: 5px;
}

.alert .close-btn:hover,
.success .close-btn:hover {
    opacity: 0.7;
}

.alert p {
    color: #dc2626;
}

.success p {
    color: #059669;
}


/*rijinstructeurs_lijst*/

.container33 {
    width: 100%;
    max-width: 1000px;
    margin: auto;
}

.header33 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.header33 h1 {
    font-size: 20px;
    margin: 0;
    color: #1e3a8a; /* donkerblauw */
}

.header33 p {
    margin: 0;
    color: #64748b;
}

.grid33 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.card33 {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meta33 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar33 {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1e3a8a, #22c55e); /* donkerblauw → groen */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.name33 {
    font-weight: 700;
    color: #1e3a8a;
}

.role33 {
    color: #64748b;
    font-size: 13px;
}

.rating33 {
    margin-left: auto;
    color: #22c55e; /* groen */
    font-weight: 700;
}

.info33 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.chip33 {
    font-size: 13px;
    padding: 6px 8px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #0b1220;
}

.desc33 {
    margin: 8px 0 0 0;
    color: #475569;
    font-size: 14px;
}

.actions33 {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.btn33 {
    border: 0;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

.btn33-primary {
    background: #22c55e; /* groen */
    color: white;
}

.btn33-outline {
    background: transparent;
    border: 1px solid #1e3a8a; /* donkerblauw */
    color: #1e3a8a;
}

.btn33-outline:hover {
    background: #1e3a8a;
    color: white;
}

.btn33-primary:hover {
    background: #16a34a; /* donkerder groen */
}

@media (max-width: 520px) {
    .avatar33 {
        width: 48px;
        height: 48px;
    }
}

/* Flash badge */
.badge {
    display: inline-block;
    background: #00c853;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Tablo */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    background: #10182c;
    color: white;
    border-radius: 8px;
    overflow: hidden;
}
table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
th, td {
    padding: 8px;
    border-bottom: 1px solid #333;
    text-align: left;
}
thead {
    background: #18233d;
}

th, td {
    padding: 12px 15px;
    text-align: left;
}

th {
    color: #00c853;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

tr:nth-child(even) {
    background: #151d31;
}

.actions a {
    margin-right: 12px;
    font-weight: 500;
}

/* Form */
form.form {
    background: #10182c;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
}

form.form div {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

input:focus, select:focus {
    outline: none;
    border-color: #00c853;
}


form a {
    color: #ccc;
}
form a:hover {
    color: #fff;
}


/* calendar */
/*Calendar*/
:root {
    --green: #22c55e;          /* felgroen accent */
    --darkgreen: #15803d;      /* donkere variant voor hover */
    --blue: #2563eb;           /* helder blauw accent */
    --darkblue: #1e3a8a;       /* donkerblauw tekstaccent */
    --background: #f8fafc;     /* lichtgrijze paginabackground */
    --muted: #64748b;          /* zachte grijstint voor tekst */
    --text: #0f172a;           /* donkere tekstkleur */
}

/* === FullCalendar witte stijl === */
.fc-theme-standard td,
.fc-theme-standard th {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
}

/* Dagcellen wit houden */
.fc-daygrid-day {
    background-color: #ffffff !important;
}

/* Vandaag lichtgroen markeren */
.fc-daygrid-day.fc-day-today {
    background-color: #ecfdf5 !important;
    border: 2px solid var(--green) !important;
}

/* Weekdagen bovenaan */
.fc-col-header-cell {
    background-color: #f9fafb !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

/* Raster en achtergrond */
.fc-scrollgrid {
    border-color: #e2e8f0 !important;
    background-color: #ffffff !important;
}

/* Event (uurblokjes) */
.fc-event {
    border: none !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 13px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Algemene layout */
body {
    background: var(--background);
    color: var(--text);
    font-family: "Inter", sans-serif;
}

/* Container */
.container33 {
    max-width: 950px;
    margin: 0 auto;
    padding: 30px;
}

/* Header */
.header33 h1 {
    color: var(--darkblue);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}
.header33 p {
    color: var(--muted);
    margin: 0;
    font-size: 15px;
}

/* Kalender */
#calendar {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    margin-top: 25px;
}

/* FullCalendar header */
.fc-toolbar-title {
    color: var(--darkblue);
    font-size: 20px;
    font-weight: 700;
}
.fc-button {
    background-color: var(--green) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 6px 14px !important;
    font-weight: 600 !important;
}
.fc-button:hover {
    background-color: var(--darkgreen) !important;
}
.fc-col-header-cell-cushion {
    color: var(--darkblue);
    font-weight: 700;
    font-size: 14px;
}
.fc-daygrid-day-number {
    color: var(--darkblue);
    font-weight: 600;
}

/* Modal (pop-up) */
.modal33 {
    display: none !important;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.modal33.show {
    display: flex !important;
}
.modal-content33 {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    width: 340px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    animation: fadeInUp 0.3s ease;
}
@keyframes fadeInUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Select dropdowns */
select {
    width: 100%;
    margin-bottom: 14px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    background-color: #f9fafb;
    color: var(--text);
}

/* Modal knoppen */
.modal-actions33 {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
.btn33 {
    border: 0;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}
.btn33-primary {
    background: var(--green);
    color: white;
}
.btn33-primary:hover {
    background: var(--darkgreen);
}
.btn33-outline {
    background: transparent;
    border: 1px solid var(--blue);
    color: var(--blue);
}
.btn33-outline:hover {
    background: var(--blue);
    color: #fff;
}

/* Toast melding */
.toast33 {
    position: fixed;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 99999;
}
.toast33.show {
    top: 20px;
    opacity: 1;
}
.fc-event[style*="#ef4444"] {
    opacity: 0.9;
}
