/* Page-Specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* Page Content */
.page-content {
    padding: 80px 0;
}

.content-section {
    margin-bottom: 2rem;
}

.content-section.intro-two-column {
    display: grid !important;
    grid-template-columns: auto auto;
    gap: 3rem !important;
    align-items: center !important;
    margin-bottom: 3rem !important;
}

.intro-text {
    width: 100%;
}

.intro-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.intro-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.content-section h2 {
    margin-bottom: 1.5rem;
}

.content-section p {
    line-height: 1.8;
    color: var(--text-light);
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem 0;
}

.detail-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.detail-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.detail-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Benefits List */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Services Category */
.services-category {
    margin-bottom: 2rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.speaker-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Modulair Section */
.modulair-section {
    margin: 4rem 0;
    text-align: center;
}

.modulair-section img {
    width: 100%;
    height: auto;
    min-height: 800px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.modulair-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Research Fields */
.research-fields {
    margin-top: 2rem;
}

.research-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.research-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.research-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.research-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.research-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.research-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.research-card ul {
    list-style: none;
    padding-left: 0;
}

.research-card ul li {
    color: var(--text-light);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.research-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Certification Box */
.certification-box {
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.certification-box h3 {
    color: var(--primary-color);
}

.certification-box p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Events Section */
.events-section {
    margin-bottom: 2rem;
}

.featured-event {
    background-color: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.event-header {
    margin-bottom: 1.5rem;
}

.event-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.event-date,
.event-location {
    display: block;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.event-description p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.event-features {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.event-features p {
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.event-features ul {
    list-style: none;
    padding-left: 0;
}

.event-features ul li {
    color: var(--text-light);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.event-features ul li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Event List */
.event-list {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.event-item {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.event-item-date {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.event-item h4 {
    color: var(--primary-color);
    margin: 1rem 0 0.5rem 0;
    font-size: 1.2rem;
}

.event-item p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.event-category {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.85rem;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.category-item {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.category-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.category-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    margin-bottom: 2rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-info-block {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-info-block h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info-block p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-info-block a {
    color: var(--secondary-color);
    font-weight: 500;
}

.contact-info-block a:hover {
    color: var(--accent-color);
}

/* Contacts Grid */
.contacts-section {
    margin-bottom: 2rem;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid var(--secondary-color);
}

.contact-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

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

.contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--accent-color);
}

/* Contact Form */
.contact-form {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(44, 90, 160, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 20px;
        margin-top: 60px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

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

    .details-grid,
    .benefits-list,
    .service-cards,
    .research-cards,
    .contact-info-grid,
    .contacts-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 40px 15px;
        margin-top: 50px;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .page-content {
        padding: 40px 0;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .event-header h3 {
        font-size: 1.2rem;
    }

    .service-card,
    .research-card,
    .contact-card,
    .speakers-card {
        padding: 1.5rem;
    }
}

/* Speakers Cards */
.speakers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.speakers-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.speakers-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.speakers-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: var(--light-bg);
}

.speakers-content {
    padding: 2rem;
}

.speakers-name {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.speakers-title {
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.speakers-bio {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.speakers-contact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.speakers-contact a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.speakers-contact a:hover {
    color: var(--primary-color);
}
/* Oekotex Cards Section */
.oekotex-cards-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.oekotex-cards-section h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.oekotex-cards-section > p {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.oekotex-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.oekotex-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.oekotex-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.oekotex-card-logo {
    background: linear-gradient(135deg, #f5f5f5 0%, #ececec 100%);
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    border-bottom: 2px solid var(--primary-color);
}

.oekotex-card-logo img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
}

.oekotex-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.oekotex-card-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.oekotex-card-content p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Responsive Design for Oekotex Cards */
@media (max-width: 1200px) {
    .oekotex-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .oekotex-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .oekotex-cards-section h2 {
        font-size: 1.5rem;
    }
}