/* ============================================
   PEDICUREPRAKTIJK DEMY — Custom Theme Styles
   Clean spa-inspired design
   ============================================ */

/* ----- Variables ----- */
:root {
    --pd-cream: #F5F0EB;
    --pd-cream-dark: #EDE6DD;
    --pd-taupe: #B5A08E;
    --pd-taupe-light: #C8B8A8;
    --pd-brown: #8E7A6A;
    --pd-brown-dark: #6B5A4C;
    --pd-text: #4A3F35;
    --pd-text-light: #7A6E63;
    --pd-white: #FFFFFF;
    --pd-black: #2C2420;
    --pd-accent: #B5A08E;
    --pd-accent-hover: #A08C7A;
    --pd-gold: #C9A96E;
    --pd-border: #E0D6CC;
    --pd-shadow-sm: 0 2px 8px rgba(142, 122, 106, 0.08);
    --pd-shadow-md: 0 4px 20px rgba(142, 122, 106, 0.12);
    --pd-shadow-lg: 0 8px 40px rgba(142, 122, 106, 0.15);
    --pd-radius: 8px;
    --pd-radius-lg: 16px;
    --pd-transition: 0.3s ease;
    --pd-font: 'Open Sans', sans-serif;
    --pd-font-heading: 'Montserrat', sans-serif;
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--pd-font);
    color: var(--pd-text);
    background: var(--pd-white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--pd-font-heading);
    color: var(--pd-brown-dark);
    line-height: 1.3;
    font-weight: 600;
}

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

a {
    color: var(--pd-brown);
    text-decoration: none;
    transition: color var(--pd-transition);
}

a:hover {
    color: var(--pd-brown-dark);
}

/* ----- Utilities ----- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----- Buttons ----- */
.pd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--pd-font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: var(--pd-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--pd-transition);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.pd-btn--accent {
    background: var(--pd-brown);
    color: var(--pd-white);
    border-color: var(--pd-brown);
}

.pd-btn--accent:hover {
    background: var(--pd-brown-dark);
    border-color: var(--pd-brown-dark);
    color: var(--pd-white);
    transform: translateY(-2px);
    box-shadow: var(--pd-shadow-md);
}

.pd-btn--outline {
    background: transparent;
    color: var(--pd-brown);
    border-color: var(--pd-brown);
}

.pd-btn--outline:hover {
    background: var(--pd-brown);
    color: var(--pd-white);
    transform: translateY(-2px);
}

.pd-btn--sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.pd-btn--lg {
    padding: 18px 42px;
    font-size: 1.05rem;
}

.pd-btn--full {
    width: 100%;
    text-align: center;
}

/* ----- Section Shared ----- */
.pd-section-header {
    margin-bottom: 48px;
}

.pd-section-header--center {
    text-align: center;
}

.pd-section-header__title {
    font-size: 2.2rem;
    margin-bottom: 12px;
    position: relative;
}

.pd-section-header--center .pd-section-header__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--pd-taupe);
    margin: 16px auto 0;
    border-radius: 2px;
}

.pd-section-header__text {
    font-size: 1.1rem;
    color: var(--pd-text-light);
    max-width: 600px;
}

.pd-section-header--center .pd-section-header__text {
    margin-left: auto;
    margin-right: auto;
}

.pd-label {
    display: inline-block;
    font-family: var(--pd-font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--pd-taupe);
    margin-bottom: 8px;
}

/* ===========================
   HEADER
   =========================== */
.pd-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--pd-transition);
    background: transparent;
}

.pd-header.is-scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--pd-shadow-sm);
    padding: 10px 0;
}

.pd-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.pd-header__logo img {
    height: 48px;
    width: auto;
    transition: height var(--pd-transition);
}

.pd-header.is-scrolled .pd-header__logo img {
    height: 40px;
}

.pd-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.pd-nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pd-nav-list li a {
    font-family: var(--pd-font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--pd-text);
    text-decoration: none;
    padding: 6px 0;
    position: relative;
    transition: color var(--pd-transition);
}

.pd-nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--pd-taupe);
    transform: scaleX(0);
    transition: transform var(--pd-transition);
}

.pd-nav-list li a:hover {
    color: var(--pd-brown);
}

.pd-nav-list li a:hover::after {
    transform: scaleX(1);
}

.pd-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pd-header__phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--pd-text-light);
}

.pd-header__phone:hover {
    color: var(--pd-brown);
}

.pd-header__phone span {
    display: none;
}

