/*
  Website: Gymvloer Tafels (static)
  Fonts: Playfair Display (headings), Inter (body)
  Prefix: websiteGymTables__*
*/

:root {
    --bg: #ffffff;
    --bg-alt: #f7f7f9;
    --text: #111827; /* gray-900 */
    --muted: #6b7280; /* gray-600 */
    --primary: #111827;
    --accent: #1f2937; /* darker gray */
    --accent-contrast: #ffffff;
    --ring: rgba(0,0,0,0.08);
    --card: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 1px 2px rgba(0,0,0,.06), 0 10px 20px rgba(0,0,0,.06);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --container: 1200px;
}

/* Base / Reset */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.websiteGymTables__body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* Typography */
.websiteGymTables__h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    line-height: 1.1;
    margin: 0 0 12px;
    font-weight: 800;
}
.websiteGymTables__h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
    line-height: 1.15;
    margin: 0 0 10px;
    font-weight: 800;
}
.websiteGymTables__h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin: 0 0 8px;
    font-weight: 700;
}
.websiteGymTables__lead { font-size: 1.125rem; color: var(--muted); max-width: 62ch; }
.websiteGymTables__muted { color: var(--muted); }
.websiteGymTables__small { font-size: .9rem; color: var(--muted); }
.websiteGymTables__center { text-align: center; }
.websiteGymTables__bodyText { color: #374151; }

/* Layout Helpers */
.websiteGymTables__container { max-width: var(--container); margin-inline: auto; padding: 0 16px; }
.websiteGymTables__section { padding: 72px 0; }
.websiteGymTables__section--alt { background: var(--bg-alt); }

/* Header / Nav */
.websiteGymTables__header {
    position: sticky; top: 0; z-index: 40;
    backdrop-filter: saturate(1.2) blur(8px);
    background: rgba(255,255,255,.72);
    border-bottom: 1px solid var(--border);
}
.websiteGymTables__navContainer {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 12px 0;
}
.websiteGymTables__logo {
    font-weight: 800; letter-spacing: -.02em; color: var(--text);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}
.websiteGymTables__nav { display: none; gap: 24px; }
.websiteGymTables__nav a { font-size: .95rem; opacity: .9; }
.websiteGymTables__nav a:hover { opacity: 1; }
.websiteGymTables__ctaWrap { display: none; }

/* Buttons */
.websiteGymTables__button {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: 10px 16px; border-radius: 999px;
    background: var(--accent); color: var(--accent-contrast);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,.12);
    font-weight: 600; font-size: .95rem;
    transition: transform .1s ease, filter .2s ease, background .2s ease;
}
.websiteGymTables__button:hover { filter: brightness(1.06); transform: translateY(-1px); }
.websiteGymTables__button:active { transform: translateY(0); }
.websiteGymTables__button--lg { padding: 12px 18px; }
.websiteGymTables__button--outline {
    background: transparent; color: var(--text);
    border: 1px solid var(--border); box-shadow: none;
}
.websiteGymTables__button--block { width: 100%; }

/* Hero */
.websiteGymTables__hero { position: relative; overflow: hidden; min-height: 60vh; }
.websiteGymTables__heroBg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.websiteGymTables__heroOverlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,.7) 40%, rgba(255,255,255,.2) 100%); }
.websiteGymTables__heroInner { position: relative; padding: 80px 0 96px; max-width: 820px; }
.websiteGymTables__badge {
    display: inline-block; background: #111827; color: #fff; padding: 6px 10px; border-radius: 999px;
    font-size: .85rem; font-weight: 600; margin-bottom: 12px;
}
.websiteGymTables__heroActions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

