/* ============================================
   Atelier Schmit - Glas in Lood Website
   Complete Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   Header & Navigation
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--gray-600);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--black);
}

/* Dropdown trigger button */
.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    background: none;
    background-color: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    padding: 0;
    margin: 0;
    font-family: inherit;
    transition: color 0.2s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    outline: none;
}

.nav-dropdown-trigger:hover {
    color: var(--black);
}

.nav-dropdown-trigger svg {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
}

.nav-item.dropdown:hover .nav-dropdown-trigger svg,
.nav-item.dropdown.open .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

/* Dropdown menu */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: -1rem;
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    padding: 0.5rem 0;
    margin-top: 0.75rem;
    z-index: 100;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 0;
    right: 0;
    height: 0.75rem;
}

.nav-item.dropdown:hover .nav-dropdown,
.nav-item.dropdown.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    transition: all 0.15s;
}

.nav-dropdown a:hover {
    background: var(--gray-50);
    color: var(--black);
}

/* Contact button styling */
.nav-contact a {
    font-size: 0.9rem;
    color: var(--gray-600);
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-contact a:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

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

.mobile-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s;
}

.mobile-menu.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Related pages block (for subpages) */
.related-pages {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 12px;
}

.related-pages h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--black);
}

.related-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.related-page-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}

.related-page-link:hover {
    border-color: var(--gray-400);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.related-page-link span {
    font-size: 0.9rem;
    color: var(--gray-700);
}

/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gray-900);
    color: var(--white);
    padding: 1rem;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 0.875rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.cookie-accept {
    background: var(--white);
    color: var(--black);
}

.cookie-decline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-600);
}

/* ============================================
   Main Content
   ============================================ */
main {
    padding-top: 80px;
}

/* Hero Section */
.hero-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
    align-items: center;
}

.hero-text {
    max-width: 540px;
}

.hero-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
    display: block;
}

.hero-text h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.hero-tags a,
.hero-tags span {
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    font-size: 0.875rem;
    color: var(--gray-700);
    border-radius: 2px;
    transition: all 0.2s;
}

.hero-tags a:hover {
    background: var(--gray-200);
    color: var(--black);
}

/* Hero tags op ÃƒÆ’Ã‚Â©ÃƒÆ’Ã‚Â©n rij */
.hero-tags-row {
    flex-wrap: nowrap;
}

.hero-tags-row a {
    font-size: 0.8rem;
    white-space: nowrap;
}

.hero-image {
    position: relative;
}

/* ============================================
   Hero Slideshow
   ============================================ */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

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

.slideshow-controls {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.slideshow-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.slideshow-btn:hover {
    background: var(--white);
    color: var(--black);
}

.slideshow-dots {
    display: flex;
    gap: 6px;
}

.slideshow-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
}

.slideshow-dots .dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.slideshow-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-image-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--gray-700);
    z-index: 10;
}

/* ============================================
   Over Ons Section
   ============================================ */
.over-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 0;
    border-top: 1px solid var(--gray-200);
}

.over-card h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.over-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 4.5rem;
}

.info-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    flex-shrink: 0;
}

.info-card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--gray-600);
}

.info-card-content h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-card-content p,
.info-card-content a {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

.info-note {
    font-size: 0.8rem !important;
    color: var(--gray-400) !important;
    margin-top: 0.25rem !important;
}

/* ============================================
   Diensten Section
   ============================================ */
.section-title {
    padding: 2rem 0;
    border-top: 1px solid var(--gray-200);
}

.section-title h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
}

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-bottom: 4rem;
}

/* 6 kolommen op grote schermen */
@media (min-width: 1200px) {
    .diensten-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem;
    }
    
    .dienst-card h3 {
        font-size: 1.1rem;
    }
    
    .dienst-card p {
        font-size: 0.85rem;
    }
}

.dienst-card {
    display: block;
    background: var(--gray-50);
    padding: 1.5rem;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
}

.dienst-card:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.dienst-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.dienst-icon {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 500;
}

.dienst-thumb {
    width: 80px;
    height: 60px;
    overflow: hidden;
}

