/* ===================================
   Ray's Wonderland - Main Stylesheet
   =================================== */

/* ===================================
   CSS Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    font-weight: 400;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* ===================================
   Layout
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   Header
   =================================== */
.header {
    background-color: #D9FFD4;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Indie Flower', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.05em;
}

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

.nav-list a {
    font-weight: 500;
    color: #333;
    position: relative;
    padding: 0.5rem 0;
}

.nav-list a.active::after,
.nav-list a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #333;
}

.nav-list a.active {
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================================
   Main Content
   =================================== */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 3rem 0;
}

.page-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

/* Project Navigation */
.project-nav {
    position: sticky;
    top: 80px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
    padding: 1rem;
    background-color: #f8f9fa;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.project-nav .nav-btn {
    padding: 0.625rem 1.5rem;
    background-color: white;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-nav .nav-btn:hover {
    background-color: #D9FFD4;
    border-color: #D9FFD4;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.project-nav .nav-btn.active {
    background-color: #D9FFD4;
    border-color: #D9FFD4;
    color: #333;
    font-weight: 600;
}

/* ===================================
   Home Page - Two Column Layout
   =================================== */
.layout-two-column {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.profile-section {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-img {
    width: 128px;
    height: 128px;
    border-radius: 16px;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.profile-motto {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.category-nav {
    margin-top: 2rem;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-link {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-link:hover,
.category-link.active {
    background-color: #e9ecef;
}

.category-link.active {
    font-weight: 600;
}

/* Gallery */
.gallery {
    width: 100%;
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 1rem;
    backdrop-filter: blur(2px);
}

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

.gallery-overlay h3 {
    color: white;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

/* Hidden class for filtering - works on gallery items and their anchor wrappers */
.gallery-item.hidden,
a.hidden {
    display: none;
}

/* ===================================
   Projects Page
   =================================== */
.projects-page .project-section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    border-bottom: 3px solid #D9FFD4;
    padding-bottom: 0.5rem;
}

.subsection-title {
    font-size: 1.5rem;
    margin: 2rem 0 1.5rem;
    color: #555;
}

.project {
    margin-bottom: 3rem;
}

.project-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.project-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.project-meta {
    display: flex;
    gap: 2rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.project-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.project-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.project-images img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-subitem {
    margin-bottom: 2.5rem;
}

/* Artwork Grid */
.artwork-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.artwork-item {
    text-align: center;
}

.artwork-item img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.artwork-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.artwork-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.artwork-meta {
    font-size: 0.85rem;
    color: #777;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Architecture Grid */
.architecture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.architecture-item {
    text-align: center;
}

.architecture-item img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Ideas Grid */
.ideas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.idea-item {
    text-align: center;
}

.idea-item img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.idea-item span {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

/* Warm-up Grid */
.warmup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.warmup-grid img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Experiences Page
   =================================== */
.experiences-page .experience-section {
    margin-bottom: 4rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #D9FFD4;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -3.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #D9FFD4;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #D9FFD4;
}

.timeline-content {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.job-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.job-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.job-description {
    list-style: disc;
    padding-left: 1.5rem;
    color: #555;
}

.job-description li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Projects List */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.project-item-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.project-item-period {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.project-item-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.project-item-skills {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
}

/* Volunteer List */
.volunteer-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.volunteer-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.volunteer-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.volunteer-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.volunteer-description {
    list-style: disc;
    padding-left: 1.5rem;
    color: #555;
}

.volunteer-description li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Certifications Grid */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.certification-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cert-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.cert-issuer {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.cert-date {
    color: #777;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.cert-id,
.cert-grade {
    color: #888;
    font-size: 0.8rem;
    font-style: italic;
}

/* Education List */
.education-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.education-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.education-degree {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.education-school {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.education-meta {
    display: flex;
    gap: 2rem;
    color: #777;
    font-size: 0.9rem;
}

/* ===================================
   Skills Page
   =================================== */
.skills-page .skill-section {
    margin-bottom: 3rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.skill-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.skill-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.skill-level {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.skill-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.skill-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-item {
    background-color: #D9FFD4;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #333;
}

/* ===================================
   About Page
   =================================== */
.about-page {
    max-width: 900px;
    margin: 0 auto;
}

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

.about-profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
}

.about-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.about-section {
    margin-bottom: 2.5rem;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.about-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.interests-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.interest-tag {
    background-color: #D9FFD4;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #333;
}

/* ===================================
   Contact Page
   =================================== */
.contact-page {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

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

.contact-item strong {
    min-width: 100px;
    color: #333;
}

.contact-item a {
    color: #0066cc;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D9FFD4;
    box-shadow: 0 0 0 3px rgba(217, 255, 212, 0.2);
}

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

.submit-btn {
    background-color: #D9FFD4;
    color: #333;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #c5f0bf;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.submit-btn:active {
    transform: translateY(0);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    text-align: center;
}

.footer-line {
    width: 100px;
    height: 2px;
    background-color: #D9FFD4;
    margin: 0 auto 1rem;
}

.footer-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #777;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet */
@media (max-width: 992px) {
    .layout-two-column {
        grid-template-columns: 200px 1fr;
        gap: 2rem;
    }

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

    .nav-list {
        gap: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .layout-two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sidebar {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .category-nav {
        width: 100%;
        max-width: 400px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #D9FFD4;
        transition: right 0.3s ease;
        padding-top: 5rem;
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-list a {
        display: block;
        padding: 1rem 2rem;
    }

    .hamburger {
        display: flex;
        z-index: 1000;
    }

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

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

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

    .timeline {
        padding-left: 2rem;
    }

    .timeline-marker {
        left: -2.4rem;
    }

    .project-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .education-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .project-images {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding: 1.5rem;
    }

    .project-nav {
        top: 70px;
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .project-nav .nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .profile-img {
        width: 100px;
        height: 100px;
    }

    .skills-grid,
    .certifications-grid,
    .artwork-grid,
    .architecture-grid,
    .ideas-grid {
        grid-template-columns: 1fr;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
}

/* ===================================
   Image Lightbox
   =================================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    cursor: pointer;
    animation: lightboxFadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: lightboxImageIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* Make images clickable in specific sections */
.project-images img,
.artwork-item img,
.architecture-item img {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-images img:hover,
.artwork-item img:hover,
.architecture-item img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes lightboxImageIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2.5rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .lightbox.active {
        padding: 1rem;
    }
}