/* Cards (Collectie) */
.websiteGymTables__sectionHead { display: grid; gap: 8px; margin-bottom: 24px; }
.websiteGymTables__sectionIntro { display: none; }
.websiteGymTables__gridCards {
    display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 16px;
}
.websiteGymTables__card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl);
    overflow: hidden; box-shadow: var(--shadow);
}
.websiteGymTables__cardImg { height: 220px; width: 100%; object-fit: cover; }
.websiteGymTables__cardBody { padding: 16px; }
.websiteGymTables__cardTitle { font-weight: 800; font-family: 'Playfair Display', serif; font-size: 1.2rem; margin: 0 0 6px; }
.websiteGymTables__cardText { color: var(--muted); margin: 0 0 10px; }
.websiteGymTables__features { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; color: #374151; font-size: .95rem; }
.websiteGymTables__features li { display: flex; align-items: center; gap: 8px; }
.websiteGymTables__iconCheck {
    display: inline-block; width: 18px; height: 18px; border-radius: 50%;
    background: radial-gradient(circle at 60% 40%, #16a34a 35%, #16a34a 36%, #16a34a 45%, #16a34a 46%, transparent 47%), #dcfce7;
    box-shadow: inset 0 0 0 1px #16a34a;
}

/* Gallery */
.websiteGymTables__gallery { margin-top: 24px; display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.websiteGymTables__gallery img { border-radius: 14px; height: 180px; object-fit: cover; box-shadow: var(--shadow); }

/* Werkwijze */
.websiteGymTables__processGrid { display: grid; gap: 24px; }
.websiteGymTables__processText {}
.websiteGymTables__featuresGrid { display: grid; gap: 12px; grid-template-columns: 1fr; margin-top: 20px; }
.websiteGymTables__featureItem { display: flex; gap: 12px; align-items: flex-start; background: #fff; padding: 12px; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--border); }
.websiteGymTables__iconBox { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: #f3f4f6; font-size: 18px; }
.websiteGymTables__featureTitle { font-weight: 700; }
.websiteGymTables__featureText { color: var(--muted); font-size: .95rem; }
.websiteGymTables__processGallery { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.websiteGymTables__processGallery img { border-radius: var(--radius-lg); height: 180px; object-fit: cover; box-shadow: var(--shadow); }

/* Over / Waarom */
.websiteGymTables__aboutGrid { display: grid; gap: 24px; }
.websiteGymTables__aboutCards { display: grid; gap: 12px; grid-template-columns: 1fr; }
.websiteGymTables__infoCard { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 14px; box-shadow: var(--shadow); }
.websiteGymTables__infoTitle { font-weight: 700; margin-bottom: 6px; }

/* Price card */
.websiteGymTables__priceCard {
    background: linear-gradient(135deg, #111827, #374151);
    color: #fff; border-radius: 22px; padding: 24px; box-shadow: var(--shadow);
}
.websiteGymTables__priceMuted { color: rgba(255,255,255,.85); }
.websiteGymTables__priceList { list-style: none; padding: 0; margin: 14px 0; display: grid; gap: 10px; }
.websiteGymTables__iconChevron { display: inline-block; width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 8px solid #fff; margin-right: 8px; }

/* Testimonials */
.websiteGymTables__testimonials { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 16px; }
.websiteGymTables__testimonial { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow); color: #374151; }
.websiteGymTables__testimonialAuthor { margin-top: 8px; font-weight: 600; }

/* Contact */
.websiteGymTables__contactGrid { display: grid; gap: 24px; }
.websiteGymTables__contactList { display: grid; gap: 8px; margin-top: 14px; }
.websiteGymTables__contactItem { display: inline-flex; align-items: center; gap: 10px; padding: 6px 0; }

.websiteGymTables__formCard { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 20px; box-shadow: var(--shadow); }
.websiteGymTables__form { display: grid; gap: 10px; }
.websiteGymTables__label { font-size: .9rem; font-weight: 600; }
.websiteGymTables__input, .websiteGymTables__textarea {
    width: 100%; border-radius: 12px; border: 1px solid var(--border); padding: 12px 14px; font: inherit; background: #fff;
    outline: none; box-shadow: 0 0 0 0 var(--ring);
}
.websiteGymTables__input:focus, .websiteGymTables__textarea:focus { box-shadow: 0 0 0 4px var(--ring); border-color: #d1d5db; }

/* Footer */
.websiteGymTables__footer { border-top: 1px solid var(--border); }
.websiteGymTables__footerInner { display: flex; gap: 16px; align-items: center; justify-content: space-between; padding: 24px 0; flex-wrap: wrap; }
.websiteGymTables__footerLinks { display: flex; gap: 16px; font-size: .95rem; }

/* Media Queries */
@media (min-width: 640px) {
    .websiteGymTables__heroInner { padding: 120px 0 140px; }
    .websiteGymTables__heroActions { flex-direction: row; }
    .websiteGymTables__gallery img { height: 200px; }
}

@media (min-width: 768px) {
    .websiteGymTables__nav { display: flex; }
    .websiteGymTables__ctaWrap { display: block; }
    .websiteGymTables__gridCards { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .websiteGymTables__gallery { grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .websiteGymTables__processGrid { grid-template-columns: 1.1fr 1fr; align-items: center; }
    .websiteGymTables__processGallery img { height: 220px; }
    .websiteGymTables__aboutGrid { grid-template-columns: 1.2fr .8fr; }
    .websiteGymTables__aboutCards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .websiteGymTables__testimonials { grid-template-columns: repeat(3, 1fr); }
    .websiteGymTables__contactGrid { grid-template-columns: 1fr 1fr; align-items: start; }
}

@media (min-width: 1024px) {
    .websiteGymTables__section { padding: 96px 0; }
    .websiteGymTables__sectionHead { grid-template-columns: 1fr 1fr; align-items: end; }
    .websiteGymTables__sectionIntro { display: block; max-width: 560px; justify-self: end; }
    .websiteGymTables__cardBody { padding: 18px; }
    .websiteGymTables__cardImg { height: 240px; }
    .websiteGymTables__gallery img { height: 220px; }
}

/* Utilities */
.websiteGymTables__nav a { position: relative; }
.websiteGymTables__nav a:after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: #111827; transition: width .2s; }
.websiteGymTables__nav a:hover:after { width: 100%; }

/* Print tweaks */
@media print {
    .websiteGymTables__header, .websiteGymTables__heroOverlay { display: none !important; }
    .websiteGymTables__button { display: none !important; }
    .websiteGymTables__section { padding: 24px 0; }
}
