/*
Theme Name: DVA Portfolio
Theme URI: https://dvaalten.com
Author: Dominique van Aalten
Author URI: https://dvaalten.com
Description: Minimalistic portfolio theme for Dominique van Aalten - Content Marketeer & Alleskunner
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dva-portfolio
Tags: portfolio, minimal, one-column, custom-colors, custom-menu, featured-images

This theme uses a CMYK-inspired color palette.
*/

/* CSS Variables */
:root {
    --font-size: 16px;
    --background: #ffffff;
    --foreground: #1a1a1a;
    --card: #ffffff;
    --card-foreground: #1a1a1a;
    --primary: #030213;
    --primary-foreground: #ffffff;
    --secondary: #f5f5f7;
    --secondary-foreground: #030213;
    --muted: #ececf0;
    --muted-foreground: #717182;
    --accent: #e9ebef;
    --accent-foreground: #030213;
    --border: rgba(0, 0, 0, 0.1);
    --ring: #b3b3b3;
    --radius: 0.625rem;

    /* KCMY Colors */
    --kcmy-cyan: #00BCD4;
    --kcmy-magenta: #E91E63;
    --kcmy-yellow: #FFC107;
    --kcmy-key: #000000;

    /* Spacing */
    --spacing: 0.25rem;

    /* Font */
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

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

html {
    font-size: var(--font-size);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font: inherit;
    cursor: pointer;
    background: none;
    border: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.3;
}

h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1.25rem;
}

h3 {
    font-size: 1.125rem;
}

h4 {
    font-size: 1rem;
}

/* Utility Classes */
.container {
    max-width: 80rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

@media (min-width: 1024px) {
    .container {
        padding-inline: 3rem;
    }
}

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

/* Color Dots Pattern */
.color-dots {
    display: flex;
    gap: 0.5rem;
}

.color-dots .dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.color-dots .dot-cyan {
    background-color: var(--kcmy-cyan);
}

.color-dots .dot-magenta {
    background-color: var(--kcmy-magenta);
}

.color-dots .dot-yellow {
    background-color: var(--kcmy-yellow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.15s ease;
}

.btn-primary {
    background-color: var(--kcmy-key);
    color: white;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-magenta {
    background-color: var(--kcmy-magenta);
    color: white;
}

.btn-magenta:hover {
    opacity: 0.9;
}

.btn-outline {
    border: 2px solid var(--foreground);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--foreground);
    color: var(--background);
}

/* Navigation */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.site-nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 3rem;
    }
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 3rem;
    width: auto;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    position: relative;
    color: rgba(26, 26, 26, 0.6);
    transition: color 0.15s ease;
    text-decoration: none;
}

.nav-link:hover {
    color: rgba(26, 26, 26, 0.8);
}

.nav-link.active {
    color: var(--foreground);
}

.nav-indicator {
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--kcmy-cyan);
}

.nav-cta {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    background-color: var(--kcmy-magenta);
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.15s ease;
}

.nav-cta:hover {
    background-color: rgba(233, 30, 99, 0.9);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--foreground);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
    text-decoration: none;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 3rem;
    }
}

.hero-card {
    background: white;
    padding: 3rem;
    max-width: 42rem;
    border-left: 4px solid var(--kcmy-cyan);
}

@media (min-width: 1024px) {
    .hero-card {
        padding: 4rem;
    }
}

.hero-card .color-dots {
    margin-bottom: 1.5rem;
}

.hero-card .color-dots .dot {
    width: 0.75rem;
    height: 0.75rem;
}

.hero-card h1 {
    margin-bottom: 1rem;
}