@media (min-width: 1200px) {
    .pd-header__phone span {
        display: inline;
    }
}

/* Hamburger */
.pd-header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1010;
}

.pd-header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pd-brown-dark);
    border-radius: 2px;
    transition: all var(--pd-transition);
}

.pd-header__toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.pd-header__toggle.is-active span:nth-child(2) {
    opacity: 0;
}
.pd-header__toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.pd-mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.pd-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.pd-mobile-menu__inner {
    text-align: center;
    width: 100%;
    max-width: 320px;
    padding: 0 24px;
}

.pd-mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.pd-mobile-menu__list li {
    margin-bottom: 8px;
}

.pd-mobile-menu__list li a {
    font-family: var(--pd-font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--pd-brown-dark);
    padding: 12px 0;
    display: block;
    transition: color var(--pd-transition);
}

.pd-mobile-menu__list li a:hover {
    color: var(--pd-taupe);
}

.pd-mobile-menu__footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===========================
   HERO
   =========================== */
.pd-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--pd-cream);
}

.pd-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pd-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(107, 90, 76, 0.65) 0%, 
        rgba(181, 160, 142, 0.45) 100%);
}

.pd-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 140px 0 80px;
}

.pd-hero__title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--pd-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.pd-hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Fallback when no hero image: show cream bg with dark text */
.pd-hero:not(:has(.pd-hero__bg[style*="url"])) .pd-hero__overlay {
    background: var(--pd-cream);
}

.pd-hero:not(:has(.pd-hero__bg[style*="url"])) .pd-hero__title {
    color: var(--pd-brown-dark);
}

.pd-hero:not(:has(.pd-hero__bg[style*="url"])) .pd-hero__subtitle {
    color: var(--pd-text);
}

/* ===========================
   USP BAR
   =========================== */
.pd-usp-bar {
    background: var(--pd-brown);
    padding: 20px 0;
}

.pd-usp-bar__row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.pd-usp-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.pd-usp-bar__item i {
    font-size: 1.1rem;
    color: var(--pd-gold);
}

/* ===========================
   TREATMENTS
   =========================== */
.pd-treatments {
    padding: 100px 0;
    background: var(--pd-white);
}

.pd-treatments__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.pd-treatment-card {
    background: var(--pd-white);
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    transition: all var(--pd-transition);
}

.pd-treatment-card:hover {
    border-color: var(--pd-taupe);
    box-shadow: var(--pd-shadow-md);
    transform: translateY(-4px);
}

.pd-treatment-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--pd-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pd-treatment-card__icon i {
    font-size: 1.5rem;
    color: var(--pd-brown);
}

.pd-treatment-card__body {
    flex: 1;
}

.pd-treatment-card__title {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--pd-brown-dark);
}

.pd-treatment-card__desc {
    font-size: 0.95rem;
    color: var(--pd-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.pd-treatment-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--pd-border);
    gap: 12px;
}

.pd-treatment-card__duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--pd-text-light);
}

.pd-treatment-card__duration i {
    font-size: 0.9rem;
}

.pd-treatment-card__price {
    font-family: var(--pd-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pd-brown);
}

.pd-treatments__cta {
    text-align: center;
}

/* ===========================
   ABOUT
   =========================== */
.pd-about {
    padding: 100px 0;
    background: var(--pd-cream);
}

.pd-about__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.pd-about__image-wrap {
    position: relative;
    border-radius: var(--pd-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.pd-about__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pd-about__name {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--pd-brown-dark);
}

.pd-about__intro {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--pd-brown);
    margin-bottom: 16px;
}

.pd-blockquote {
    border-left: 3px solid var(--pd-taupe);
    padding: 12px 0 12px 24px;
    margin: 24px 0;
    font-style: italic;
    color: var(--pd-text-light);
}

.pd-blockquote p {
    margin: 0;
}

.pd-credentials {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd-credentials li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--pd-brown);
}

.pd-credentials li i {
    color: var(--pd-taupe);
    font-size: 1.1rem;
}

/* ===========================
   STEPS / WERKWIJZE
   =========================== */
.pd-steps {
    padding: 100px 0;
    background: var(--pd-white);
}

.pd-steps__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

/* Connecting line */
.pd-steps__track::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 48px;
    right: 48px;
    height: 2px;
    background: var(--pd-border);
}

.pd-step {
    text-align: center;
    position: relative;
}

.pd-step__number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--pd-cream);
    border: 2px solid var(--pd-taupe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--pd-font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pd-brown);
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all var(--pd-transition);
}

