/**
 * DWF Opgieters Planner - Frontend Styles
 * Version: 1.0.0
 */

/* Opgieter Cards */
.dwf-opgieter-card {
    transition: all 0.3s ease;
}

.dwf-opgieter-card:hover {
    transform: translateY(-2px);
}

/* Opgieters Vandaag */
.dwf-opgieters-vandaag {
    display: grid;
    gap: 1.5rem;
}

.dwf-opgieter-card .dwf-opgieter-foto {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #f5f0e8;
}

.dwf-opgieter-info {
    flex: 1;
}

.dwf-opgieter-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.dwf-opgieter-info p {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
}

.dwf-opgieter-ervaring,
.dwf-opgieter-geur {
    font-size: 0.875rem;
    color: #4a5568;
    margin-top: 0.5rem;
}

.dwf-opgieter-quote {
    font-style: italic;
    color: #AE1679;
    border-left: 3px solid #AE1679;
    padding-left: 1rem;
    margin-top: 1rem;
}

/* Opgiet Schema */
.dwf-opgiet-schema {
    width: 100%;
}

.dwf-opgiet-tijden {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.dwf-opgiet-tijd-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.dwf-opgiet-tijd-card:hover {
    border-color: #AE1679;
    box-shadow: 0 4px 12px rgba(174, 22, 121, 0.1);
    transform: translateY(-2px);
}

.dwf-opgiet-tijd-card .dwf-tijd {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.dwf-opgiet-tijd-card .dwf-locatie {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 0.25rem;
}

.dwf-opgiet-tijd-card .dwf-thema {
    font-size: 0.75rem;
    color: #AE1679;
    font-weight: 500;
    margin-top: 0.5rem;
}

.dwf-opgiet-tijd-card .dwf-opgieter-naam {
    font-size: 0.75rem;
    color: #4a5568;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Opgieter Profiel */
.dwf-opgieter-profiel {
    max-width: 800px;
    margin: 0 auto;
}

.dwf-profiel-foto {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 2rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.dwf-profiel-foto img {
    width: 100%;
    height: auto;
    display: block;
}

.dwf-profiel-content h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #2d3748;
    margin-bottom: 1rem;
}

.dwf-profiel-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.dwf-profiel-meta span {
    font-size: 0.875rem;
    color: #718096;
}

.dwf-profiel-bio {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

.dwf-profiel-specialiteiten {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.dwf-profiel-specialiteiten h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.dwf-profiel-specialiteiten ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dwf-profiel-specialiteiten li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.dwf-profiel-specialiteiten li:before {
    content: "🔥";
    position: absolute;
    left: 0;
}

.dwf-profiel-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: #AE1679;
    border-left: 4px solid #AE1679;
    padding-left: 1.5rem;
    margin: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .dwf-opgiet-tijden {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dwf-profiel-content h2 {
        font-size: 1.5rem;
    }
    
    .dwf-profiel-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dwf-opgieter-card,
.dwf-opgiet-tijd-card {
    animation: fadeInUp 0.5s ease-out;
}

/* Time highlighting */
.dwf-opgiet-time.is-upcoming {
    background: linear-gradient(135deg, #AE1679 0%, #d946a6 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(174, 22, 121, 0.3);
}

.dwf-opgiet-time.is-past {
    opacity: 0.5;
    filter: grayscale(50%);
}

.dwf-opgiet-time.is-past:hover {
    opacity: 0.7;
}
