/* Contact pagina specifieke stijlen */

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

a.contact-card {
    text-decoration: none; 
    display: block;        
    color: inherit;        
}

.contact-card animate-scroll visible {
    text-decoration: none;
}

@media (min-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #2D5F3F;
}

.contact-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-card h4 {
    margin-bottom: 0.5rem;
    color: #1d1d1f;
}

.contact-card p {
    color: #525252;
    font-weight: 500;
}

/* IT Console / Terminal Form */

.console-row-stacked {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.console-hint {
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
    font-weight: normal;
}

.console-input {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
    color: #1d1d1f;
    padding: 1rem;
}

.console-input:focus {
    border-color: #2D5F3F;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(45, 95, 63, 0.1);
}

.contact-console-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.console-header {
    background: #f1f3f5;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.console-label {
    color: #2D5F3F;
    font-weight: bold;
}

.console-buttons {
    display: flex;
    gap: 0.5rem;
}

.console-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.console-buttons span:nth-child(1) {
    background: #ff5f56;
}

.console-buttons span:nth-child(2) {
    background: #ffbd2e;
}

.console-buttons span:nth-child(3) {
    background: #27c93f;
}

.console-title {
    color: #888;
    font-size: 0.8rem;
}

.console-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.console-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Footer golf en centrering alleen op contactpagina */

.footer-wave {
    position: relative;
    width: 100%;
    height: 80px;
    margin-bottom: -1px;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.footer-wave .shape-fill {
    fill: #1d1d1f;
}

.centered-footer {
    text-align: center;
    justify-items: center;
}