.dienst-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dienst-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.dienst-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   Portfolio Section
   ============================================ */
.portfolio-section {
    padding: 4rem 0;
    border-top: 1px solid var(--gray-200);
}

.portfolio-intro {
    max-width: 600px;
    margin-bottom: 2rem;
}

.portfolio-intro h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.portfolio-intro p {
    color: var(--gray-600);
    line-height: 1.7;
}

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

.portfolio-item {
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.portfolio-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

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

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

.portfolio-more {
    text-align: center;
    margin-top: 2rem;
}

.text-link {
    font-size: 0.9rem;
    color: var(--gray-600);
    transition: color 0.2s;
}

.text-link:hover {
    color: var(--black);
}

/* ============================================
   Stijlen Section
   ============================================ */
.stijlen-section {
    padding: 4rem 0;
    border-top: 1px solid var(--gray-200);
}

.stijlen-intro {
    max-width: 600px;
    margin-bottom: 2rem;
}

.stijlen-intro h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.stijlen-intro p {
    color: var(--gray-600);
}

.stijlen-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.stijl-tag {
    padding: 1rem 1.5rem;
    background: var(--gray-50);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stijl-tag span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray-500);
}

/* ============================================
   Map Section
   ============================================ */
.map-section {
    padding: 4rem 0;
    border-top: 1px solid var(--gray-200);
}

.map-header {
    margin-bottom: 2rem;
}

.map-header h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.map-address {
    color: var(--gray-600);
}

.map-container {
    height: 400px;
    background: var(--gray-100);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   Footer
   ============================================ */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid var(--gray-200);
    margin-top: 2rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--gray-500);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--black);
}

.footer-right {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Footer Section (new layout with map) */
.footer-section {
    padding: 3rem 0 0;
    border-top: 1px solid var(--gray-200);
    margin-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.footer-info > p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.footer-contact p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact strong {
    color: var(--gray-800);
}

.footer-contact a {
    color: var(--gray-700);
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--black);
}

.footer-contact em {
    font-style: normal;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer-map {
    min-height: 300px;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
    border-radius: 8px;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-map {
        order: -1;
    }
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    padding: 1rem;
    transition: opacity 0.2s;
}

.lightbox-nav:hover {
    opacity: 0.7;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

/* ============================================
   Subpage Styles
   ============================================ */
.breadcrumb {
    padding: 1.5rem 0;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.breadcrumb a {
    color: var(--gray-500);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--black);
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.breadcrumb-current {
    color: var(--gray-800);
}

.page-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem 0 4rem;
    align-items: center;
}

.page-hero-content h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.page-hero-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
    border-top: 1px solid var(--gray-200);
}

.content-section h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.content-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.content-section > p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 800px;
}

.content-section ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.content-section li {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Gallery Grid */
.gallery-section {
    padding: 2rem 0;
}

.gallery-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

/* Gallery grid column variants */
.gallery-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 900px !important;
    gap: 1rem;
}

.gallery-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 900px !important;
    gap: 1rem;
}

