/*
Theme Name: Cupping Barneveld
Theme URI: https://cuppingbarneveld.nl
Author: Cupping Barneveld
Description: Custom thema voor Cupping Barneveld - Cupping & Detox Therapie
Version: 1.2
License: GNU General Public License v2 or later
Text Domain: cupping-barneveld
*/

/* ─── CSS VARIABLES ─── */
:root {
    --sand: #C4B8A6;
    --sand-light: #D6CCBE;
    --sand-lighter: #EDE8E2;
    --gold: #B28E5B;
    --gold-dark: #9A7A4D;
    --sage: #8E9B7A;
    --sage-light: #A5B08F;
    --sage-dark: #7A8A68;
    --terracotta: #C08B6A;
    --terracotta-light: #D4A485;
    --white: #FEFCFA;
    --offwhite: #F8F5F1;
    --text-dark: #3A3530;
    --text-medium: #6B6158;
    --text-light: #8A8079;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.25;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-dark); }

.text-link {
    color: var(--gold);
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    transition: all 0.3s;
}
.text-link:hover {
    color: var(--gold-dark);
    border-color: var(--gold-dark);
}

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 30px; }

/* ─── NAVIGATION ─── */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(254,252,250,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s;
}

.site-header.scrolled {
    border-bottom: 1px solid var(--sand-light);
    box-shadow: 0 2px 20px rgba(58,53,48,0.04);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.site-logo {
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

/* Logo spacing */
.logo-main {
    gap: 0.3em;
}

/* Nav menu */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: var(--text-medium);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.main-nav a:hover,
.main-nav .current-menu-item a {
    color: var(--gold);
}

.main-nav a:hover::after,
.main-nav .current-menu-item a::after {
    width: 100%;
}

/* Mobile toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 1px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* ─── HERO (front page) ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #9A8E7C 0%, var(--sand) 50%, #A89D8D 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 30px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(178,142,91,0.12) 0%, transparent 70%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0,0); }
    50% { transform: translate(30px,-20px); }
}

.hero-content { position: relative; z-index: 1; }

.hero-title {
    font-size: 52px;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Hero title spacing */

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.85);
    margin-top: 10px;
}

.btn {
    display: inline-block;
    padding: 14px 42px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.4s;
    cursor: pointer;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--white);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--gold-dark);
    border-color: var(--white);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
}

/* ─── SECTIONS ─── */
.section { padding: 100px 0; }
.section--alt { background: var(--offwhite); }
.section--dark { background: var(--text-dark); color: var(--white); }

.section-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-title {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section--dark .section-title { color: var(--white); }

.section-text {
    color: var(--text-medium);
    max-width: 700px;
    line-height: 1.9;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-text { margin: 0 auto; }

.divider {
    width: 1px;
    height: 60px;
    background: var(--sand-light);
    margin: 0 auto;
}

/* ─── GRID LAYOUTS ─── */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

/* ─── TREATMENT CARDS ─── */
.treatment-card {
    background: var(--white);
    padding: 44px 32px;
    border-radius: 2px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--sand);
}

.treatment-card:nth-child(2) { border-top-color: var(--sage); }
.treatment-card:nth-child(3) { border-top-color: var(--terracotta); }
.treatment-card:nth-child(4) { border-top-color: var(--gold); }
.treatment-card:nth-child(5) { border-top-color: var(--sage-dark); }

.treatment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(58,53,48,0.08);
}

.treatment-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.treatment-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.treatment-price {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--gold);
}

.treatment-duration {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

.treatment-card .btn {
    margin-top: 16px;
    font-size: 10px;
    padding: 10px 24px;
}

/* ─── PROCESS STEPS ─── */
.process-step { text-align: center; position: relative; }

.step-number {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--sand);
    margin-bottom: 14px;
}

.process-step h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ─── CTA BANNER ─── */
.cta-banner {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--gold) 100%);
    text-align: center;
    padding: 90px 30px;
}

.cta-banner h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 14px;
}

.cta-banner p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

/* ─── BENEFITS LIST ─── */
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 26px; }

.benefit-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.benefit-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 6px;
    flex-shrink: 0;
}

