/*
Theme Name: Jan Brink
Theme URI: https://janbrink.com
Author: Antigravity
Author URI: https://janbrink.com
Description: Minimalistische en rustige galerij-stijl website voor Jan Brink.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
Text Domain: janbrink
*/

/* Reset & Basis Variabelen */
:root {
    --white: #ffffff;
    --bg-color: #fdfdfb; /* Crème/Off-white voor gallery gevoel */
    --text-color: #1a1a1a; /* Krachtiger zwart voor contrast */
    --text-light: #666666;
    --accent-color: #8a9084; /* Iets diepere aardetint */
    --accent-light: #e2e4df;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif; /* Modern en luchtig */
    --spacing-huge: 10rem;
    --spacing-large: 6rem;
    --spacing-medium: 3rem;
    --border-color: #eeeeee;
    --transition-smooth: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    margin-top: 0;
    color: var(--text-color);
    line-height: 1.2;
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.8rem; letter-spacing: -0.01em; margin-bottom: 2rem; }
h3 { font-size: 1.8rem; }

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

a:hover {
    color: var(--accent-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Header & Navigatie */
.site-header {
    padding: 2.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(253, 253, 251, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.site-branding a {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--accent-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-color);
    position: relative;
    transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--text-color);
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.main-navigation.toggled .hamburger {
    background: transparent;
}

.main-navigation.toggled .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.main-navigation.toggled .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Responsiveness */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation .menu-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        z-index: 1000;
        transition: right 0.3s ease;
        padding: 80px 40px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.05);
    }

    .main-navigation.toggled .menu-container {
        right: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .main-navigation a {
        font-size: 1.2rem;
    }

    .site-header {
        padding: 1rem 5%;
    }

    /* Exhibition artists stack */
    .other-artists {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .home-hero {
        height: 480px;
    }

    .slide {
        transform: scale(1) !important;
        transition: opacity 1.5s ease-in-out !important;
    }

    .slide.active {
        transform: scale(1) !important;
    }

    .slide-image-container {
        height: 50vh;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .entry-title {
        font-size: 2.5rem;
    }
}

/* Algemene layout */
.site-content {
    padding: var(--spacing-medium) 0 var(--spacing-large);
}

/* Kunstwerken Galerij (Archive) */
.kunstwerk-archive .page-header {
    margin-bottom: var(--spacing-large);
    text-align: center;
}

.artwork-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-medium);
    margin-bottom: var(--spacing-large);
}

.artwork-grid-item {
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
}

.artwork-grid-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.artwork-grid-item:hover {
    transform: translateY(-10px);
}

.artwork-thumbnail {
    margin-bottom: 1.5rem;
    overflow: hidden;
    background-color: transparent;
    aspect-ratio: 4 / 5; /* default voor kunst */
    display: flex;
    align-items: center;
    justify-content: center;
}

.artwork-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.artwork-grid-item:hover .artwork-thumbnail img {
    transform: scale(1.05);
}

.no-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #ededed;
}

.grid-title {
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
    color: var(--text-color);
}

/* Kunstwerk Detail (Single) */
.single-artwork-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-large);
    align-items: flex-start;
}

.artwork-image-wrapper {
    flex: 1 1 55%;
    text-align: center;
}

.artwork-main-image {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
}

.artwork-info-wrapper {
    flex: 1 1 35%;
    position: sticky;
    top: 5rem;
}

.artwork-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.artwork-meta {
    margin-bottom: 2.5rem;
    padding-left: 1rem;
    border-left: 1px solid var(--accent-color);
}

.meta-item {
    margin: 0.6rem 0;
    font-size: 0.95rem;
    color: #555;
}

