/* Modern Split Layout - Style2 */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #0f172a;
    /* Dark Navy */
    --accent-color: #0ea5e9;
    /* Sky Blue */
    --text-dark: #1e293b;
    --text-light: #94a3b8;
    --bg-light: #ffffff;
    --bg-offset: #f1f5f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

body {
    height: 100vh;
    overflow: hidden;
    display: flex;
    background-color: var(--bg-light);
}

/* LEFT PANE - FIXED PROFILE */
.split-split-left {
    width: 25%;
    min-width: 300px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    text-align: center;
    flex-shrink: 0;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.6), inset 0 0 5px rgba(255, 255, 255, 0.9), 4px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.split-left-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-image-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.1);
    padding: 5px;
    margin: 0 auto 2rem auto;
}

.profile-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.split-left-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.split-left-content .title {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    display: block;
    line-height: 1.6;
}

.split-left-content .title:last-of-type {
    margin-bottom: 1.5rem;
}

.contact-list {
    list-style: none;
    text-align: left;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.contact-list li {
    margin-bottom: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.contact-list i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Sidebar Buttons */
.quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 0.8rem;
    border-radius: 25px;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.quick-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    /* Yazıyı beyaz tut */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.sidebar-copyright {
    margin-top: 2.5rem;
    width: 100%;
    padding: 0 1rem;
    font-size: 0.7rem;
    opacity: 0.7;
    letter-spacing: 0.05em;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    background: transparent;
    border: none;
}

.sidebar-copyright span {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.8rem;
    display: block;
    margin-top: 0.1rem;
}

/* Hide copyright on mobile to save space */
@media (max-width: 900px) {
    .sidebar-copyright {
        display: none;
    }
}

/* RIGHT PANE - SCROLLABLE CONTENT */
.split-split-right {
    width: 75%;
    overflow-y: auto;
    position: relative;
    background-color: var(--bg-light);
}

/* Nav Bar styling within Right Pane */
.top-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 3rem;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    white-space: nowrap;
}

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

/* Dropdown Container (LI) */
.nav-item-dropdown {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
    cursor: pointer;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 200;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    text-align: left;
}

.dropdown-link:hover {
    background-color: var(--bg-offset);
    color: var(--accent-color);
}


/* Content Container */
.content-wrapper {
    padding: 3rem 4rem 15rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    display: none;
    animation: fadeIn 0.5s ease;
}

section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h2.section-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-left: 1rem;
}

h2.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

/* Homepage Welcome Card */
.welcome-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.welcome-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.welcome-text {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
}

/* Two Column Grid */
.home-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-top: 2rem;
}

.home-column {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
}

.column-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 700;
    padding: 1.5rem;
    margin: 0;
    border-bottom: 3px solid #ff6b35;
    background: #f8f9fa;
}

