/* Importeer Google Fonts (Outfit voor koppen, Roboto voor tekst - lijkt op Google's eigen stijl) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&family=Roboto:wght@300;400;500&display=swap');

/* Chrome Kleurenpalet & Variabelen */
:root {
    --chrome-blue: #4285F4;
    --chrome-red: #EA4335;
    --chrome-yellow: #FBBC05;
    --chrome-green: #34A853;
    
    --bg-color: #F8F9FA; /* Zacht Google-grijs */
    --text-main: #202124;
    --text-light: #5F6368;
    --card-bg: #FFFFFF;
}

/* Basis Reset & Typografie */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    font-weight: 700;
}

/* Een prachtige 4-kleuren balk helemaal bovenaan de website */
body::before {
    content: '';
    display: block;
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, 
        var(--chrome-red) 0%, var(--chrome-red) 25%, 
        var(--chrome-yellow) 25%, var(--chrome-yellow) 50%, 
        var(--chrome-green) 50%, var(--chrome-green) 75%, 
        var(--chrome-blue) 75%, var(--chrome-blue) 100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Header & Navigatie */
header {
    background-color: var(--card-bg);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Zachte schaduw */
    position: sticky;
    top: 6px; /* Blijft plakken onder de kleurenstreep */
    z-index: 999;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* De 'Chrome' tekst in het logo blauw maken */
.logo span {
    color: var(--chrome-blue);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 20px;
}

nav a:hover {
    color: var(--chrome-blue);
    background-color: rgba(66, 133, 244, 0.05); /* Subtiele blauwe achtergrond bij hover */
}

/* Hero Sectie (Welkomstscherm) */
.hero {
    text-align: center;
    padding: 100px 20px;
    background-image: url('/images/browser-chrome-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-content {
    background-color: rgba(255, 255, 255, 0.85); /* Semi-transparant wit */
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(8px); /* Subtiel blur effect voor de achtergrond */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(45deg, var(--chrome-blue), var(--chrome-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* Primaire Knop */
.btn-primary {
    display: inline-block;
    background-color: var(--chrome-blue);
    color: white;
    padding: 14px 28px;
    border-radius: 24px; /* Ovale knop à la Google */
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.btn-primary:hover {
    background-color: #3367d6; /* Iets donkerder blauw */
    transform: translateY(-2px); /* Knop 'veert' iets omhoog */
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

/* Content Secties (Kaartjes / Cards) */
main {
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Pagina Headers (voor pagina's zonder hero) */
.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px 0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--chrome-blue);
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* FAQ Categorieën */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
    border-bottom: 2px solid #E8EAED;
    padding-bottom: 10px;
}

/* Accordion (FAQ) */
.accordion {
    width: 100%;
}

.accordion-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    border: 1px solid #E8EAED;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px;
    background-color: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.accordion-header:hover {
    color: var(--chrome-blue);
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--chrome-blue);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-header {
    color: var(--chrome-blue);
    font-weight: 600;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--card-bg);
}

.accordion-content p {
    padding: 0 20px 20px;
    margin: 0;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Extensies Pagina Styling */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-wrapper h2 {
    font-size: 2rem;
    color: var(--text-main);
    margin: 10px 0;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-blue {
    background-color: rgba(66, 133, 244, 0.1);
    color: var(--chrome-blue);
}

.badge-yellow {
    background-color: rgba(251, 188, 5, 0.15);
    color: #E3A600; /* Iets donkerder geel voor leesbaarheid */
}

.extensions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.extension-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid #E8EAED;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.extension-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.premium-card {
    border-top: 3px solid var(--chrome-yellow);
}

.ext-rank {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background-color: var(--chrome-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(66, 133, 244, 0.3);
}

.premium-card .ext-rank {
    background-color: var(--chrome-yellow);
    color: #333;
    box-shadow: 0 4px 10px rgba(251, 188, 5, 0.3);
}

.ext-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ext-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.ext-meta {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.ext-rating {
    font-weight: 600;
    color: #5F6368;
}

.ext-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.ext-link {
    display: inline-block;
    color: var(--chrome-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    margin-top: auto;
}

.ext-link:hover {
    color: #1557b0;
    text-decoration: underline;
}

/* Vergelijken Pagina Styling */
.compare-section {
    margin-bottom: 60px;
}

/* Prioriteiten (Progress Bars) */
.priorities-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid #E8EAED;
}

.priority-item {
    margin-bottom: 20px;
}

.priority-item:last-child {
    margin-bottom: 0;
}

.priority-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-main);
}

.priority-bar-bg {
    width: 100%;
    height: 12px;
    background-color: #E8EAED;
    border-radius: 6px;
    overflow: hidden;
}

.priority-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--chrome-blue), #1a73e8);
    border-radius: 6px;
    width: 0; /* Wordt geanimeerd via JS */
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Vergelijkingstabel */
.table-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.search-input {
    padding: 10px 15px;
    border: 1px solid #E8EAED;
    border-radius: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--chrome-blue);
}

.filter-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-chip {
    background-color: white;
    border: 1px solid #E8EAED;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.2s ease;
}

.filter-chip:hover {
    background-color: #f1f3f4;
}

.filter-chip.active {
    background-color: rgba(66, 133, 244, 0.1);
    color: var(--chrome-blue);
    border-color: rgba(66, 133, 244, 0.3);
}

.table-responsive {
    overflow-x: auto;
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid #E8EAED;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.compare-table th, .compare-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #E8EAED;
}

.compare-table th {
    background-color: #f8f9fa;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--text-main);
    position: sticky;
    top: 0;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

.compare-table th:hover {
    background-color: #f1f3f4;
}

.compare-table tbody tr {
    transition: background-color 0.2s ease;
}

.compare-table tbody tr:hover {
    background-color: #f8f9fa;
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.browser-name {
    font-size: 1.1rem;
    color: var(--text-main);
}

.status-icon {
    display: inline-block;
    width: 24px;
    text-align: center;
    margin-right: 5px;
}

/* Marktaandeel Cards */
.market-share-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.market-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #E8EAED;
    position: relative;
    text-align: center;
}

.market-card.leader {
    border-top: 4px solid var(--chrome-blue);
}

.market-rank {
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #E8EAED;
    font-size: 2rem;
    line-height: 1;
}

.market-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.market-stat {
    font-size: 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--chrome-blue);
    margin-bottom: 10px;
}

.market-trend {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.market-trend.up { color: var(--chrome-green); }
.market-trend.down { color: var(--chrome-red); }
.market-trend.neutral { color: var(--text-light); }

.market-engine {
    font-size: 0.85rem;
    color: var(--text-light);
    background-color: #f8f9fa;
    padding: 5px 10px;
    border-radius: 12px;
    display: inline-block;
}

/* Problemen Pagina Styling */
.problems-container {
    max-width: 860px;
    margin: 0 auto;
}

.problem-category {
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--chrome-blue);
}

.problem-category h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--chrome-blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.problem-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border-left: 4px solid var(--chrome-blue);
    border-top: 1px solid #E8EAED;
    border-right: 1px solid #E8EAED;
    border-bottom: 1px solid #E8EAED;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.problem-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.problem-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.problem-number {
    background: var(--chrome-blue);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50%;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    margin: 0;
    padding-top: 4px;
}

.problem-solution {
    padding-left: 45px;
}

.problem-solution p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 15px;
}

.problem-solution code {
    background: #f1f3f4;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.85rem;
    color: var(--chrome-red);
    font-family: 'JetBrains Mono', monospace;
}

.problem-links {
    font-size: 0.9rem;
    color: var(--text-light);
    background-color: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 3px solid var(--chrome-yellow);
}

.problem-links strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-main);
}

.problem-links a {
    color: var(--chrome-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 5px;
    border-bottom: 1px dotted var(--chrome-blue);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.problem-links a:hover {
    color: #1557b0;
    border-bottom-color: #1557b0;
}

/* Links Pagina Styling */
.links-container {
    max-width: 1000px;
    margin: 0 auto;
}

.links-category {
    margin-bottom: 50px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--chrome-blue);
}

.category-icon {
    font-size: 1.8rem;
}

.category-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--chrome-blue);
    margin: 0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.link-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: var(--text-main);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #E8EAED;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: var(--chrome-blue);
}

.link-icon {
    font-size: 2rem;
    background: #f0f4f8;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.link-content {
    flex: 1;
}

.link-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text-main);
    transition: color 0.2s ease;
}

