/* Art & Culture Page Styles */

/* Talk Card Styling */
.talk-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.talk-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.talk-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.talk-speaker {
    font-size: 1.1rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 15px;
}

.talk-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Gallery Section Header */
.gallery-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.gallery-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.gallery-count {
    font-size: 0.9rem;
    color: #777;
    background: #f5f5f5;
    padding: 5px 12px;
    border-radius: 20px;
}

/* Art & Culture Gallery Grid */
.art-culture-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* Gallery Item Container */
.art-culture-gallery-item {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Square aspect ratio */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.art-culture-gallery-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

/* Gallery Image */
.art-culture-gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.art-culture-gallery-item:hover .art-culture-gallery-img {
    transform: scale(1.05);
}

/* Gallery Overlay */
.art-culture-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.art-culture-gallery-item:hover .art-culture-gallery-overlay {
    background: rgba(0, 0, 0, 0.3);
}

/* Popup Button */
.art-culture-popup-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: #d4af37;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.art-culture-gallery-item:hover .art-culture-popup-btn {
    transform: translate(-50%, -50%) scale(1);
}

.art-culture-popup-btn:hover {
    background: #c19b2e;
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive Design */
@media (max-width: 991px) {
    .art-culture-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .talk-card {
        padding: 25px;
    }

    .talk-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .art-culture-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .talk-card {
        padding: 20px;
    }

    .talk-title {
        font-size: 1.2rem;
    }

    .talk-speaker {
        font-size: 1rem;
    }

    .gallery-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
