/* static/css/home/info_page.css */

/* ========== Custom Properties ========== */
:root {
    --fs-h1: 3.5rem;
    --fs-h2: 2.5rem;
    --fs-h3: 1.75rem;
    --fs-h4: 1.5rem;
    --fs-large: 1.25rem;
    --fs-medium: 1.125rem;
    --fs-base: 1rem;
    --fs-small: 0.875rem;
}

/* ========== Hero Sectie voor Statische Info Pagina's ========== */
.hero-static {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 5% 80px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-static::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-static .hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 1000px;
    animation: fadeInUp 1s ease-out;
}

.hero-static h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-15px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* ========== Breadcrumb Navigatie ========== */
.breadcrumb-nav {
    margin-bottom: 30px;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 12px 24px;
    display: inline-block;
    margin: 0;
    backdrop-filter: blur(10px);
}

.breadcrumb-item {
    display: inline;
    font-size: 1rem;
    font-weight: 500;
}

.breadcrumb-nav .breadcrumb-item::before {
    content: none;
    display: none;
}

.breadcrumb-nav .breadcrumb-item:not(:last-child)::after {
    content: " / ";
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    color: inherit;
    pointer-events: none;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

/* ========== Content Sectie ========== */
.static-content {
    padding: 100px 0;
    background: var(--light-bg);
}

.content-wrapper {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.content-wrapper .last-updated {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.content-wrapper hr {
    margin-bottom: 40px;
    border-top: 2px solid #eee;
}

/* ========== Stijlen voor de Content Body ========== */
.content-body {
    color: var(--text-dark);
    line-height: 1.8;
}

.content-body h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.content-body h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

.content-body h4 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-body p {
    color: var(--text-light);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

.content-body ul,
.content-body ol {
    color: var(--text-light);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    margin-bottom: 2rem;
    padding-left: 35px;
}

.content-body li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.content-body strong {
    color: var(--text-dark);
    font-weight: 600;
}

.content-body a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    font-weight: 500;
}

.content-body a:hover {
    border-bottom-color: var(--primary-color);
}

/* ========== Highlight Boxes ========== */
.content-body .highlight-box {
    background: linear-gradient(135deg, rgba(232, 78, 126, 0.1), rgba(108, 99, 255, 0.1));
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.content-body .highlight-box p:last-child {
    margin-bottom: 0;
}

/* ========== Info Boxes ========== */
.content-body .info-box {
    background: rgba(108, 99, 255, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.content-body .warning-box {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* ========== Icon Styling in Headers ========== */
.content-body h2 i,
.content-body h3 i {
    color: var(--primary-color);
    font-size: 0.9em;
}

/* ========== Tables ========== */
.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.content-body table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 15px;
    text-align: left;
}

.content-body table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: var(--text-light);
}

.content-body table tr:last-child td {
    border-bottom: none;
}

.content-body table tr:hover {
    background: var(--light-bg);
}

/* ========== About Me Grid ========== */
.about-me-grid {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 40px;
    align-items: start;
    margin-top: 20px;
}

.about-me-portrait {
    text-align: center;
    position: sticky;
    top: 120px;
}

.about-me-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.about-me-portrait h3 {
    margin-top: 15px;
    color: var(--primary-color);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-me-portrait .job-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about-me-portrait .info-box {
    text-align: left;
    margin-top: 20px;
    background: var(--light-bg, #f8f9fa);
    border-left: 4px solid var(--secondary-color, #6c63ff);
}

.about-me-portrait .info-box p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.about-me-portrait .info-box ul {
    padding-left: 20px;
    margin-bottom: 0;
    text-align: left;
}

.about-me-portrait .info-box li {
    font-size: 1rem;
    color: var(--text-light, #636e72);
}

.about-me-bio .lead {
    font-size: 1.25rem;
    color: var(--text-light, #636e72);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.about-me-bio h2 {
    margin-top: 2.5rem;
}

.about-me-bio h2:first-of-type {
    margin-top: 0;
}

/* ========== Responsive Design ========== */
@media (max-width: 991px) {
    .about-me-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-me-portrait {
        position: static;
    }

    .about-me-img {
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .hero-static {
        min-height: 100vh;
        padding: 120px 20px 80px;
    }

    .hero-static h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 20px;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    .static-content {
        padding: 80px 0;
    }

    .content-wrapper {
        padding: 35px 30px;
    }

    .content-body h2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 2.5rem;
    }

    .content-body h3 {
        margin-top: 2rem;
    }

    .content-body ul,
    .content-body ol {
        padding-left: 25px;
    }

    .content-body .highlight-box,
    .content-body .info-box,
    .content-body .warning-box {
        padding: 20px;
        margin: 25px 0;
    }

    .about-me-grid {
        gap: 20px;
    }

    .about-me-img {
        max-width: 180px;
    }
}

@media (max-width: 576px) {
    .hero-static {
        padding: 100px 15px 60px;
    }

    .static-content {
        padding: 60px 0;
    }

    .content-wrapper {
        padding: 30px 20px;
    }

    .content-body h2 {
        margin-top: 2rem;
    }

    .content-body h3 {
        margin-top: 1.5rem;
    }

    .content-body .highlight-box,
    .content-body .info-box,
    .content-body .warning-box {
        padding: 15px;
        margin: 20px 0;
    }

    .content-body table {
        font-size: 0.875rem;
    }

    .content-body table th,
    .content-body table td {
        padding: 10px;
    }
}