        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-logo {
            height: 40px;
            width: auto;
        }

     /* Gallery Item Styles */
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 3/4;
}

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

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

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

.gallery-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-item-info {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.gallery-item-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 8px;
    display: -webkit-box;

    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-tag {
    display: inline-block;
    background-color: rgba(218, 165, 32, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Modal Styles */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    color: #333;
}

.modal-body {
    padding: 1.5rem;
}

.watermark-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.watermark-container img {
    width: 100%;
    border-radius: 8px;
}

.watermark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
}

.modal-body p {
    margin: 12px 0;
    color: #555;
}

.modal-body strong {
    color: #333;
}

.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

/* Button Styles */
.modal-footer .btn {
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #DAA520;
    border-color: #DAA520;
}

.btn-primary:hover {
    background-color: #c69500;
    border-color: #c69500;
    transform: translateY(-2px);
}

.btn-warning {
    background-color: #ffd700;
    border-color: #ffd700;
    color: #333;
}

.btn-warning:hover {
    background-color: #ffcd00;
    border-color: #ffcd00;
    color: #333;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-item-info {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    }
    
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
}

/* Animation for Modal */
.modal.fade .modal-dialog {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

/* Gallery Section Styles */
.gallery-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

/* Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #DAA520;
}

/* Category Navigation */
.category-wrapper {
    background: white;
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.nav-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.nav-link {
    color: #555;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link.active {
    
    color: white;
}

/* Gallery Card Styles */
.gallery-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.image-container {
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .image-container img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
}

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

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

.overlay-content h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.overlay-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.btn-view {
    display: inline-block;
    padding: 8px 20px;
    background: #DAA520;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background: #c69500;
    transform: translateY(-2px);
}

.card-info {
    padding: 20px;
}

.info-header {
    margin-bottom: 15px;
}

.info-header h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.artist-name {
    color: #666;
    font-size: 0.9rem;
}

.info-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.category-badge {
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #555;
}

.price-tag {
    color: #DAA520;
    font-weight: 600;
    font-size: 1.1rem;
}

.card-actions {
    display: flex;
    gap: 10px;
}

.btn-download, .btn-donate, .btn-login {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-download {
    background: #28a745;
    color: white;
}

.btn-donate {
    background: #DAA520;
    color: white;
}

.btn-login {
    background: #6c757d;
    color: white;
}

.btn-download:hover, .btn-donate:hover, .btn-login:hover {
    transform: translateY(-2px);
    color: white;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .info-header h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 991.98px) {
    .gallery-section {
        padding: 40px 0;
    }
    
    .card-info {
        padding: 15px;
    }
}

@media (max-width: 767.98px) {
    .category-wrapper {
        padding: 10px;
    }
    
    .nav-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .overlay-content h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .gallery-card {
        margin-bottom: 15px;
    }
    
    .info-header h3 {
        font-size: 1rem;
    }
    
    .price-tag {
        font-size: 1rem;
    }
    
    .btn-download, .btn-donate, .btn-login {
        padding: 8px;
        font-size: 0.9rem;
    }
}

/* Animation */
.gallery-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.4s; }
.gallery-item:nth-child(4) { animation-delay: 0.6s; }