/* Gallery Detail Page Styles */

.gallery-hero {
    min-height: 60vh;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    padding: 8rem 2rem 4rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.back-button-fixed {
    display: none;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb-link {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-link:hover {
    color: #fff;
}

.breadcrumb-separator {
    color: #444;
    font-size: 0.8rem;
}

.breadcrumb-current {
    color: #fff;
}

.gallery-hero-text {
    text-align: center;
    margin-top: 2rem;
}

.gallery-hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    font-family: 'Bebas Neue', sans-serif;
}

.gallery-hero-subtitle {
    font-size: 1.5rem;
    color: #aaa;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.gallery-hero-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.info-badge {
    font-size: 1rem;
    color: #aaa;
    padding: 0.75rem 1.5rem;
    background: #111;
    border-radius: 50px;
    border: 1px solid #222;
    letter-spacing: 0.05em;
}

/* Gallery Content */
.gallery-content {
    background: #0a0a0a;
    padding: 6rem 2rem;
    min-height: 100vh;
}

.gallery-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.back-to-gallery {
    display: none;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.photo-card {
    background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #222;
    transition: all 0.5s ease;
    cursor: pointer;
}

.photo-card:hover {
    transform: translateY(-10px);
    border-color: #fff;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.photo-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.photo-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.photo-card:hover .photo-image-placeholder {
    transform: scale(1.05);
}

.placeholder-number {
    font-size: 4rem;
    font-weight: 700;
    color: #222;
    font-family: 'Bebas Neue', sans-serif;
}

.photo-info {
    padding: 1.5rem;
    background: #000;
}

.photo-name {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    font-family: 'Bebas Neue', sans-serif;
}

.photo-location {
    font-size: 1rem;
    color: #666;
    letter-spacing: 0.05em;
}

/* Other Categories */
.other-categories {
    background: #000;
    padding: 6rem 2rem;
}

.other-title {
    font-size: 3rem;
    color: #fff;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0.02em;
    font-family: 'Bebas Neue', sans-serif;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.category-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid #222;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.category-card:hover {
    border-color: #fff;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-name {
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 0.05em;
    font-family: 'Bebas Neue', sans-serif;
}

.category-count {
    font-size: 1rem;
    color: #666;
    letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .breadcrumb-nav {
        margin-bottom: 2rem;
        font-size: 0.85rem;
    }
    
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .photos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-hero {
        padding: 6rem 2rem 3rem;
    }
    
    .gallery-hero-title {
        font-size: 3rem;
    }
    
    .gallery-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .gallery-hero-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .info-badge {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-content {
        padding: 4rem 1.5rem;
    }
    
    .other-categories {
        padding: 4rem 1.5rem;
    }
}
