.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

body {
    background-color: #fef8f3;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #20133e;
}

.font-noto-serif {
    font-family: 'Cormorant Garamond', serif;
}

.font-plus-jakarta {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Premium Gallery Card Styles */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(114, 91, 37, 0.08);
    box-shadow: 0 10px 30px rgba(32, 19, 62, 0.03);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(114, 91, 37, 0.1);
    border-color: rgba(114, 91, 37, 0.2);
}

.gallery-card img {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-card:hover img {
    transform: scale(1.06);
}

/* Glassmorphic Overlay on Hover */
.gallery-overlay {
    background: linear-gradient(to top, rgba(32, 19, 62, 0.85) 0%, rgba(32, 19, 62, 0.4) 60%, rgba(32, 19, 62, 0) 100%);
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.gallery-details {
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-card:hover .gallery-details {
    transform: translateY(0);
}

/* Custom Lightbox System */
.custom-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(20, 12, 38, 0.95);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.custom-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.custom-lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #fef8f3;
    font-size: 36px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fef8f3;
    font-size: 32px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    user-select: none;
}

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

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-caption {
    margin-top: 24px;
    text-align: center;
    color: #fef8f3;
    max-width: 600px;
}

.lightbox-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
    letter-spacing: -0.01em;
}

.lightbox-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: rgba(254, 248, 243, 0.75);
    font-weight: 300;
    line-height: 1.5;
}

/* Lightbox responsive media queries */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
    .lightbox-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
    .lightbox-title {
        font-size: 1.5rem;
    }
}