.gallery-grid.cols-1 {
    grid-template-columns: 1fr !important;
    max-width: 900px !important;
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

/* Default square aspect ratio */
.gallery-grid .gallery-item {
    aspect-ratio: 1;
}

/* Bovenlichten: breed en laag (~8:5) */
.gallery-grid.cols-2 .gallery-item {
    aspect-ratio: 8/5 !important;
}

/* Deuren: hoog en smal (~1:2) */
.gallery-grid.cols-3.portrait .gallery-item {
    aspect-ratio: 1/2 !important;
}

/* Nieuw gemaakt: heel breed (~5:1) */
.gallery-grid.cols-1 .gallery-item {
    aspect-ratio: 5/1 !important;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 2rem 1rem 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.gallery-caption strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.gallery-caption span {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    padding: 4rem;
    background: var(--gray-50);
    text-align: center;
    margin: 3rem 0;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.2s;
}

.cta-button:hover {
    background: var(--gray-800);
}

/* Quick Navigation */
.quick-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.quick-nav a {
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    font-size: 0.875rem;
    color: var(--gray-700);
    transition: all 0.2s;
}

.quick-nav a:hover {
    background: var(--gray-200);
    color: var(--black);
}

/* Project Section */
.project-section {
    padding: 3rem 0;
    border-top: 1px solid var(--gray-200);
}

.project-section h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.project-subtitle {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.project-content {
    margin-bottom: 2rem;
    max-width: 800px;
}

.project-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Project gallery full-width */
.project-section .gallery-grid {
    width: 100%;
    max-width: 100%;
}

/* Pricing Note */
.pricing-note {
    background: var(--gray-50);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-note h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.pricing-note p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* Status Badge */
.status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-beschikbaar {
    background: #dcfce7;
    color: #166534;
}

.status-gereserveerd {
    background: #fef3c7;
    color: #92400e;
}

.status-verkocht {
    background: var(--gray-200);
    color: var(--gray-600);
}

/* Sale Cards */
.sale-grid {
    display: grid;
    gap: 2rem;
}

.sale-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    background: var(--white);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.sale-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.sale-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sale-content {
    padding: 2rem;
}

.sale-ref {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.sale-content h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.sale-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.sale-description {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sale-price {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--gray-50);
}

.filter-bar label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-right: 0.5rem;
}

.filter-bar select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-200);
    background: var(--white);
    font-size: 0.875rem;
    color: var(--gray-700);
}

/* Info Tables */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 2rem;
}

.info-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.info-table td:first-child {
    font-weight: 500;
    width: 40%;
}

.info-table td:last-child {
    color: var(--gray-600);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-slideshow {
        height: 400px;
    }
    
    .over-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .diensten-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .page-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sale-card {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid.cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        padding: 1rem 1.5rem;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links > li {
        border-bottom: 1px solid var(--gray-100);
    }
    
    .nav-links > li:last-child {
        border-bottom: none;
    }
    
    .nav-links > li > a,
    .nav-dropdown-trigger {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
    }
    
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin: 0;
        padding: 0 0 0.5rem 1rem;
        display: none;
        background: transparent;
    }
    
    .nav-item.dropdown.open .nav-dropdown {
        display: block;
    }
    
    .nav-dropdown a {
        padding: 0.75rem 0;
        border-bottom: none;
    }
    
    .nav-dropdown-trigger svg {
        margin-left: auto;
    }
    
    .nav-contact {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-slideshow {
        height: 300px;
    }
    
    .slideshow-controls {
        bottom: 50px;
    }
    
    .diensten-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid.cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid.cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .page-hero-image img {
        height: 250px;
    }
    
    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .sale-image {
        height: 200px;
    }
    
    .sale-content {
        padding: 1.5rem;
    }
    
    .filter-bar {
        flex-direction: column;
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    .related-pages-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-tags {
        gap: 0.375rem;
    }
    
    .hero-tags a,
    .hero-tags span {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .hero-slideshow {
        height: 250px;
    }
    
    .slideshow-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .slideshow-dots .dot {
        width: 6px;
        height: 6px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item.large {
        grid-column: span 1;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid.cols-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .gallery-grid.cols-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .stijlen-tags {
        gap: 0.75rem;
    }
    
    .stijl-tag {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .quick-nav {
        gap: 0.25rem;
    }
    
    .quick-nav a {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   Additional Info Page Styles
   ============================================ */
.process-steps {
    margin: 2rem 0;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.process-step:last-child {
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-content h4 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    color: #666;
}

.checklist {
    margin: 1.5rem 0;
}

.checklist-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 6px;
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.checklist-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.checklist-item p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.faq-list {
    margin: 1.5rem 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    margin: 0 0 0.5rem;
    color: #333;
}

.faq-item p {
    margin: 0;
    color: #666;
}

.definition-list {
    margin: 1.5rem 0;
}

.definition-list dt {
    font-weight: 600;
    color: #333;
    margin-top: 1rem;
}

.definition-list dt:first-child {
    margin-top: 0;
}

.definition-list dd {
    margin: 0.25rem 0 0 0;
    color: #666;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}