.benefit-item:nth-child(2) .benefit-dot { background: var(--sage); }
.benefit-item:nth-child(3) .benefit-dot { background: var(--terracotta); }
.benefit-item:nth-child(4) .benefit-dot { background: var(--sand); }

.benefit-item h4 { font-size: 18px; margin-bottom: 4px; }
.benefit-item p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ─── IMAGE PLACEHOLDER ─── */
.image-placeholder {
    aspect-ratio: 3/4;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.image-placeholder--sage { background-color: var(--sage); }
.image-placeholder--gold { background-color: var(--gold); }
.image-placeholder--terracotta { background-color: var(--terracotta); }
.image-placeholder--sand { background-color: var(--sand); }

.image-placeholder::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255,255,255,0.15);
}

/* ─── ABOUT SECTION ─── */
.about-text p { margin-bottom: 18px; color: var(--text-medium); line-height: 1.9; }

/* ─── REVIEWS SECTION ─── */
.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--offwhite);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 30px;
}

.reviews-stars { color: #F5A623; font-size: 18px; }

.reviews-badge span {
    font-size: 13px;
    color: var(--text-medium);
}

/* ─── CONTACT ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sand-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.contact-detail strong {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.contact-detail span { font-size: 14px; color: var(--text-medium); }

/* Contact form (WPForms styled) */
.wpforms-container input[type="text"],
.wpforms-container input[type="email"],
.wpforms-container input[type="tel"],
.wpforms-container textarea,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--sand-light);
    background: var(--offwhite);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
    outline: none;
}

.wpforms-container input:focus,
.wpforms-container textarea:focus,
.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: var(--gold);
    background: var(--white);
}

.wpforms-container .wpforms-submit,
.wpcf7 input[type="submit"] {
    padding: 14px 40px;
    background: var(--gold);
    color: var(--white);
    border: none;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s;
    border-radius: 2px;
}

.wpforms-container .wpforms-submit:hover,
.wpcf7 input[type="submit"]:hover {
    background: var(--gold-dark);
}

/* ─── CALENDLY EMBED ─── */
.calendly-inline-widget {
    min-width: 320px;
    min-height: 700px;
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.5);
    padding: 50px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.7);
}

.footer-nav ul { list-style: none; display: flex; gap: 28px; }

.footer-nav a {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    letter-spacing: 0.1em;
}

.footer-nav a:hover { color: var(--gold); }

.footer-copy {
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 30px;
    margin-top: 30px;
}

/* ─── PAGE HEADER ─── */
.page-header {
    background: linear-gradient(135deg, var(--sand) 0%, var(--sand-light) 100%);
    padding: 140px 30px 70px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: var(--white);
    letter-spacing: 0.06em;
}

.page-content {
    padding: 80px 0;
}

.page-content .entry-content {
    max-width: 760px;
    margin: 0 auto;
}

.page-content .entry-content p {
    margin-bottom: 18px;
    color: var(--text-medium);
    line-height: 1.9;
}

.page-content .entry-content h2 {
    font-size: 32px;
    margin: 40px 0 16px;
}

.page-content .entry-content h3 {
    font-size: 24px;
    margin: 30px 0 12px;
}

/* ─── WORDPRESS DEFAULTS ─── */
.wp-block-image { margin: 30px 0; }
.wp-block-image img { border-radius: 2px; }

.aligncenter { text-align: center; }
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ─── ANIMATIONS ─── */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .grid-2, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .section-title { font-size: 32px; }
    .hero-title { font-size: 36px; }
    .main-nav { display: none; }
    .main-nav.active { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--sand-light); padding: 20px 30px; }
    .main-nav.active ul { flex-direction: column; gap: 16px; }
    .menu-toggle { display: flex; }
    .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 600px) {
    .section { padding: 70px 0; }
    .grid-4 { grid-template-columns: 1fr; }
    .hero { min-height: 80vh; padding: 100px 20px 60px; }
    .hero-title { font-size: 28px; letter-spacing: 0.08em; }
}


/* ==================== QUOTE BLOCK ==================== */
.quote-block {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage);
    border-radius: 6px;
    padding: 60px 40px;
    min-height: 300px;
}

.sage-quote {
    text-align: center;
    margin: 0;
}

.sage-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--white);
    margin: 0 0 20px;
}

.sage-quote cite {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-style: normal;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sand-lighter);
}