/* Profile Circle (gelijk aan agenda.css) */
.profile-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b7adb 0%, #8b9bef 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(107, 122, 219, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.profile-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(107, 122, 219, 0.4);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #ffb6c1 0%, #ffc0cb 50%, #ffb8c5 100%);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 70px;
    height: 70px;
    padding: 5px;
}

.logo span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: transform 0.2s;
}

.nav-icon:hover {
    transform: scale(1.1);
}

.nav-icon svg {
    width: 32px;
    height: 32px;
}

/* Hero Section */
.hero {
    background-color: #fff;
    padding: 60px 0;
    min-height: 500px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-placeholder {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.circle-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 5px solid #fff;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.subtitle {
    font-size: 14px;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.2;
}

.hero-text h2 {
    font-size: 32px;
    font-weight: 400;
    color: #555;
    margin-bottom: 25px;
}

.description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #0066ff;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.cta-button:hover {
    background-color: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

/* Awards Section */
.awards {
    background-color: #f8f8f8;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.awards-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.award-badge {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.8;
    transition: all 0.3s;
}

.award-badge:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .circle-placeholder {
        width: 300px;
        height: 300px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {


    .logo {
        flex-direction: column;
        text-align: center;
    }

    .circle-placeholder {
        width: 250px;
        height: 250px;
    }

    .hero-text {
        text-align: center;
    }

    .awards-grid {
        gap: 20px;
    }

    .award-badge {
        width: 100px;
        height: 70px;
    }
}

@media (max-width: 622px) {

    .awards-grid {
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 30px;
        flex-wrap: wrap;
        flex-direction: column;
    }
}

/* Uitloggen Modal Styles */
.taak-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.taak-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.taak-modal-content {
    background: #f8f5f8;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.taak-modal-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.modal-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.5;
}

.form-actions,
.logout-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.cancel-logout-btn {
    background: #f0f0f0;
    color: #333;
    border: none;
    padding: 12px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.cancel-logout-btn:hover {
    background: #e0e0e0;
}

.confirm-logout-btn {
    background: #6b5b95;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.confirm-logout-btn:hover {
    background: #5a4a80;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 91, 149, 0.3);
}

@media screen and (max-width: 768px) {
    .taak-modal {
        padding: 10px;
    }

    .taak-modal-content {
        padding: 30px 24px;
    }

    .taak-modal-title {
        font-size: 1.5rem;
    }

    .modal-text {
        font-size: 1rem;
    }

    .logout-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .cancel-logout-btn,
    .confirm-logout-btn {
        width: 100%;
        padding: 14px 24px;
    }
}