.pd-step:hover .pd-step__number {
    background: var(--pd-brown);
    color: var(--pd-white);
}

.pd-step__title {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--pd-brown-dark);
}

.pd-step__text {
    font-size: 0.9rem;
    color: var(--pd-text-light);
    line-height: 1.6;
}

/* ===========================
   REVIEWS
   =========================== */
.pd-reviews {
    padding: 100px 0;
    background: var(--pd-cream);
}

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

.pd-review-card {
    background: var(--pd-white);
    border-radius: var(--pd-radius-lg);
    padding: 36px;
    box-shadow: var(--pd-shadow-sm);
    transition: all var(--pd-transition);
}

.pd-review-card:hover {
    box-shadow: var(--pd-shadow-md);
    transform: translateY(-4px);
}

.pd-review-card__stars {
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.pd-review-card__stars i {
    color: var(--pd-gold);
    font-size: 1rem;
}

.pd-review-card__text {
    font-size: 0.95rem;
    color: var(--pd-text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.pd-review-card__author {
    font-family: var(--pd-font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pd-taupe);
}

/* ===========================
   FAQ
   =========================== */
.pd-faq {
    padding: 100px 0;
    background: var(--pd-white);
}

.pd-faq__list {
    max-width: 760px;
    margin: 0 auto;
}

.pd-faq__item {
    border-bottom: 1px solid var(--pd-border);
}

.pd-faq__item:first-child {
    border-top: 1px solid var(--pd-border);
}

.pd-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--pd-font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--pd-brown-dark);
    transition: color var(--pd-transition);
}

.pd-faq__question:hover {
    color: var(--pd-taupe);
}

.pd-faq__question i {
    font-size: 1rem;
    transition: transform var(--pd-transition);
    flex-shrink: 0;
    color: var(--pd-taupe);
}

.pd-faq__item.is-open .pd-faq__question i {
    transform: rotate(180deg);
}

.pd-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.pd-faq__item.is-open .pd-faq__answer {
    max-height: 400px;
}

.pd-faq__answer p {
    padding: 0 0 20px;
    margin: 0;
    font-size: 0.95rem;
    color: var(--pd-text-light);
    line-height: 1.7;
}

/* ===========================
   CONTACT CTA
   =========================== */
.pd-contact {
    padding: 100px 0;
    background: var(--pd-brown);
    color: var(--pd-white);
}

.pd-contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.pd-contact__heading {
    font-size: 2.2rem;
    color: var(--pd-white);
    margin-bottom: 16px;
}

.pd-contact__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.pd-contact__details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pd-contact__link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: color var(--pd-transition);
}

.pd-contact__link:hover {
    color: var(--pd-white);
}

.pd-contact__link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    color: var(--pd-gold);
}

.pd-contact__card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--pd-radius-lg);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.pd-contact__card h3 {
    color: var(--pd-white);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.pd-contact__card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.pd-contact__card .pd-btn--accent {
    background: var(--pd-gold);
    border-color: var(--pd-gold);
    color: var(--pd-brown-dark);
    margin-bottom: 12px;
}

.pd-contact__card .pd-btn--accent:hover {
    background: #d4b578;
    border-color: #d4b578;
}

.pd-contact__card .pd-btn--outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--pd-white);
}

.pd-contact__card .pd-btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--pd-white);
}

/* ===========================
   FOOTER
   =========================== */
.pd-footer {
    background: var(--pd-black);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.pd-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pd-footer__logo {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(10);
    opacity: 0.8;
}

.pd-footer__tagline {
    font-size: 0.9rem;
    line-height: 1.6;
}

.pd-footer__col h4 {
    color: var(--pd-white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.pd-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pd-footer__col ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.pd-footer__col ul li a {
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--pd-transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-footer__col ul li a:hover {
    color: var(--pd-white);
}

.pd-footer__col ul li i {
    font-size: 0.85rem;
    opacity: 0.7;
}

.pd-footer__kvk {
    margin-top: 8px;
    font-size: 0.8rem;
    opacity: 0.6;
}

.pd-footer__bottom {
    padding: 24px 0;
    text-align: center;
}

.pd-footer__bottom p {
    font-size: 0.82rem;
    margin: 0;
    opacity: 0.5;
}

/* ===========================
   REVEAL ANIMATIONS
   =========================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   SCROLLBAR
   =========================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--pd-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--pd-taupe-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pd-taupe);
}
