
:root {
    --color-bg: #fff9f4;
    --color-bg-alt: #fdf5ee;
    --color-accent: #f1a186; /* warm zalm, zoals in het logo */
    --color-teal: #7bb7b5;   /* zachte groentint uit het logo */
    --color-text: #425058;
    --color-muted: #8a969c;
    --shadow-soft: 0 18px 40px rgba(33, 37, 41, 0.06);
    --radius-lg: 18px;
    --radius-pill: 999px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.container {
    width: min(1120px, 100% - 3rem);
    margin-inline: auto;
}

.section {
    padding: 5rem 0;
}


.section-alt {
    background: linear-gradient(135deg,
        rgba(241, 161, 134, 0.07),
        rgba(123, 183, 181, 0.12));
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.section-header h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 2.4vw, 2.4rem);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--color-muted);
    margin: 0;
}

h1, h2, h3, h4 {
    font-family: "Playfair Display", serif;
    color: var(--color-text);
}

/* Header */


.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 249, 244, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
    border-bottom: 3px solid rgba(123, 183, 181, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}



.brand-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--color-teal);
    object-fit: cover;
    background: #fff;
}



.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.brand-name {
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.main-nav {
    position: relative;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
}

.nav-list a {
    position: relative;
    padding-block: 0.25rem;
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-teal));
    transition: width 0.25s ease;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
    width: 100%;
}

.nav-highlight {
    padding-inline: 0.9rem;
    padding-block: 0.35rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(123, 183, 181, 0.4);
    background: rgba(255, 255, 255, 0.9);
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-text);
}

/* Hero */


.hero {
    padding-top: 4.5rem;
    position: relative;
    overflow: hidden;
}


.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
    gap: 3.5rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.4rem, 3vw, 3rem);
    margin: 0 0 1rem;
}

.hero-text p {
    font-size: 1rem;
    color: var(--color-text);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--color-teal);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 1.5rem 0 0.75rem;
}

.hero-contact-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.95rem;
    color: var(--color-muted);
}

.hero-contact-inline a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}


.hero-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.98),
        rgba(241, 161, 134, 0.06));
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.75rem 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(123, 183, 181, 0.3);
}

.hero-card h2 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.hero-note {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-top: 1.5rem;
}

/* Generic components */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: var(--radius-pill);
    padding: 0.55rem 1.4rem;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
}

.btn.primary {
    background: linear-gradient(135deg, var(--color-accent), #f6b59a);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(241, 161, 134, 0.35);
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(241, 161, 134, 0.45);
}


.btn.ghost {
    background: rgba(123, 183, 181, 0.12);
    color: var(--color-teal);
    border-color: rgba(123, 183, 181, 0.7);
}

.btn.ghost:hover {
    background: rgba(123, 183, 181, 0.2);
}

.btn.link-btn {
    padding-inline: 0;
    border: none;
    background: none;
    color: var(--color-teal);
    font-weight: 600;
}

.btn.full-width {
    width: 100%;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.4rem;
    font-size: 0.96rem;
}

.checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 0.78rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--color-teal), var(--color-accent));
}

/* Layout helpers */

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.2fr);
    gap: 3rem;
    align-items: flex-start;
}

.highlight-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid rgba(123, 183, 181, 0.25);
    box-shadow: var(--shadow-soft);
}

.card-grid {
    display: grid;
    gap: 1.75rem;
}

.card-grid.two {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card-grid.three {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.6rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(123, 183, 181, 0.2);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.card.placeholder {
    background: linear-gradient(135deg, rgba(241, 161, 134, 0.08), rgba(123, 183, 181, 0.12));
    border: 1px dashed rgba(123, 183, 181, 0.7);
}

/* Empty state */

.empty-state {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2rem 2.2rem;
    border: 1px dashed rgba(123, 183, 181, 0.55);
}

/* Contact */


.profile-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}


.profile-photo-wrap {
    flex-shrink: 0;
    padding: 0.4rem;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, rgba(241, 161, 134, 0.18), transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(123, 183, 181, 0.2), transparent 55%);
    box-shadow: var(--shadow-soft);
}



.profile-photo {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(123, 183, 181, 0.75);
    display: block;
}


.profile-heading h2 {
    margin: 0 0 0.4rem;
}

.profile-intro {
    margin: 0;
    color: var(--color-muted);
}


@media (max-width: 700px) {
    .profile-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-photo {
        width: 160px;
        height: 160px;
    }
}



.contact-split {
    align-items: stretch;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.contact-list i {
    color: var(--color-teal);
    width: 1rem;
}

.contact-note {
    color: var(--color-muted);
    margin-top: 0.5rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    margin-top: 1.25rem;
    font-size: 0.95rem;
}

.social-links span {
    color: var(--color-muted);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(123, 183, 181, 0.4);
    background: rgba(255, 255, 255, 0.9);
}

.contact-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.8rem 1.6rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(241, 161, 134, 0.35);
}

/* Newsletter */

.newsletter {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
    gap: 2.5rem;
    align-items: center;
}

.newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) auto;
    gap: 0.75rem;
    align-items: center;
}

.newsletter-form input[type="email"] {
    border-radius: var(--radius-pill);
    border: 1px solid rgba(123, 183, 181, 0.6);
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    outline: none;
    min-width: 0;
}