/* Book Card */
.book-card {
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.book-card:hover {
    transform: translateY(-5px);
}

.book-cover {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.book-title {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 700;
    margin: 1rem 0 0.5rem 0;
}

.book-publisher {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Announcement Cards */
.announcement-card {
    padding: 1.25rem;
    border-left: 4px solid #ff6b35;
    background: #fff;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.announcement-card:hover {
    background: #f8f9fa;
    border-left-color: #ff5722;
    transform: translateX(3px);
}

.announcement-title {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.announcement-summary {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Article Items */
.article-item {
    margin-bottom: 0.5rem;
    /* Kartlar arası boşluk (8px) */
    padding: 0.75rem !important;
    /* Kart içi boşluk (12px) - modern-card padding'ini ezer */
    position: relative;
    transition: all 0.2s ease;
}

.article-item.has-link {
    cursor: pointer;
}

.article-item.has-link:hover {
    border-color: var(--primary-color);
    background-color: #f8fafc;
    transform: translateX(3px);
    /* Hover hareketi de küçültüldü */
}

.article-reference {
    color: var(--text-dark);
    line-height: 1.4;
    /* Satır aralığı daha da sıkı */
    font-size: 0.88rem;
    /* Font biraz daha küçük */
    margin: 0;
    text-align: justify;
}

/* Tavsiyeler Accordion */

.tavsiye-header:hover {
    background-color: #f8fafc;
}

.article-reference em {
    font-style: italic;
}

/* Cards & Elements */
.modern-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.modern-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Horizontal Card Layout for Lesson List */
.card-horizontal {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.card-img-box {
    width: 150px;
    height: 110px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    flex-shrink: 0;
}

.card-text-box {
    flex-grow: 1;
}

.card-date {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-title {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-color);
    cursor: pointer;
    background: none;
    border: none;
    text-decoration: none;
}

/* Modal Styling */
.modal-overlay {
    background-color: rgba(15, 23, 42, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: white;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    line-height: 1.8;
}

.modal-header {
    padding: 1.5rem 2rem;
    background: var(--bg-offset);
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* ===========================


/* Responsive */
@media (max-width: 1100px) {
    .split-split-left {
        width: 30%;
    }

    .split-split-right {
        width: 70%;
    }
}

@media (max-width: 900px) {
    body {
        flex-direction: column;
        overflow: auto;
    }

    .split-split-left {
        width: 100%;
        min-width: 0;
        padding: 2rem 1rem;
        height: auto;
    }

    .split-split-right {
        width: 100%;
        overflow: visible;
    }

    .content-wrapper {
        padding: 2rem 1.5rem;
    }

    .top-nav {
        padding: 1rem;
        overflow-x: auto;
    }

    .nav-item-dropdown:hover .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
        background: var(--bg-offset);
        min-width: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .card-horizontal {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-img-box {
        width: 100%;
        height: 180px;
        margin-bottom: 1rem;
    }

    .home-grid {
        grid-template-columns: 1fr;
    }
}


/* ===========================
   Recommendation Item Responsive Styles
   =========================== */
.recommendation-card-body {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.recommendation-poster {
    flex-shrink: 0;
    width: 150px;
}

.recommendation-content {
    flex-grow: 1;
}

@media (max-width: 900px) {
    .recommendation-card-body {
        flex-direction: column;
        align-items: center;
    }

    .recommendation-poster {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .recommendation-poster img {
        max-width: 200px;
        /* Limit max width on mobile for aesthetics */
        width: 100%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        /* Enhance shadow on mobile */
    }

    .recommendation-content {
        width: 100%;
    }
}

/* Remove default marker */
details.modern-details>summary {
    list-style: none;
}

details.modern-details>summary::-webkit-details-marker {
    display: none;
}

details.modern-details {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

details.modern-details[open] {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-color);
}

details.modern-details summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    background-color: #fff;
    font-weight: 600;
    color: var(--text-dark);
    transition: background-color 0.2s;
    user-select: none;
}

details.modern-details summary:hover {
    background-color: #f8fafc;
    color: var(--primary-color);
}

.summary-text {
    font-size: 1rem;
}

.summary-icon {
    font-size: 1.25rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

/* Rotate icon when open */
details.modern-details[open] summary .summary-icon {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.details-content {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
    background-color: #ffffff;
    color: #4a5568;
    line-height: 1.7;
    animation: slideDown 0.3s ease-out;
}

/* Optional animation for content appearance */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Derkenar Intro Styling */
.derkenar-intro-card {
    background-image: url('images/derkenarBgr.png');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.derkenar-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.derkenar-intro-card p {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Heybe Intro Card Styling (Similar to Derkenar) */
.heybe-intro-card {
    background-image: url('images/heybeBgr_images.png');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    /* Force height to match Derkenar's visual weight */
    display: flex;
    align-items: center;
    /* Vertically center the text */
}

.heybe-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.heybe-intro-card p {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

/* Anılar Intro Styling */
.ani-intro-card {
    background-image: url('images/AniBgr_İmages.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.ani-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.ani-intro-card p {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

/* ===========================
   ANLAR VE ANILAR - GALLERY
   =========================== */

/* Gallery Intro Card */
.gallery-intro-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    text-align: center;
}

.gallery-intro-card p {
    color: white;
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Masonry Grid */
/* Masonry Grid (JS Powered) */
.masonry-grid {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: flex-start;
}

.masonry-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
}

/* Remove old column-count media queries as JS handles cols */
@media (max-width: 768px) {
    .masonry-grid {
        gap: 1rem;
    }

    .masonry-column {
        gap: 1rem;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.overlay-title {
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
}

.overlay-date {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
}

/* Lightbox Content */
/* Lightbox Styles */
.lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    /* Leave 20% vertical space for caption */
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

/* Nav buttons - fixed relative to screen, outside content flow */
.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

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

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Info box - below image */
.lightbox-info {
    position: relative;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    max-width: 800px;
}

.lightbox-info h3 {
    margin: 0 0 0.4rem 0;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
}

.lightbox-info p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        background: rgba(0, 0, 0, 0.3);
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-info {
        padding: 0.8rem;
        margin-top: 0.5rem;
        background: rgba(0, 0, 0, 0.8);
        /* Darker background on mobile */
    }

    .lightbox-info h3 {
        font-size: 1rem;
    }
}