/* Gallery Page Styles - Only page-specific styles */

/* Page Introduction Section */
.gallery-intro-section {
    background: linear-gradient(135deg, var(--gradient-blue-start) 0%, var(--gradient-blue-end) 100%);
    padding: 7rem 0 4rem;
    margin-top: 80px;
}

.gallery-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Gallery Albums Section */
.gallery-albums-section {
    background-color: var(--bg-white);
    padding: 4rem 0;
}

/* Filter Buttons */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 0.625rem 1.5rem;
    border: 1px solid var(--gray-300);
    background-color: var(--bg-white);
    color: var(--text-medium);
    border-radius: 50px;
    font-weight: 500;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.gallery-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: var(--bg-primary-lighter);
}

.gallery-filter-btn.active {
    background-color: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

/* Album Cards */
.album-card {
    cursor: pointer;
}

.album-card-wrapper {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow-black);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.album-card-wrapper:hover {
    box-shadow: 0 4px 16px var(--shadow-black-hover);
    transform: translateY(-4px);
}

.album-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.album-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album-card-wrapper:hover .album-card-image img {
    transform: scale(1.1);
}

.album-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.album-card-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    cursor: pointer;
}

.album-card-subtitle {
    font-size: var(--font-size-base);
    color: var(--text-medium);
    margin-bottom: 1rem;
    flex: 1;
}

.album-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: var(--font-size-base);
}

.album-card-meta i {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
}

/* Gallery Closing Section */
.gallery-closing-section {
    background-color: var(--bg-gray-light);
    padding: 5rem 0;
}

.gallery-message-card {
    background: linear-gradient(135deg, var(--gradient-primary-start) 0%, var(--gradient-primary-end) 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    width: 80%;
    margin: 0 auto;
    box-shadow: 0 4px 20px var(--shadow-black);
}

.gallery-message-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--overlay-white-20);
    border-radius: 50%;
}

.gallery-message-icon i {
    font-size: var(--font-size-3xl);
    color: var(--text-white);
}

.gallery-message-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gallery-message-text {
    font-size: var(--font-size-lg);
    color: var(--text-white);
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .gallery-intro-section {
        padding: 6rem 0 3rem;
    }

    .gallery-albums-section {
        padding: 3rem 0;
    }

    .gallery-closing-section {
        padding: 4rem 0;
    }

    .gallery-message-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-intro-section {
        padding: 5rem 0 2.5rem;
    }

    .gallery-filters {
        gap: 0.75rem;
    }

    .gallery-filter-btn {
        padding: 0.5rem 1.25rem;
        font-size: var(--font-size-sm);
    }

    .album-card-image {
        height: 220px;
    }

    .album-card-content {
        padding: 1.25rem;
    }

    .album-card-title {
        font-size: var(--font-size-xl);
    }

    .gallery-message-card {
        padding: 2rem;
    }

    .gallery-message-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .gallery-message-icon i {
        font-size: var(--font-size-3xl);
    }

    .gallery-message-title {
        font-size: var(--font-size-3xl);
    }

    .gallery-message-text {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 576px) {
    .gallery-intro-content h1 {
        font-size: var(--font-size-3xl);
    }

    .gallery-filter-btn {
        padding: 0.5rem 1rem;
        font-size: var(--font-size-sm);
    }

    .album-card-image {
        height: 200px;
    }

    .album-card-content {
        padding: 1rem;
    }

    .album-card-title {
        font-size: var(--font-size-lg);
    }

    .album-card-subtitle {
        font-size: var(--font-size-sm);
    }

    .gallery-message-card {
        padding: 1.5rem;
        width: 100%;
    }

    .gallery-message-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }

    .gallery-message-icon i {
        font-size: var(--font-size-2xl);
    }

    .gallery-message-title {
        font-size: var(--font-size-2xl);
        margin-bottom: 1rem;
    }

    .gallery-message-text {
        font-size: var(--font-size-base);
    }
}

