/* Kleuren op basis van logo: Pink (#e84c88), Grey (#707070) */
:root {
    --pink: #e84c88;
    --dark-grey: #333333;
    --text-grey: #555555;
    --border-light: #e5e7eb;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    color: var(--text-grey);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Gecentreerd */
header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.storekeeper-brand {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    letter-spacing: 2px;
}

.pipe {
    color: var(--border-light);
    font-size: 20px;
}

.logo-img {
    height: 80px;
    width: auto;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--pink);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, #4a4a4a, #2d2d2d);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.hero-section p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 25px;
    opacity: 0.9;
}

.btn-pink {
    display: inline-block;
    background-color: var(--pink);
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
}

/* Content Blocks */
.content-area { padding: 50px 0; }

h2 {
    color: #000;
    font-size: 22px;
    margin-bottom: 20px;
}

.intro-block { margin-bottom: 40px; }

/* Integratie Kaarten */
.integration-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.card {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 25px;
    text-align: left;
}

.card h3 {
    margin-top: 0;
    font-size: 16px;
    color: #000;
}

.pink-link {
    color: var(--pink);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

/* POS Grid */
.pos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.pos-item h4 {
    color: #000;
    margin-bottom: 10px;
}

.gks-note {
    font-size: 12px;
    margin-top: 30px;
    color: #888;
}

/* Footer - Black */
.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.footer-info h4 {
    font-size: 14px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-info p {
    font-size: 13px;
    line-height: 1.8;
    color: #bbb;
}

.mt-4 { margin-top: 30px; }

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 12px;
    color: #666;
}

.footer-bottom a { color: #888; text-decoration: none; }

/* Responsive */
@media (max-width: 768px) {
    .integration-cards, .pos-grid { grid-template-columns: 1fr; }
    .main-nav ul { flex-direction: column; gap: 10px; }
}

/* Specifieke styling voor contact zonder formulier */
.contact-info-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
}

.address-block {
    margin: 30px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    color: var(--dark-grey);
}

.contact-links {
    margin-top: 20px;
    font-size: 18px;
}

.cta-block {
    margin-top: 40px;
}

.cta-block p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #888;
}

.pink-text {
    color: var(--pink); /* #e84c88 uit logo */
    font-weight: bold;
}