.link-card:hover .link-content h3 {
    color: var(--chrome-blue);
}

.link-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0;
}

.link-arrow {
    font-size: 1.2rem;
    color: var(--chrome-blue);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -12px;
}

.link-card:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.link-card:hover .link-content {
    padding-right: 20px;
}

/* Speciale kaarten styling */
.official-card {
    border-left: 4px solid var(--chrome-green);
}

.official-card .link-icon {
    background: #e6f4ea;
}

.partner-card {
    border-left: 4px solid var(--chrome-yellow);
}

.partner-card .link-icon {
    background: #fef7e0;
}

/* Over Ons Pagina Styling */
.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* Profiel Kaart */
.profile-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #E8EAED;
    position: sticky;
    top: 100px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.2);
}

.profile-card h2 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.profile-title {
    color: var(--chrome-blue);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.profile-details {
    text-align: left;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid #E8EAED;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.detail-icon {
    font-size: 1.2rem;
}

.detail-item a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s ease;
}

.detail-item a:hover {
    color: var(--chrome-blue);
}

.social-btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    text-align: center;
}

.linkedin-btn {
    background-color: #0077b5;
    color: white;
}

.linkedin-btn:hover {
    background-color: #005e93;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 119, 181, 0.3);
}

/* Inhoud Secties */
.about-content section {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid #E8EAED;
}

.about-content h2 {
    font-size: 1.8rem;
    color: var(--text-main);
    margin: 15px 0 20px;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-content a {
    color: var(--chrome-blue);
    text-decoration: none;
    font-weight: 500;
}

.about-content a:hover {
    text-decoration: underline;
}

.internal-links-box {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    border-left: 4px solid var(--chrome-blue);
}

.internal-links-box h3 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.internal-links-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.internal-links-box li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-light);
}

.internal-links-box li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--chrome-blue);
    font-weight: bold;
}

.internal-links-box li:last-child {
    margin-bottom: 0;
}

/* Features sectie (Home) */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--chrome-blue); /* Blauwe rand bovenaan */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Geef de kaarten afwisselende rand-kleuren voor die Chrome vibe */
.feature-card:nth-child(2) { border-top-color: var(--chrome-red); }
.feature-card:nth-child(3) { border-top-color: var(--chrome-yellow); }
.feature-card:nth-child(4) { border-top-color: var(--chrome-green); }

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--text-main);
}

/* Footer */
footer {
    background-color: var(--card-bg);
    text-align: center;
    padding: 30px;
    color: var(--text-light);
    border-top: 1px solid #E8EAED;
    margin-top: 60px;
}

/* Menu Toggle Button (Mobile) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.hamburger, .hamburger::before, .hamburger::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-main);
    position: absolute;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.menu-toggle.active .hamburger {
    background-color: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobiel Menu Aanpassingen */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .hero h1 { font-size: 2.2rem; }
    nav ul {
        flex-direction: column;
        display: none; /* JavaScript klapt dit straks open */
        background: var(--card-bg);
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    }
    nav ul.active {
        display: flex;
    }
}