.newsletter-form input[type="email"]:focus-visible {
    box-shadow: 0 0 0 3px rgba(123, 183, 181, 0.25);
}

.newsletter-message {
    grid-column: 1 / -1;
    font-size: 0.88rem;
    color: var(--color-muted);
    min-height: 1.2em;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Footer */

.site-footer {
    padding: 2rem 0 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    background: #fff9f4;
}


.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--color-muted);
    text-align: left;
}


.footer-secondary {
    margin-top: 0.25rem;
}

/* Responsive */

@media (max-width: 900px) {
    .hero-grid,
    .split,
    .newsletter {
        grid-template-columns: 1fr;
    }

    .hero-card {
        order: -1;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding-block: 0.5rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-list {
        position: absolute;
        right: 0;
        top: 120%;
        flex-direction: column;
        align-items: flex-start;
        background: rgba(255, 249, 244, 0.98);
        padding: 0.85rem 1rem;
        border-radius: 16px;
        box-shadow: var(--shadow-soft);
        min-width: 210px;
        transform-origin: top right;
        transform: scale(0.9);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .nav-list.open {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        display: block;
        width: 100%;
        padding-block: 0.45rem;
    }

    
.hero {
    padding-top: 4.5rem;
    position: relative;
    overflow: hidden;
}


    .section {
        padding: 3.5rem 0;
    }
}

@media (max-width: 600px) {
    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .hero-contact-inline {
        flex-direction: column;
        align-items: flex-start;
    }
}

.nav-list a.nav-current {
    font-weight: 600;
    color: var(--color-teal);
}

.nav-list a.nav-current::after {
    width: 100%;
}



.hero::before {
    content: "";
    position: absolute;
    inset: -35% -10% auto -20%;
    background:
        url("assets/images/marindapraktijk.png") no-repeat right 5% top 5%,
        radial-gradient(circle at 0% 0%, rgba(241, 161, 134, 0.22), transparent 55%),
        radial-gradient(circle at 80% 10%, rgba(123, 183, 181, 0.18), transparent 60%);
    background-size: 260px auto, auto, auto;
    opacity: 0.06;
    z-index: -1;
}



.section-header h2::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    border-radius: 999px;
    margin: 0.6rem auto 0;
    background: linear-gradient(90deg, var(--color-accent), var(--color-teal));
}


.card {
    position: relative;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, rgba(241, 161, 134, 0.85), rgba(123, 183, 181, 0.85));
}


.contact-form {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    border-radius: 10px;
    border: 1px solid rgba(123, 183, 181, 0.6);
    padding: 0.55rem 0.8rem;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    resize: vertical;
    background: #ffffff;
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
    box-shadow: 0 0 0 3px rgba(123, 183, 181, 0.23);
}

.form-footnote {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin: 0;
}

@media (max-width: 700px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {
    .brand-logo {
        width: 72px;
        height: 72px;
    }
}


.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.footer-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(123, 183, 181, 0.7);
    background: #fff;
}

.footer-title {
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--color-text);
}

.footer-tagline {
    margin: 0.1rem 0 0;
    font-size: 0.82rem;
}

.footer-copy {
    margin: 0;
    font-size: 0.82rem;
    color: var(--color-muted);
}

@media (max-width: 600px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


.profile-heading {
    position: relative;
    padding-right: 4.5rem;
}

.profile-heading::after {
    content: "";
    position: absolute;
    top: -4px;
    right: 0;
    width: 64px;
    height: 64px;
    background: url("assets/images/marindapraktijk.png") no-repeat center / contain;
    opacity: 0.12;
    pointer-events: none;
}

/* ===== Shop highlight op de homepage ===== */

.section-shop-highlight {
    padding-top: 0;
}

.section-shop-highlight .shop-card {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
    gap: 2.5rem;
    align-items: center;
    border-left: 4px solid rgba(126, 179, 181, 0.65);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    position: relative;
    overflow: hidden;
}

.section-shop-highlight .shop-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(253, 186, 140, 0.18), transparent 55%),
                radial-gradient(circle at bottom right, rgba(126, 179, 181, 0.16), transparent 55%);
    opacity: 0.8;
    pointer-events: none;
}

.section-shop-highlight .shop-card > * {
    position: relative;
    z-index: 1;
}

.shop-card-text h2 {
    font-family: "Playfair Display", var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
}

.shop-card-text p {
    font-size: 0.98rem;
    color: var(--color-muted);
    max-width: 38rem;
    margin: 0;
}

.shop-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.shop-card-note {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin: 0;
}

.section-shop-highlight .btn.primary {
    white-space: nowrap;
}

@media (max-width: 860px) {
    .section-shop-highlight .shop-card {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.5rem;
    }
}

/* Footer socials */
.footer-socials{
    display:flex;
    align-items:center;
    gap:0.75rem;
    flex-wrap:wrap;
}
.footer-socials-label{
    font-weight:600;
    color:var(--color-muted);
}
.social-link{
    display:inline-flex;
    align-items:center;
    gap:0.45rem;
    text-decoration:none;
    color:inherit;
    padding:0.35rem 0.55rem;
    border-radius:999px;
    border:1px solid rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.55);
    transition: transform .15s ease, background .15s ease;
}
.social-link:hover{
    transform: translateY(-1px);
    background: rgba(255,255,255,0.85);
}
.social-ico svg{
    display:block;
    fill: currentColor;
    opacity: .9;
}
