/* Atelier Schmit - Glasinlood.com Styles */
/* Complete stylesheet - January 2026 */

/* CSS Variables */
:root {
    --white: #ffffff;
    --black: #0a0a0a;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --radius: 8px;
}

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--gray-100);
}

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

main {
    padding: 2rem 0;
}

/* ==================== */
/* HEADER & NAVIGATION  */
/* ==================== */

header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--black);
    text-decoration: none;
}

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

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

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

.nav-item.dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

.nav-dropdown-trigger svg {
    width: 16px;
    height: 16px;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    box-shadow: var(--shadow);
}

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

.nav-dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--gray-600);
}

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

/* Language Switch */
.nav-lang {
    margin-left: 1rem;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    font-size: 0.8rem;
}

.flag-icon {
    width: 20px;
    height: 14px;
}

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

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

/* ==================== */
/* HERO SECTION         */
/* ==================== */

.hero-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

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

.hero-text p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    max-width: 500px;
}

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

.hero-tags-row {
    flex-wrap: nowrap;
}

.hero-tags a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: all 0.2s;
}

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

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

.hero-image {
    border-radius: var(--radius);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    max-height: 450px;
    object-fit: cover;
    object-position: center;
}

/* ==================== */
/* OVER SECTIE          */
/* ==================== */

.over-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.over-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

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

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

.over-card p:last-child {
    margin-bottom: 0;
}

/* Info Cards */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 4.5rem;
}

.info-card {
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

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

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

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

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

.info-card-content a {
    color: var(--gray-700);
    text-decoration: none;
}

.info-card-content a:hover {
    color: var(--black);
    text-decoration: underline;
}

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

/* ==================== */
/* DIENSTEN SECTIE      */
/* ==================== */

.diensten-section {
    margin-bottom: 3rem;
}

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

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

.dienst-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.dienst-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.dienst-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.dienst-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-500);
    flex-shrink: 0;
}

.dienst-thumb {
    flex: 1;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--gray-100);
}

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

.dienst-card:hover .dienst-thumb img {
    transform: scale(1.05);
}

.dienst-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dienst-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ==================== */
/* STIJLEN SECTIE       */
/* ==================== */

.stijlen-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
}

.stijlen-intro {
    margin-bottom: 1.5rem;
}

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

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

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

.stijl-tag {
    background: var(--gray-100);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
}

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

/* ==================== */
/* PAGE HERO (SUBPAGES) */
/* ==================== */

.page-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.page-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.page-hero-content p {
    color: var(--gray-600);
}

.page-hero-image {
    border-radius: var(--radius);
    overflow: hidden;
}

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

/* Breadcrumb */
.breadcrumb {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--gray-500);
    text-decoration: none;
}

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

/* ==================== */
/* GALLERY GRID         */
/* ==================== */

.gallery-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

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

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

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

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

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

/* ==================== */
/* LIGHTBOX             */
/* ==================== */

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

.lightbox.active {
    display: flex;
}

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

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    user-select: none;
    transition: opacity 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 0.7;
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

/* ==================== */
/* TE KOOP / FOR SALE   */
/* ==================== */

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

.tekoop-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.tekoop-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.tekoop-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    cursor: pointer;
}

.tekoop-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

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

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

.tekoop-status {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

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

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

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

.tekoop-info {
    padding: 1rem;
}

.tekoop-ref {
    font-size: 0.75rem;
    color: var(--gray-400);
    display: block;
    margin-bottom: 0.25rem;
}

.tekoop-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tekoop-specs {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.tekoop-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
}

/* Info TBC Badge */
.info-tbc {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.7rem;
    border-radius: 3px;
    margin-left: 0.5rem;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}

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

/* ==================== */
/* CONTENT SECTIONS     */
/* ==================== */

.content-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

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

.content-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}

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

.content-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-600);
}

.content-section li {
    margin-bottom: 0.5rem;
}

/* Spec Table */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
}

.spec-table th,
.spec-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.spec-table th {
    font-weight: 600;
    color: var(--gray-600);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-table td {
    color: var(--gray-700);
}

.spec-table tbody tr:hover {
    background: var(--gray-50);
}

/* ==================== */
/* CTA SECTION          */
/* ==================== */

.cta-section {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    margin-top: 3rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}

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

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

.cta-button {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 0.75rem 2rem;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: background 0.2s;
}

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

/* ==================== */
/* FOOTER               */
/* ==================== */

.footer-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    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.9rem;
    color: var(--gray-600);
}

.footer-contact strong {
    display: block;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.footer-contact a {
    color: var(--gray-600);
    text-decoration: none;
}

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

.footer-contact em {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.footer-map iframe {
    border-radius: var(--radius);
}

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

/* Simple footer for subpages */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--black);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

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

.footer-links a {
    color: var(--gray-500);
    text-decoration: none;
}

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

/* ==================== */
/* COOKIE BANNER        */
/* ==================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 1rem;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

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

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

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

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

.cookie-decline {
    background: var(--gray-200);
    color: var(--black);
}

/* ==================== */
/* RESPONSIVE - TABLET  */
/* ==================== */

@media (max-width: 1024px) {
    .hero-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image img {
        height: 400px;
    }
    
    .over-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-cards {
        padding-top: 0;
    }
    
    .diensten-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tekoop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .page-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== */
/* RESPONSIVE - MOBILE  */
/* ==================== */

@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        border-bottom: 1px solid var(--gray-200);
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a,
    .nav-dropdown-trigger {
        display: block;
        padding: 0.75rem 0;
        width: 100%;
    }
    
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        display: none;
        padding-left: 1rem;
    }
    
    .nav-item.dropdown.open .nav-dropdown {
        display: block;
    }
    
    .hero-card {
        padding: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .hero-tags {
        flex-wrap: wrap;
    }
    
    .hero-tags-row {
        flex-wrap: wrap;
    }
    
    .diensten-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tekoop-grid {
        grid-template-columns: repeat(2, 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 {
        justify-content: center;
    }
    
    .filter-bar {
        flex-direction: column;
    }
    
    .spec-table th,
    .spec-table td {
        padding: 0.75rem 1rem;
    }
}

/* ==================== */
/* RESPONSIVE - SMALL   */
/* ==================== */

@media (max-width: 480px) {
    .hero-card {
        padding: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-tags {
        gap: 0.375rem;
    }
    
    .hero-tags a {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .tekoop-grid {
        grid-template-columns: 1fr;
    }
    
    .stijlen-tags {
        gap: 0.75rem;
    }
    
    .stijl-tag {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .content-section,
    .gallery-section,
    .stijlen-section {
        padding: 1.5rem;
    }
}

/* ==================== */
/* LARGE DESKTOP        */
/* ==================== */

@media (min-width: 1200px) {
    .diensten-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem;
    }
    
    .dienst-card {
        padding: 1.25rem;
    }
    
    .dienst-card h3 {
        font-size: 0.9rem;
    }
    
    .dienst-card p {
        font-size: 0.8rem;
    }
}
