/* Galeri Artist - Custom Styles */

/* Animation classes */
.fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

.slide-up {
    animation: slideUp 1.2s ease-in-out;
}

.soft-appear {
    animation: softAppear 1.8s ease-out;
}

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

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

@keyframes softAppear {
    0% { 
        opacity: 0;
        transform: scale(0.98); 
    }
    100% { 
        opacity: 1;
        transform: scale(1); 
    }
}

/* Custom hover effects */
.hover-grow {
    transition: transform 0.3s ease;
}

.hover-grow:hover {
    transform: scale(1.02);
}

/* Navbar styles */
.nav-link {
    position: relative;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #292524; /* stone-900 rengi */
    transition: width 0.3s ease;
}

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

.nav-link.active {
    color: #292524; /* stone-900 */
}

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

/* Navbar bottom border */
.navbar-bottom-border {
    border-bottom: 1px solid #e7e5e4; /* stone-200 */
}

/* Art gallery specific styles */
.art-frame {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.art-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    z-index: 1;
    pointer-events: none;
}

/* Gallery event tags */
.event-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: #e5e5e5;
    color: #555;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-right: 8px;
    margin-bottom: 8px;
}

.event-tag.opening {
    background-color: #fef3c7;
    color: #92400e;
}

.event-tag.closing {
    background-color: #fee2e2;
    color: #991b1b;
}

/* Custom scroll for gallery sections */
.gallery-scroll {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #d6d3d1 #f5f5f4;
}

.gallery-scroll::-webkit-scrollbar {
    height: 6px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: #f5f5f4;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background-color: #d6d3d1;
    border-radius: 20px;
}
