/* Photo Gallery Page Specific Styles - Premium Redesign */

:root {
    --gallery-primary: #1a1a1a;
    --gallery-accent: #ff4757;
    --gallery-bg: #ffffff;
    --gallery-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.section-padding {
    padding: 50px 0;
}

/* Inner Banner */
.inner-banner {
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;

    background-size: cover;
    background-position: center 12%;
    background-repeat: no-repeat;}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.7)), url('../images/nationalcham.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    position: relative;
    z-index: 2;
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: #f1f2f6;
    border-radius: 50px;
    color: var(--gallery-primary);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gallery-accent);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(255, 71, 87, 0.3);
}

/* Album Grid */
.album-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.album-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 240px;
    cursor: pointer;
    box-shadow: var(--gallery-shadow);
}

.album-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.album-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.45), transparent);
    color: var(--white);
    transition: all 0.3s ease;
}

.album-card:hover .album-img {
    transform: scale(1.1);
}

.album-card:hover .album-overlay {
    padding-bottom: 50px;
}

.album-tag {
    background: var(--gallery-accent);
    color: var(--white);
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.album-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 5px;
}

.album-count {
    font-size: 13px;
    opacity: 0.7;
}

/* Masonry Layout Mock */
.photo-masonry {
    column-count: 4;
    column-gap: 20px;
    margin-top: 80px;
}

.photo-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.photo-item img {
    width: 100%;
    display: block;
    transition: all 0.5s ease;
}

.photo-item:hover img {
    filter: brightness(0.7);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .album-grid { grid-template-columns: repeat(2, 1fr); }
    .photo-masonry { column-count: 3; }
}

@media (max-width: 768px) {
    .album-grid { grid-template-columns: 1fr; }
    .photo-masonry { column-count: 2; }
    .banner-title { font-size: 42px; }
}

@media (max-width: 480px) {
    .photo-masonry { column-count: 1; }
}
