/* Costume Page Specific Styles */

.page-header {
    padding-top: 150px;
    padding-bottom: 60px;
    text-align: center;
    background: linear-gradient(to bottom, #050505, #111);
}

.page-title {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    letter-spacing: 0.2em;
}

.gallery-section {
    padding: 60px 0 120px;
    background: #111;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-img-wrapper {
    width: 100%;
    height: 300px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    transition: var(--transition);
}

.gallery-item:hover .placeholder-img {
    transform: scale(1.05);
}

.gallery-info {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-info h3 {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 5px;
    transition: var(--transition);
}

.gallery-item:hover .gallery-info h3 {
    color: var(--color-primary);
}

.gallery-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.gallery-note {
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.back-link {
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}