.hero-card p {
    color: rgba(26, 26, 26, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

.hero-clients {
    margin-bottom: 1.5rem;
}

.hero-clients-label {
    font-size: 0.875rem;
    color: rgba(26, 26, 26, 0.6);
    margin-bottom: 0.75rem;
}

.hero-clients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.client-tag {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    background-color: rgba(26, 26, 26, 0.05);
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 9999px;
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.hero-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-dot.active {
    width: 2rem;
    background-color: white;
}

.hero-dot:hover {
    background-color: rgba(255, 255, 255, 0.75);
}

/* Section Styles */
.section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header .color-dots {
    justify-content: center;
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: rgba(26, 26, 26, 0.6);
    max-width: 42rem;
    margin-inline: auto;
}

/* Services Section */
.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: white;
    padding: 2rem;
    border: 1px solid rgba(26, 26, 26, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: transparent;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.cyan::before {
    background-color: var(--kcmy-cyan);
}

.service-card.magenta::before {
    background-color: var(--kcmy-magenta);
}

.service-card.yellow::before {
    background-color: var(--kcmy-yellow);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon.cyan {
    border-color: var(--kcmy-cyan);
    color: var(--kcmy-cyan);
}

.service-icon.magenta {
    border-color: var(--kcmy-magenta);
    color: var(--kcmy-magenta);
}

.service-icon.yellow {
    border-color: var(--kcmy-yellow);
    color: var(--kcmy-yellow);
}

.service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: rgba(26, 26, 26, 0.7);
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.portfolio-category.cyan {
    color: var(--kcmy-cyan);
}

.portfolio-category.magenta {
    color: var(--kcmy-magenta);
}

.portfolio-category.yellow {
    color: var(--kcmy-yellow);
}

.portfolio-overlay h3 {
    color: white;
    margin-bottom: 0.25rem;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-accent {
    transform: scaleY(1);
}

.portfolio-accent.cyan {
    background-color: var(--kcmy-cyan);
}

.portfolio-accent.magenta {
    background-color: var(--kcmy-magenta);
}

.portfolio-accent.yellow {
    background-color: var(--kcmy-yellow);
}

/* Stats Section */
.stats {
    background-color: #fafafa;
}

.stats-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number.cyan {
    color: var(--kcmy-cyan);
}

.stat-number.magenta {
    color: var(--kcmy-magenta);
}

.stat-number.yellow {
    color: var(--kcmy-yellow);
}

.stat-label {
    color: rgba(26, 26, 26, 0.6);
    font-size: 0.875rem;
}

/* Process Section */
.process-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.process-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.process-number.cyan {
    background-color: var(--kcmy-cyan);
}

.process-number.magenta {
    background-color: var(--kcmy-magenta);
}

.process-number.yellow {
    background-color: var(--kcmy-yellow);
}

.process-number.key {
    background-color: var(--kcmy-key);
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

.process-step p {
    color: rgba(26, 26, 26, 0.7);
    font-size: 0.875rem;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: white;
    padding: 2rem;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 0;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    line-height: 1;
    opacity: 0.1;
}

.review-text {
    color: rgba(26, 26, 26, 0.8);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.review-info h4 {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.review-info p {
    font-size: 0.75rem;
    color: rgba(26, 26, 26, 0.6);
}

.review-avatar-placeholder {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--kcmy-cyan), var(--kcmy-magenta));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
}

.review-quote {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--kcmy-cyan);
}

.reviewer-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.reviewer-linkedin:hover {
    color: #0077b5;
}

.reviewer-linkedin svg {
    color: #0077b5;
}

/* CTA Section */
.cta-section {
    background-color: #1a1a1a;
    color: white;
    padding: 6rem 0;
}

.cta-section .section-header h2 {
    color: white;
}

.cta-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.cta-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .cta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cta-card {
    display: block;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cta-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-card.cyan:hover {
    border-color: var(--kcmy-cyan);
}

.cta-card.magenta:hover {
    border-color: var(--kcmy-magenta);
}

.cta-card.yellow {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
}

.cta-card.yellow:hover {
    background: var(--kcmy-yellow);
    border-color: var(--kcmy-yellow);
}

.cta-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: background-color 0.3s ease;
}

.cta-icon.cyan {
    background: rgba(0, 188, 212, 0.2);
    color: var(--kcmy-cyan);
}

.cta-card:hover .cta-icon.cyan {
    background: var(--kcmy-cyan);
    color: white;
}

.cta-icon.magenta {
    background: rgba(233, 30, 99, 0.2);
    color: var(--kcmy-magenta);
}

.cta-card:hover .cta-icon.magenta {
    background: var(--kcmy-magenta);
    color: white;
}

.cta-icon.yellow {
    background: rgba(255, 193, 7, 0.2);
    color: var(--kcmy-yellow);
}

.cta-card:hover .cta-icon.yellow {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.cta-card h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.cta-card.yellow:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand img {
    height: 4rem;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 24rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--kcmy-cyan);
    background-color: var(--kcmy-cyan);
}

.footer-social svg {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-menu h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-menu nav a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 0;
    transition: color 0.15s ease;
}

.footer-menu nav a:hover {
    color: white;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-link {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--kcmy-cyan);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-contact-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Contact Form */
.contact-section {
    padding: 8rem 0;
}

.contact-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: rgba(26, 26, 26, 0.7);
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--kcmy-cyan);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    background: #f5f5f7;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.15s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--foreground);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

/* About Page */
.about-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(to bottom, #fafafa, white);
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 2fr 3fr;
    }
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: -1rem;
    right: 1rem;
    bottom: 1rem;
    border: 2px solid var(--kcmy-cyan);
    z-index: -1;
}

.about-content .color-dots {
    margin-bottom: 1rem;
}

.about-content h1 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: rgba(26, 26, 26, 0.7);
    margin-bottom: 1rem;
    line-height: 1.75;
}

/* Skills Section */
.skills-section {
    padding: 5rem 0;
}

.skills-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fafafa;
}

.skill-icon {
    font-size: 1.5rem;
}

.skill-info {
    flex: 1;
}

.skill-name {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.skill-bar {
    height: 4px;
    background: rgba(26, 26, 26, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--kcmy-cyan);
    border-radius: 2px;
    transition: width 1s ease;
}

/* Page Header */
.page-header {
    padding: 10rem 0 3rem;
    background: linear-gradient(to bottom, #fafafa, white);
    text-align: center;
}

.page-header .color-dots {
    justify-content: center;
    margin-bottom: 1rem;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(26, 26, 26, 0.6);
    max-width: 42rem;
    margin-inline: auto;
}

/* Portfolio Filter */
.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--border);
    background: white;
    font-size: 0.875rem;
    transition: all 0.15s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--foreground);
    color: white;
    border-color: var(--foreground);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* WordPress Specific */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: rgba(26, 26, 26, 0.6);
    margin-top: 0.5rem;
}

/* Werkwijze Section */
.werkwijze-section {
    padding: 4rem 0;
    background: var(--dark-800);
}

.werkwijze-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.werkwijze-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Skills as Tags */
.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.skill-tag {
    background: var(--dark-700);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    border: 1px solid var(--dark-600);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    border-color: var(--cyan);
    transform: translateY(-2px);
}

.skill-tag .skill-name {
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Hero-style Review Cards */
.reviews-grid .review-card {
    background: white;
    padding: 2.5rem;
    border: none;
    border-left: 4px solid var(--cyan);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.reviews-grid .review-card::before {
    display: none;
}

/* Color variants */
.review-card--cyan {
    border-left-color: var(--cyan) !important;
}

.review-card--magenta {
    border-left-color: var(--magenta) !important;
}

.review-card--yellow {
    border-left-color: var(--yellow) !important;
}

/* Quote mark styling - positioned bottom right */
.review-quote-mark {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    opacity: 0.15;
    pointer-events: none;
}

.review-card--cyan .review-quote-mark {
    color: var(--cyan);
    opacity: 0.25;
}

.review-card--magenta .review-quote-mark {
    color: var(--magenta);
    opacity: 0.25;
}

.review-card--yellow .review-quote-mark {
    color: var(--yellow);
    opacity: 0.3;
}

.review-quote-mark svg {
    width: 64px;
    height: 64px;
}

/* Ensure text stays above quote mark */
.reviews-grid .review-text {
    position: relative;
    z-index: 1;
    color: rgba(26, 26, 26, 0.8);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.reviews-grid .review-author {
    position: relative;
    z-index: 1;
}

/* Hero-style Review Cards - Fixed */
.reviews-grid .review-card {
    background: white !important;
    padding: 2.5rem;
    border: none !important;
    border-left: 4px solid var(--kcmy-cyan) !important;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.reviews-grid .review-card::before {
    display: none !important;
}

/* Color variants */
.review-card.review-card--cyan {
    border-left: 4px solid var(--kcmy-cyan) !important;
}

.review-card.review-card--magenta {
    border-left: 4px solid var(--kcmy-magenta) !important;
}

.review-card.review-card--yellow {
    border-left: 4px solid var(--kcmy-yellow) !important;
}

/* Quote mark styling - positioned bottom right */
.review-quote-mark {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    pointer-events: none;
}

.review-card--cyan .review-quote-mark {
    color: var(--kcmy-cyan);
    opacity: 0.3;
}

.review-card--magenta .review-quote-mark {
    color: var(--kcmy-magenta);
    opacity: 0.3;
}

.review-card--yellow .review-quote-mark {
    color: var(--kcmy-yellow);
    opacity: 0.35;
}

.review-quote-mark svg {
    width: 64px;
    height: 64px;
}

/* Ensure text stays above quote mark */
.reviews-grid .review-text {
    position: relative;
    z-index: 1;
    color: rgba(26, 26, 26, 0.8);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.reviews-grid .review-author {
    position: relative;
    z-index: 1;
}

/* ===== Reviews Page Masonry Layout ===== */
.reviews-page {
    padding: 4rem 0;
}

.reviews-masonry {
    column-count: 3;
    column-gap: 1.5rem;
}

@media (max-width: 1024px) {
    .reviews-masonry {
        column-count: 2;
    }
}

@media (max-width: 640px) {
    .reviews-masonry {
        column-count: 1;
    }
}

/* Masonry Review Card */
.review-card-masonry {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    break-inside: avoid;
    border-left: 4px solid var(--kcmy-cyan);
    position: relative;
    overflow: hidden;
}

/* Color variants for masonry cards */
.review-card-masonry--cyan {
    border-left-color: var(--kcmy-cyan);
}

.review-card-masonry--magenta {
    border-left-color: var(--kcmy-magenta);
}

.review-card-masonry--yellow {
    border-left-color: var(--kcmy-yellow);
}

/* Quote mark for masonry cards */
.review-quote-masonry {
    position: absolute;
    bottom: 0.75rem;
    right: 1rem;
    pointer-events: none;
    opacity: 0.2;
}

.review-card-masonry--cyan .review-quote-masonry {
    color: var(--kcmy-cyan);
}

.review-card-masonry--magenta .review-quote-masonry {
    color: var(--kcmy-magenta);
}

.review-card-masonry--yellow .review-quote-masonry {
    color: var(--kcmy-yellow);
}

.review-quote-masonry svg {
    width: 48px;
    height: 48px;
}

/* Text styling for masonry cards */
.review-text-masonry {
    color: rgba(26, 26, 26, 0.8);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Author section for masonry cards */
.review-author-masonry {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.review-avatar-masonry {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.review-avatar-placeholder-masonry {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--kcmy-cyan), var(--kcmy-magenta));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
}

.review-info-masonry h4 {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: var(--dark-900);
}

.review-info-masonry h4 a {
    color: var(--dark-900);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.review-info-masonry h4 a:hover {
    color: var(--kcmy-cyan);
}

.review-info-masonry p {
    font-size: 0.75rem;
    color: rgba(26, 26, 26, 0.6);
    margin: 0;
}

/* Reviews Masonry - Visual Separation Fix */
.reviews-masonry {
    column-count: 3;
    column-gap: 2rem;
}

.review-card-masonry {
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.review-card-masonry:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
