Coordonnées
Contact – Mats & Joy®
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--teal: #1b708f;
--teal-light: #d4eef5;
--bg: #fffbf5;
--off-white: #f4f0eb;
--sand: #e8c9a8;
--near-black: #1a1a1a;
--body: #444444;
--divider: rgba(0,0,0,0.07);
}
body {
font-family: 'DM Sans', Arial, sans-serif;
font-weight: 400;
background: var(--bg);
color: var(--body);
font-size: 15.5px;
line-height: 1.85;
}
/* HEADER */
header {
background: var(--bg);
border-bottom: 1px solid var(--divider);
padding: 16px 6%;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo-text {
font-family: 'Nunito', Arial, sans-serif;
font-weight: 900;
font-size: 22px;
color: var(--teal);
text-decoration: none;
}
.back-btn {
font-family: 'Nunito', Arial, sans-serif;
font-weight: 700;
font-size: 13px;
color: var(--teal);
text-decoration: none;
border: 1.5px solid var(--teal);
border-radius: 50px;
padding: 7px 18px;
transition: background 0.2s, color 0.2s;
}
.back-btn:hover { background: var(--teal); color: #fff; }
/* HERO */
.hero {
background: var(--teal);
padding: 56px 6% 48px;
text-align: center;
}
.hero-eyebrow {
font-family: 'Nunito', Arial, sans-serif;
font-weight: 800;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.18em;
color: var(--teal-light);
margin-bottom: 14px;
}
.hero h1 {
font-family: 'Nunito', Arial, sans-serif;
font-weight: 900;
font-size: clamp(32px, 6vw, 58px);
color: #fff;
line-height: 1.05;
margin-bottom: 16px;
}
.hero p {
font-size: 15px;
color: var(--teal-light);
max-width: 480px;
margin: 0 auto;
line-height: 1.75;
}
/* WRAPPER */
.wrapper {
max-width: 800px;
margin: 0 auto;
padding: 60px 6% 80px;
}
/* CONTACT GRID */
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 18px;
margin-bottom: 40px;
}
.contact-card {
background: var(--off-white);
border-radius: 20px;
padding: 28px 26px;
}
.contact-card .card-label {
font-family: 'Nunito', Arial, sans-serif;
font-weight: 800;
font-size: 10px;
text-transform: uppercase;
letter-spacing: 0.2em;
color: var(--teal);
margin-bottom: 6px;
}
.contact-card h3 {
font-family: 'Nunito', Arial, sans-serif;
font-weight: 800;
font-size: 17px;
color: var(--near-black);
margin-bottom: 10px;
line-height: 1.2;
}
.contact-card p {
font-size: 15px;
color: var(--body);
line-height: 1.85;
margin: 0;
}
.contact-card .sub {
font-size: 13px;
color: #888;
margin-top: 8px;
font-style: italic;
}
.contact-card a {
color: var(--teal);
font-weight: 700;
text-decoration: none;
font-size: 15.5px;
}
.contact-card a:hover { text-decoration: underline; }
/* SOCIAL BLOCK */
.social-block {
background: var(--teal-light);
border-radius: 20px;
padding: 32px;
text-align: center;
margin-bottom: 40px;
}
.social-block .card-label {
font-family: 'Nunito', Arial, sans-serif;
font-weight: 800;
font-size: 10px;
text-transform: uppercase;
letter-spacing: 0.2em;
color: var(--teal);
margin-bottom: 8px;
}
.social-block h3 {
font-family: 'Nunito', Arial, sans-serif;
font-weight: 800;
font-size: 18px;
color: var(--near-black);
margin-bottom: 10px;
}
.social-block p {
font-size: 15px;
color: var(--body);
margin-bottom: 20px;
line-height: 1.7;
}
.social-buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 12px;
}
.social-btn {
font-family: 'Nunito', Arial, sans-serif;
font-weight: 800;
font-size: 14px;
color: #fff;
background: var(--teal);
padding: 10px 24px;
border-radius: 50px;
text-decoration: none;
transition: opacity 0.2s;
}
.social-btn:hover { opacity: 0.85; text-decoration: none; }
/* CTA */
.cta-block {
background: var(--teal);
border-radius: 24px;
padding: 44px 40px;
text-align: center;
}
.cta-block h3 {
font-family: 'Nunito', Arial, sans-serif;
font-weight: 800;
font-size: clamp(18px, 4vw, 24px);
color: #fff;
margin-bottom: 10px;
line-height: 1.25;
}
.cta-block p {
color: var(--teal-light);
font-size: 15px;
margin-bottom: 24px;
line-height: 1.7;
}
.cta-block p a { color: #fff; font-weight: 700; text-decoration: underline; }
.cta-btn {
display: inline-block;
background: #fff;
color: var(--teal);
font-family: 'Nunito', Arial, sans-serif;
font-weight: 800;
font-size: 15px;
padding: 14px 32px;
border-radius: 50px;
text-decoration: none;
transition: opacity 0.2s;
}
.cta-btn:hover { opacity: 0.88; text-decoration: none; }
/* FOOTER */
footer {
background: var(--near-black);
color: #888;
text-align: center;
padding: 28px 6%;
font-size: 13px;
line-height: 1.8;
}
footer strong { color: #fff; }
footer a { color: var(--sand); }
@media (max-width: 600px) {
.hero { padding: 40px 5% 34px; }
.wrapper { padding: 40px 5% 60px; }
header { flex-direction: column; gap: 12px; }
.contact-grid { grid-template-columns: 1fr; }
.cta-block { padding: 32px 24px; }
}
Mats & Joy®
← Terug naar de winkel
Mats & Joy® · BE 1008.957.277 · Poeldries 10, 8552 Moen
info@matsjoy.com · matsjoy.com
© 2024–2026 Mats & Joy® · Alle rechten voorbehouden
Mats & Joy® · Klantenservice
Contacteer ons
Heb je een vraag, opmerking of wil je meer info over onze producten? We helpen je graag verder.
Adres
Bezoekadres
Mats & Joy®
Poeldries 10
8552 Moen
België
Onderneming
Bedrijfsgegevens
BTW: BE 1008.957.277
Eenmanszaak
Rechtbank van Kortrijk
Belgisch recht van toepassing
Nog niet gevonden wat je zocht?
Bekijk onze FAQ pagina voor snelle antwoorden, of stuur ons een berichtje.
Stuur een e-mail →info@matsjoy.com · matsjoy.com
© 2024–2026 Mats & Joy® · Alle rechten voorbehouden