/* Versie: 1.1 - Contact info hoger geplaatst */
@font-face {
    font-family: 'Helvetica Neue LT Std';
    src: url('../assets/fonts/HelveticaNeueLTStd-Roman.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue LT Std';
    src: url('../assets/fonts/HelveticaNeueLTStd-Lt.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue LT Std';
    src: url('../assets/fonts/HelveticaNeueLTStd-Th.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue LT Std';
    src: url('../assets/fonts/HelveticaNeueLTStd-Md.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue LT Std';
    src: url('../assets/fonts/HelveticaNeueLTStd-Bd.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: 'Helvetica Neue LT Std', Arial, sans-serif;
    background-color: #f5f5f5;
    padding: 20px;
    margin: 0;
}

.container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.visitekaart {
    width: 500px;
    height: 280px;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 40px 50px 50px 50px;
    box-sizing: border-box;
    position: relative;
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-template-rows: auto 1fr;
    gap: 20px;
}

.logo-section {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.logo-container {
    position: relative;
    margin-top: 10px;
}

.logo {
    width: 120px;
    height: auto;
}

.logo-shadow {
    position: absolute;
    width: 100px;
    height: 10px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, transparent 70%);
    bottom: -20px;
    left: 10px;
}

.name-section {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: flex-start;
    padding-top: 20px;
    overflow: hidden;
}

.person-name {
    font-size: 48px;
    font-weight: 300;
    color: #333;
    margin: 0;
    line-height: 1;
    letter-spacing: -1px;
    white-space: nowrap;
    display: inline-block;
}

.name-first {
    font-weight: 500;
}

.contact-section {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: -10px;
}

.contact-row {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #666;
}

.contact-label {
    width: 80px;
    color: #999;
    font-weight: 300;
    margin-right: 20px;
}

.contact-value {
    color: #666;
    font-weight: 300;
}

.contact-value a {
    color: #666;
    text-decoration: none;
}

.contact-value a:hover {
    color: #4db8ac;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .visitekaart {
        width: 100%;
        max-width: 450px;
        height: auto;
        min-height: 250px;
        padding: 30px;
        grid-template-columns: 100px 1fr;
        gap: 20px;
    }
    
    .logo {
        width: 80px;
    }
    
    .logo-shadow {
        width: 70px;
        left: 5px;
    }
    
    .person-name {
        font-size: 32px;
    }
    
    .contact-row {
        font-size: 14px;
    }
    
    .contact-label {
        width: 60px;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .visitekaart {
        padding: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: auto;
    }
    
    .logo-section {
        margin-bottom: 20px;
    }
    
    .name-section {
        margin-bottom: 20px;
    }
    
    .person-name {
        font-size: 28px;
    }
    
    .contact-section {
        align-items: center;
    }
    
    .contact-row {
        justify-content: center;
        font-size: 13px;
    }
    
    .contact-label {
        width: auto;
        margin-right: 10px;
    }
}

/* Cookie Consent Banner */
.consent-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    z-index: 1000;
    display: none;
}

.consent-banner.show {
    display: block;
}

.consent-content h3 {
    font-family: 'Helvetica Neue LT Std', Arial, sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #333;
    margin: 0 0 10px 0;
}

.consent-content p {
    font-family: 'Helvetica Neue LT Std', Arial, sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.consent-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.consent-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Helvetica Neue LT Std', Arial, sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #666;
}

.consent-option input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.consent-btn {
    font-family: 'Helvetica Neue LT Std', Arial, sans-serif;
    font-weight: 400;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.consent-btn-primary {
    background-color: #333;
    color: #fff;
}

.consent-btn-primary:hover {
    background-color: #555;
}

.consent-btn-secondary {
    background-color: #f0f0f0;
    color: #666;
}

.consent-btn-secondary:hover {
    background-color: #e0e0e0;
}

@media (max-width: 600px) {
    .consent-banner {
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        padding: 20px;
        box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    }
    
    .consent-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .consent-content p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .consent-options {
        gap: 10px;
        margin-bottom: 16px;
    }
    
    .consent-option {
        font-size: 14px;
    }
    
    .consent-option input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }
    
    .consent-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .consent-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .consent-btn-secondary {
        order: 2;
    }
    
    .consent-btn-primary:last-child {
        order: -1;
        font-weight: 500;
    }
}