/* gallery.css (Google Style) */
.gallery-main {
    padding-top: 100px;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-page);
}
.coming-soon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 60px 24px;
}
.coming-soon-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 64px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow-2);
}
.cs-icon {
    color: var(--accent-color);
    margin-bottom: 24px;
}
.cs-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}
.cs-title {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.cs-badge {
    display: inline-block;
    background: rgba(26, 115, 232, 0.1);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 32px;
}
.cs-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
}
.cs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 1rem;
    padding: 12px 28px;
    box-shadow: none;
}
.cs-back-link {
    display: block;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}
.cs-back-link:hover {
    color: var(--accent-color);
}
.nav-active {
    color: var(--text-primary) !important;
    font-weight: 600;
}