.artwork-content {
    margin-bottom: 3rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.back-link {
    display: inline-block;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsiveness */
@media (max-width: 768px) {
    .single-artwork-container {
        flex-direction: column;
    }
    
    .artwork-image-wrapper, .artwork-info-wrapper {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .artwork-info-wrapper {
        position: static;
    }
}

/* Hero Slider */
.home-hero {
    height: 80vh;
    position: relative;
    overflow: hidden;
    margin-bottom: var(--spacing-large);
}

.slider-container {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s linear;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.15);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.slide-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.view-work-link {
    display: inline-block;
    color: white;
    border: 1px solid white;
    padding: 0.8rem 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.view-work-link:hover {
    background: white;
    color: var(--text-color);
}

.slider-nav {
    position: absolute;
    bottom: 2rem;
    right: 5%;
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.slider-nav button {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav button:hover {
    background: white;
    color: var(--text-color);
}

/* Exhibition Update */
.other-artists {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.artist-thumbnail {
    text-align: center;
    max-width: 150px;
}

.artist-thumbnail img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.artist-thumbnail:hover img {
    transform: scale(1.1);
}

.artist-name {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

/* Contact Page Styling */
.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-layout {
    display: flex;
    gap: 4rem;
}

.form-wrapper {
    flex: 2;
}

.contact-details {
    flex: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    font-family: inherit;
}

.alert {
     padding: 1rem;
     margin-bottom: 2rem;
}

.alert-success {
    background-color: #f0f7f0;
    color: #2e5a2e;
    border: 1px solid #d4e3d4;
}

.alert-error {
    background-color: #fff0f0;
    color: #a02020;
    border: 1px solid #f9d6d6;
}

@media (max-width: 768px) {
    .contact-layout {
        flex-direction: column;
    }
}

/* Biografie Pagina Styling */
.biografie-page {
    padding-top: var(--spacing-medium);
}

.biografie-header {
    text-align: center;
    margin-bottom: var(--spacing-large);
}

.biografie-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--accent-color);
}

.biografie-layout {
    display: flex;
    gap: var(--spacing-large);
    align-items: flex-start;
}

.biografie-image {
    flex: 1 1 40%;
}

.biografie-content {
    flex: 1 1 50%;
}

.portrait-image {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 50px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
}

.image-caption {
    font-size: 0.8rem;
    font-style: italic;
    color: #888;
    text-align: center;
}

.portrait-placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: #f0f0ed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.content-block {
    margin-bottom: 2.5rem;
}

.content-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .biografie-layout {
        flex-direction: column;
    }
    
    .biografie-image, .biografie-content {
        width: 100%;
    }
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Knoppen verfijnen */
.button-accent, .view-work-link {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-block;
    cursor: pointer;
}

.button-accent:hover, .view-work-link:hover {
    background: var(--text-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Aanvullende witruimte tussen secties */
section {
    padding: var(--spacing-huge) 0;
}

.front-page .home-hero {
    margin-bottom: 0;
}

/* Hero Slider */
.home-hero {
    height: 80vh;
    position: relative;
    overflow: hidden;
    margin-bottom: var(--spacing-large);
}

.slider-container {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s linear;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.15);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.slide-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.view-work-link {
    display: inline-block;
    color: white;
    border: 1px solid white;
    padding: 0.8rem 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.view-work-link:hover {
    background: white;
    color: var(--text-color);
}

.slider-nav {
    position: absolute;
    bottom: 2rem;
    right: 5%;
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.slider-nav button {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav button:hover {
    background: white;
    color: var(--text-color);
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-large);
}

.welcome-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.9;
}

.intro-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.text-link {
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 3px;
    font-weight: 400;
}

/* Exhibition Block */
.exhibition-block {
    background-color: #f7f7f4; /* Subtiele steunkleur */
    padding: var(--spacing-large) 0;
    margin-bottom: var(--spacing-large);
}

.exhibition-card {
    background: white;
    padding: var(--spacing-medium);
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    text-align: center;
}

.exhibition-card .label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 1rem;
}

.exhibition-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.exhibition-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.button-accent {
    display: inline-block;
    background: transparent;
    color: var(--text-color);
    border: 1px solid #c8c0b4;
    padding: 0.75rem 2rem;
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: border-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.button-accent:hover {
    border-color: var(--text-color);
    color: var(--text-color);
    background: transparent;
}

/* Recent Works Section */
.recent-works .section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--spacing-medium);
}

.view-all {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pagination */
.pagination {
    margin-top: var(--spacing-large);
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination a, .pagination span {
    padding: 0.6rem 1rem;
    border: 1px solid #eee;
    font-size: 0.9rem;
    color: var(--text-color);
}

.pagination .current {
    background: var(--text-color);
    color: white;
    border-color: var(--text-color);
}

.pagination a:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Footer Navigation */
.site-footer {
    border-top: 1px solid #eee;
    padding: var(--spacing-medium) 0;
    margin-top: var(--spacing-large);
    text-align: center;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-nav a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

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

.site-info {
    font-size: 0.8rem;
    color: #999;
}

.site-info a {
    color: inherit;
    border-bottom: 1px solid #eee;
}

/* Architectuur Pagina Specifiek */
.architectuur-page .page-header {
    text-align: center;
    margin-bottom: var(--spacing-large);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-style: italic;
    margin-top: 1rem;
}

.architectuur-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: var(--spacing-large);
    align-items: center;
}

.roderveld-link-box {
    background: #f4f4f1;
    padding: 2.5rem;
    border-radius: 2px;
}

.roderveld-link-box p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.arch-item {
    margin-bottom: 2rem;
}

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

.arch-image-box {
    background: #f5f4f0;
    aspect-ratio: 4 / 3;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    border: 1px solid #e5e0d8;
}

.arch-item.large .arch-image-box {
    aspect-ratio: 16 / 9;
}

.arch-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.arch-img.plattegrond {
    object-fit: contain;
    padding: 1.5rem;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.arch-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.arch-meta {
    font-size: 0.85rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .architectuur-intro {
        grid-template-columns: 1fr;
    }
    .arch-item.large {
        grid-column: span 1;
    }
    .arch-grid {
        grid-template-columns: 1fr;
    }
}

/* Biografie Pagina Specifiek */
.biografie-full-layout {
    margin-top: -2.5rem; /* Om over de header marge te compenseren voor de hero */
}

.bio-hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    margin-bottom: 5rem;
}

.bio-main-image {
    width: 100%;
    height: 100%;
}

.bio-main-image img, .portrait-placeholder-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.portrait-placeholder-full {
    background: #f0f0ed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.bio-floating-title {
    position: absolute;
    bottom: -3rem;
    left: 10%;
    background: var(--white);
    padding: 4rem;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.05);
    max-width: 500px;
    z-index: 10;
}

.bio-floating-title h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.bio-overlap-content {
    padding-top: 8rem;
    max-width: 900px;
    margin: 0 auto;
}

.bio-intro-large {
    margin-bottom: 5rem;
}

.lead-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--text-color);
    font-style: italic;
}

.bio-grid-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.serif-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.bio-main-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 5rem;
}

.signature {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-top: 3rem;
    font-style: italic;
    color: var(--text-color);
}

.bio-footer-links {
    display: flex;
    gap: 3rem;
    padding-bottom: 5rem;
}

@media (max-width: 900px) {
    .bio-floating-title {
        position: static;
        width: 100%;
        padding: 2rem;
        box-shadow: none;
        margin-top: 2rem;
    }
    .bio-hero-section {
        height: 50vh;
    }
    .bio-grid-text {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Lightbox Styling */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    opacity: 1;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 20px 80px rgba(0,0,0,0.1);
    transform: scale(0.95);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-overlay.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 3rem;
    font-weight: 200;
    color: var(--text-color);
    cursor: pointer;
}
